summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2016-12-23 11:21:18 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2016-12-23 11:21:18 -0500
commit36e48fcf8db273a7d16356248f67aadb27d58ee1 (patch)
tree340f571f11605a78bac9504e6040555d798dc83b
parentClear swaylock properly during re-render (diff)
downloadsway-36e48fcf8db273a7d16356248f67aadb27d58ee1.tar.gz
sway-36e48fcf8db273a7d16356248f67aadb27d58ee1.tar.zst
sway-36e48fcf8db273a7d16356248f67aadb27d58ee1.zip
Update default swaybar command
Fixes #988
-rw-r--r--sway/config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/config.c b/sway/config.c
index 8af8cfdd..070b1085 100644
--- a/sway/config.c
+++ b/sway/config.c
@@ -1285,7 +1285,7 @@ struct bar_config *default_bar_config(void) {
1285 bar->outputs = NULL; 1285 bar->outputs = NULL;
1286 bar->position = DESKTOP_SHELL_PANEL_POSITION_BOTTOM; 1286 bar->position = DESKTOP_SHELL_PANEL_POSITION_BOTTOM;
1287 if (!(bar->bindings = create_list())) goto cleanup; 1287 if (!(bar->bindings = create_list())) goto cleanup;
1288 if (!(bar->status_command = strdup("while :; do date +'%Y-%m-%d %l:%M:%S %p' && sleep 1; done"))) goto cleanup; 1288 if (!(bar->status_command = strdup("while :; do date +'%Y-%m-%d %l:%M:%S %p'; sleep 1; done"))) goto cleanup;
1289 bar->pango_markup = false; 1289 bar->pango_markup = false;
1290 bar->swaybar_command = NULL; 1290 bar->swaybar_command = NULL;
1291 bar->font = NULL; 1291 bar->font = NULL;