config: set pango_markup default to false

This commit is contained in:
Mykyta Holubakha 2016-10-20 16:43:38 +03:00
parent 2dcb54c32a
commit 2a24772c4b
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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;