Skip to content

Commit 66c2a0f

Browse files
committed
Merge pull request #958 from Hummer12007/pango
config: set pango_markup default to false
1 parent 31d7684 commit 66c2a0f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sway/config.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1115,7 +1115,7 @@ struct bar_config *default_bar_config(void) {
11151115
bar->position = DESKTOP_SHELL_PANEL_POSITION_BOTTOM;
11161116
bar->bindings = create_list();
11171117
bar->status_command = strdup("while :; do date +'%Y-%m-%d %l:%M:%S %p' && sleep 1; done");
1118-
bar->pango_markup = true;
1118+
bar->pango_markup = false;
11191119
bar->swaybar_command = NULL;
11201120
bar->font = NULL;
11211121
bar->height = -1;

swaybar/config.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ char *parse_font(const char *font) {
3333
struct config *init_config() {
3434
struct config *config = calloc(1, sizeof(struct config));
3535
config->status_command = NULL;
36-
config->pango_markup = true;
36+
config->pango_markup = false;
3737
config->position = DESKTOP_SHELL_PANEL_POSITION_BOTTOM;
3838
config->font = strdup("monospace 10");
3939
config->mode = NULL;

0 commit comments

Comments
 (0)