mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 20:44:01 +01:00
config: set pango_markup default to false
This commit is contained in:
parent
2dcb54c32a
commit
2a24772c4b
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user