diff options
| author | Drew DeVault <sir@cmpwn.com> | 2016-10-20 09:47:49 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-10-20 09:47:49 -0400 | 
| commit | 47fd53812b7cf14734be96484e4e3719f196437f (patch) | |
| tree | ba37ba250106b75fdc919b24f20f7843428c8dce /sway/config.c | |
| parent | 2dcb54c32a488466ec95bbe61ea2dd0f4aef6cb8 (diff) | |
| parent | 2a24772c4b310336bee98a1adcb5476fad832435 (diff) | |
| download | sway-47fd53812b7cf14734be96484e4e3719f196437f.tar.xz | |
Merge pull request #958 from Hummer12007/pango
config: set pango_markup default to false
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 c0fbd210..1c460d31 100644 --- a/sway/config.c +++ b/sway/config.c @@ -1115,7 +1115,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->pango_markup = true; +	bar->pango_markup = false;  	bar->swaybar_command = NULL;  	bar->font = NULL;  	bar->height = -1; | 
