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 /swaybar | |
parent | 2dcb54c32a488466ec95bbe61ea2dd0f4aef6cb8 (diff) | |
parent | 2a24772c4b310336bee98a1adcb5476fad832435 (diff) |
Merge pull request #958 from Hummer12007/pango
config: set pango_markup default to false
Diffstat (limited to 'swaybar')
-rw-r--r-- | swaybar/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swaybar/config.c b/swaybar/config.c index c5437ee7..7959b1ca 100644 --- a/swaybar/config.c +++ b/swaybar/config.c @@ -33,7 +33,7 @@ char *parse_font(const char *font) { struct config *init_config() { struct config *config = calloc(1, sizeof(struct config)); config->status_command = NULL; - config->pango_markup = true; + config->pango_markup = false; config->position = DESKTOP_SHELL_PANEL_POSITION_BOTTOM; config->font = strdup("monospace 10"); config->mode = NULL; |