aboutsummaryrefslogtreecommitdiff
path: root/sway/commands/bar/status_command.c
diff options
context:
space:
mode:
authorBrian Ashworth <bosrsf04@gmail.com>2019-09-02 21:41:11 -0400
committerDrew DeVault <sir@cmpwn.com>2019-09-04 16:48:50 -1000
commit1fd2c6ba498e61f4fe823bf552f9d2fce8612de4 (patch)
tree8e2d9adab3451f1f05c76340d466a442c840e558 /sway/commands/bar/status_command.c
parent187306640ba8f2ab2f246a5030617ee985cf9223 (diff)
swaybar: complete barconfig_update event handling
This adds complete support for the barconfig_update ipc event. This also changes the bar command and subcommand handlers to correctly emit the event. This makes it so all bar subcommands other than id and swaybar_command are dynamically changeable at runtime. sway-bar.5 has been updated accordingly
Diffstat (limited to 'sway/commands/bar/status_command.c')
-rw-r--r--sway/commands/bar/status_command.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/sway/commands/bar/status_command.c b/sway/commands/bar/status_command.c
index 77a73ab6..bb92e8e0 100644
--- a/sway/commands/bar/status_command.c
+++ b/sway/commands/bar/status_command.c
@@ -19,10 +19,5 @@ struct cmd_results *bar_cmd_status_command(int argc, char **argv) {
} else {
free(new_command);
}
-
- if (config->active && !config->validating) {
- load_swaybar(config->current_bar);
- }
-
return cmd_results_new(CMD_SUCCESS, NULL);
}