sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 2340b14eba4b0845394c776a056765f10af1e5c2
parent 00745d6280d36b57e661f9de7af84c93fde60efa
Author: Brian Ashworth <bosrsf04@gmail.com>
Date:   Tue,  9 Oct 2018 18:37:53 -0400

bar_cmd_status_command: only reload current bar

Ideally, this will be replaced with an IPC barconfig_update event in the
near future

Diffstat:
Msway/commands/bar/status_command.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sway/commands/bar/status_command.c b/sway/commands/bar/status_command.c @@ -25,7 +25,7 @@ struct cmd_results *bar_cmd_status_command(int argc, char **argv) { } if (config->active && !config->validating) { - load_swaybars(); + load_swaybar(config->current_bar); } return cmd_results_new(CMD_SUCCESS, NULL, NULL);