Do some small cleanup

- Fix workspace events (security config isn't in use so it wasn't being
  sent)
- Kill status bar process when swaybar exits
- Don't rearrange windows on every layer surface commit
This commit is contained in:
Drew DeVault 2018-03-29 21:09:34 -04:00
parent 5f5076baff
commit f3fbf19312
3 changed files with 2 additions and 24 deletions

View file

@ -76,5 +76,6 @@ struct status_line *status_line_init(char *cmd) {
void status_line_free(struct status_line *status) {
close(status->read_fd);
close(status->write_fd);
kill(status->pid, SIGTERM);
free(status);
}