sway

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

commit 36e48fcf8db273a7d16356248f67aadb27d58ee1
parent 800d20611cc5aaf59cac2bf222cdfbcbe6a6329c
Author: Drew DeVault <sir@cmpwn.com>
Date:   Fri, 23 Dec 2016 11:21:18 -0500

Update default swaybar command

Fixes #988

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

diff --git a/sway/config.c b/sway/config.c @@ -1285,7 +1285,7 @@ struct bar_config *default_bar_config(void) { bar->outputs = NULL; bar->position = DESKTOP_SHELL_PANEL_POSITION_BOTTOM; if (!(bar->bindings = create_list())) goto cleanup; - if (!(bar->status_command = strdup("while :; do date +'%Y-%m-%d %l:%M:%S %p' && sleep 1; done"))) goto cleanup; + if (!(bar->status_command = strdup("while :; do date +'%Y-%m-%d %l:%M:%S %p'; sleep 1; done"))) goto cleanup; bar->pango_markup = false; bar->swaybar_command = NULL; bar->font = NULL;