2018-03-30 08:20:03 +11:00
|
|
|
#include <string.h>
|
|
|
|
#include <strings.h>
|
|
|
|
#include "sway/commands.h"
|
|
|
|
#include "log.h"
|
2018-11-10 23:55:06 +11:00
|
|
|
#include "util.h"
|
2018-03-30 08:20:03 +11:00
|
|
|
|
|
|
|
struct cmd_results *bar_cmd_pango_markup(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "pango_markup", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
2019-05-17 08:56:58 +10:00
|
|
|
config->current_bar->pango_markup =
|
|
|
|
parse_boolean(argv[0], config->current_bar->pango_markup);
|
2018-11-10 23:55:06 +11:00
|
|
|
if (config->current_bar->pango_markup) {
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_DEBUG, "Enabling pango markup for bar: %s",
|
2018-03-30 13:05:16 +11:00
|
|
|
config->current_bar->id);
|
2018-11-10 23:55:06 +11:00
|
|
|
} else {
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_DEBUG, "Disabling pango markup for bar: %s",
|
2018-03-30 13:05:16 +11:00
|
|
|
config->current_bar->id);
|
2018-03-30 08:20:03 +11:00
|
|
|
}
|
2019-01-11 10:27:21 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
2018-03-30 08:20:03 +11:00
|
|
|
}
|