mirror of
https://github.com/swaywm/sway.git
synced 2025-11-08 13:29:50 -05:00
Added plaintext markup configuration
This commit is contained in:
parent
a796ce4f66
commit
53b53dd8c2
7 changed files with 33 additions and 1 deletions
|
|
@ -103,6 +103,7 @@ static sway_cmd bar_cmd_id;
|
|||
static sway_cmd bar_cmd_position;
|
||||
static sway_cmd bar_cmd_separator_symbol;
|
||||
static sway_cmd bar_cmd_status_command;
|
||||
static sway_cmd bar_cmd_plaintext_markup;
|
||||
static sway_cmd bar_cmd_strip_workspace_numbers;
|
||||
static sway_cmd bar_cmd_swaybar_command;
|
||||
static sway_cmd bar_cmd_tray_output;
|
||||
|
|
@ -2757,6 +2758,29 @@ static struct cmd_results *bar_cmd_status_command(int argc, char **argv) {
|
|||
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
||||
}
|
||||
|
||||
static struct cmd_results *bar_cmd_plaintext_markup(int argc, char **argv) {
|
||||
struct cmd_results *error = NULL;
|
||||
if ((error = checkarg(argc, "plaintext_markup", EXPECTED_EQUAL_TO, 1))) {
|
||||
return error;
|
||||
}
|
||||
|
||||
if (!config->current_bar) {
|
||||
return cmd_results_new(CMD_FAILURE, "plaintext_markup", "No bar defined.");
|
||||
}
|
||||
|
||||
if (strcasecmp("pango", argv[0]) == 0) {
|
||||
config->current_bar->plaintext_markup = true;
|
||||
sway_log(L_DEBUG, "Enabling pango markup for bar: %s", config->current_bar->id);
|
||||
} else if (strcasecmp("none", argv[0]) == 0) {
|
||||
config->current_bar->plaintext_markup = false;
|
||||
sway_log(L_DEBUG, "Disabling pango markup for bar: %s", config->current_bar->id);
|
||||
} else {
|
||||
error = cmd_results_new(CMD_INVALID, "plaintext_markup", "Invalid value %s", argv[0]);
|
||||
return error;
|
||||
}
|
||||
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
||||
}
|
||||
|
||||
static struct cmd_results *bar_cmd_strip_workspace_numbers(int argc, char **argv) {
|
||||
struct cmd_results *error = NULL;
|
||||
if ((error = checkarg(argc, "strip_workspace_numbers", EXPECTED_EQUAL_TO, 1))) {
|
||||
|
|
@ -2861,6 +2885,7 @@ static struct cmd_handler bar_handlers[] = {
|
|||
{ "mode", bar_cmd_mode },
|
||||
{ "modifier", bar_cmd_modifier },
|
||||
{ "output", bar_cmd_output },
|
||||
{ "plaintext_markup", bar_cmd_plaintext_markup },
|
||||
{ "position", bar_cmd_position },
|
||||
{ "separator_symbol", bar_cmd_separator_symbol },
|
||||
{ "status_command", bar_cmd_status_command },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue