aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikkel Oscar Lyderik <mikkeloscar@gmail.com>2015-12-13 23:33:54 +0100
committerMikkel Oscar Lyderik <mikkeloscar@gmail.com>2015-12-14 12:56:59 +0100
commitb9e8accc51188976cf8ce4710841425b161b9b3f (patch)
tree6136395681e01bcbcb759b587b9d836a1f58266d
parent74152043f4da7182339f181317960aa6cd01cffa (diff)
Implement bar option: workspace_buttons <yes|no>
-rw-r--r--sway/commands.c24
1 files changed, 23 insertions, 1 deletions
diff --git a/sway/commands.c b/sway/commands.c
index d6da1de3..cefad2ef 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -63,6 +63,7 @@ static sway_cmd cmd_splitv;
static sway_cmd cmd_sticky;
static sway_cmd cmd_workspace;
static sway_cmd cmd_ws_auto_back_and_forth;
+static sway_cmd bar_cmd_workspace_buttons;
swayc_t *sp_view;
int sp_index = 0;
@@ -1518,6 +1519,27 @@ static struct cmd_handler handlers[] = {
{ "workspace_auto_back_and_forth", cmd_ws_auto_back_and_forth },
};
+static struct cmd_results *bar_cmd_workspace_buttons(int argc, char **argv) {
+ struct cmd_results *error = NULL;
+ if ((error = checkarg(argc, "workspace_buttons", EXPECTED_EQUAL_TO, 1))) {
+ return error;
+ }
+
+ if (!config->current_bar) {
+ return cmd_results_new(CMD_FAILURE, "workspace_buttons", "No bar defined.");
+ }
+
+ if (strcasecmp("yes", argv[0]) == 0) {
+ config->current_bar->workspace_buttons = true;
+ } else if (strcasecmp("no", argv[0]) == 0) {
+ config->current_bar->workspace_buttons = false;
+ } else {
+ error = cmd_results_new(CMD_INVALID, "workspace_buttons", "Invalid value %s", argv[0]);
+ return error;
+ }
+ return cmd_results_new(CMD_SUCCESS, NULL, NULL);
+}
+
static struct cmd_handler bar_handlers[] = {
{ "binding_mode_indicator", NULL },
{ "bindsym", NULL },
@@ -1534,7 +1556,7 @@ static struct cmd_handler bar_handlers[] = {
{ "strip_workspace_numbers", NULL },
{ "tray_output", NULL },
{ "tray_padding", NULL },
- { "workspace_buttons", NULL },
+ { "workspace_buttons", bar_cmd_workspace_buttons },
};
static int handler_compare(const void *_a, const void *_b) {