Skip to content

Commit

Permalink
Merge pull request #958 from Hummer12007/pango
Browse files Browse the repository at this point in the history
config: set pango_markup default to false
  • Loading branch information
ddevault committed Oct 25, 2016
1 parent 31d7684 commit 66c2a0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sway/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion swaybar/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 66c2a0f

Please sign in to comment.