|
|
|
@ -2768,10 +2768,10 @@ static struct cmd_results *bar_cmd_pango_markup(int argc, char **argv) {
|
|
|
|
|
return cmd_results_new(CMD_FAILURE, "pango_markup", "No bar defined.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (strcasecmp("pango", argv[0]) == 0) {
|
|
|
|
|
if (strcasecmp("enabled", argv[0]) == 0) {
|
|
|
|
|
config->current_bar->pango_markup = true;
|
|
|
|
|
sway_log(L_DEBUG, "Enabling pango markup for bar: %s", config->current_bar->id);
|
|
|
|
|
} else if (strcasecmp("none", argv[0]) == 0) {
|
|
|
|
|
} else if (strcasecmp("disabled", argv[0]) == 0) {
|
|
|
|
|
config->current_bar->pango_markup = false;
|
|
|
|
|
sway_log(L_DEBUG, "Disabling pango markup for bar: %s", config->current_bar->id);
|
|
|
|
|
} else {
|
|
|
|
|