diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-10-08 14:42:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-08 14:42:48 +0200 |
commit | 6cb0e58c6d26efa2bca9b3710df08ed1aea09aea (patch) | |
tree | 1036293744616474f190d30f7ae5428579e82900 /sway/config | |
parent | b3b17280de54021657eabf2df4c3dbfd0039bac8 (diff) | |
parent | 5e1983660dddc40d60026cbd0daf96d880f24fb9 (diff) | |
download | sway-6cb0e58c6d26efa2bca9b3710df08ed1aea09aea.tar.xz |
Merge pull request #2791 from RyanDwyer/status-command-optional
swaybar: allow null status_command
Diffstat (limited to 'sway/config')
-rw-r--r-- | sway/config/bar.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/sway/config/bar.c b/sway/config/bar.c index 48a632fb..b8695798 100644 --- a/sway/config/bar.c +++ b/sway/config/bar.c @@ -99,10 +99,6 @@ struct bar_config *default_bar_config(void) { if (!(bar->bindings = create_list())) { goto cleanup; } - if (!(bar->status_command = - strdup("while date +'%Y-%m-%d %l:%M:%S %p'; do sleep 1; done"))) { - goto cleanup; - } // set default colors if (!(bar->colors.background = strndup("#000000ff", 9))) { goto cleanup; |