diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-12-21 05:06:54 -0500 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-12-21 05:07:19 -0500 |
commit | fc71c6303ca10b59c8f64e752307b0dd26832b52 (patch) | |
tree | d9a1b5028ebb31fea65593189ee664ffb3084ee8 /sway/config.c | |
parent | 5fbecba37ad9f19a9205715315248e7b82aa984d (diff) |
Fix default swaybar font
Diffstat (limited to 'sway/config.c')
-rw-r--r-- | sway/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/config.c b/sway/config.c index 4b1bf01a..257bb872 100644 --- a/sway/config.c +++ b/sway/config.c @@ -693,7 +693,7 @@ struct bar_config *default_bar_config(void) { 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->font = strdup("pango:monospace 10"); bar->height = -1; bar->workspace_buttons = true; bar->separator_symbol = NULL; |