1
1
Fork 0
mirror of https://github.com/swaywm/sway synced 2024-05-28 01:36:23 +02:00

Merge pull request #557 from mikkeloscar/bar-font-pango-optional

Make pango: optional for bar font
This commit is contained in:
Drew DeVault 2016-03-30 11:19:12 -04:00
commit 96ef3f69c4

View File

@ -2263,14 +2263,14 @@ static struct cmd_results *bar_cmd_font(int argc, char **argv) {
}
char *font = join_args(argv, argc);
free(config->current_bar->font);
if (strlen(font) > 6 && strncmp("pango:", font, 6) == 0) {
free(config->current_bar->font);
config->current_bar->font = font;
sway_log(L_DEBUG, "Settings font '%s' for bar: %s", config->current_bar->font, config->current_bar->id);
} else {
sway_log(L_ERROR, "warning: non-pango font '%s' not supported.", font);
config->current_bar->font = font;
}
sway_log(L_DEBUG, "Settings font '%s' for bar: %s", config->current_bar->font, config->current_bar->id);
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}