diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-12-18 18:19:59 -0500 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-12-18 18:19:59 -0500 |
commit | b9f14cee413d79d9071e0f63e0208dbf1d6d15f2 (patch) | |
tree | c08caf92d49a63edfb386b99ac45ba04298a759f /sway/config.c | |
parent | 6555aad7f9234547681aeffd3fa67182cee4c193 (diff) | |
parent | 9d7f1afdfb62a5851a38c8add7d05ae45a87066a (diff) |
Merge pull request #359 from mikkeloscar/i3bar-command
Add bar option: swaybar_command <command>
Diffstat (limited to 'sway/config.c')
-rw-r--r-- | sway/config.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/config.c b/sway/config.c index 928d35a8..b0871366 100644 --- a/sway/config.c +++ b/sway/config.c @@ -673,6 +673,7 @@ struct bar_config *default_bar_config(void) { bar->position = DESKTOP_SHELL_PANEL_POSITION_BOTTOM; bar->bindings = create_list(); bar->status_command = strdup("while :; do date +'%Y-%m-%d %l:%M:%S %p' && sleep 1; done"); + bar->swaybar_command = NULL; bar->font = strdup("monospace 10"); bar->height = -1; bar->workspace_buttons = true; |