aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Hamacher <kevin.hamacher@rub.de>2016-04-03 16:07:18 +0200
committerKevin Hamacher <kevin.hamacher@rub.de>2016-04-03 17:14:14 +0200
commitb6e2b6add9153c0e5e65116e5cbfd0fb99ec1f8f (patch)
treead591507825b66a4b456c5296ba511fe0f96e943
parent5b8902ea9cefce7103cc08856181cd8ddf21564d (diff)
Add border color commands
-rw-r--r--sway/commands.c80
1 files changed, 79 insertions, 1 deletions
diff --git a/sway/commands.c b/sway/commands.c
index c1009f85..b7c1a344 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -45,6 +45,12 @@ static sway_cmd cmd_bar;
static sway_cmd cmd_bindcode;
static sway_cmd cmd_bindsym;
static sway_cmd cmd_border;
+static sway_cmd cmd_client_focused;
+static sway_cmd cmd_client_focused_inactive;
+static sway_cmd cmd_client_unfocused;
+static sway_cmd cmd_client_urgent;
+static sway_cmd cmd_client_placeholder;
+static sway_cmd cmd_client_background;
static sway_cmd cmd_debuglog;
static sway_cmd cmd_exec;
static sway_cmd cmd_exec_always;
@@ -113,6 +119,8 @@ static sway_cmd bar_colors_cmd_separator;
static sway_cmd bar_colors_cmd_statusline;
static sway_cmd bar_colors_cmd_urgent_workspace;
+static struct cmd_results *add_color(const char*, char*, const char*);
+
swayc_t *sp_view;
int sp_index = 0;
@@ -408,6 +416,71 @@ static struct cmd_results *cmd_border(int argc, char **argv) {
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}
+static struct cmd_results *parse_border_color(struct border_colors *border_colors, const char *cmd_name, int argc, char **argv) {
+ struct cmd_results *error = NULL;
+ if (argc != 5) {
+ return cmd_results_new(CMD_INVALID, cmd_name, "Requires exact 5 color values");
+ }
+
+ uint32_t colors[5];
+ int i;
+ for (i = 0; i < 5; i++) {
+ char buffer[10];
+ error = add_color(cmd_name, buffer, argv[i]);
+ if (error) {
+ return error;
+ }
+ colors[i] = strtoul(buffer+1, NULL, 16);
+ }
+
+ border_colors->border = colors[0];
+ border_colors->background = colors[1];
+ border_colors->text = colors[2];
+ border_colors->indicator = colors[3];
+ border_colors->child_border = colors[4];
+
+ return cmd_results_new(CMD_SUCCESS, NULL, NULL);
+}
+
+static struct cmd_results *cmd_client_focused(int argc, char **argv) {
+ return parse_border_color(&config->border_colors.focused, "client.focused", argc, argv);
+}
+
+static struct cmd_results *cmd_client_focused_inactive(int argc, char **argv) {
+ return parse_border_color(&config->border_colors.focused_inactive, "client.focused_inactive", argc, argv);
+}
+
+static struct cmd_results *cmd_client_unfocused(int argc, char **argv) {
+ return parse_border_color(&config->border_colors.unfocused, "client.unfocused", argc, argv);
+}
+
+static struct cmd_results *cmd_client_urgent(int argc, char **argv) {
+ return parse_border_color(&config->border_colors.urgent, "client.urgent", argc, argv);
+}
+
+static struct cmd_results *cmd_client_placeholder(int argc, char **argv) {
+ return parse_border_color(&config->border_colors.placeholder, "client.placeholder", argc, argv);
+}
+
+static struct cmd_results *cmd_client_background(int argc, char **argv) {
+ char buffer[10];
+ struct cmd_results *error = NULL;
+ uint32_t background;
+
+ if (argc != 1) {
+ return cmd_results_new(CMD_INVALID, "client.background", "Expect exact 1 value");
+ }
+
+ error = add_color("client.background", buffer, argv[0]);
+ if (error) {
+ return error;
+ }
+
+ background = strtoul(buffer+1, NULL, 16);
+ config->border_colors.background = background;
+ return cmd_results_new(CMD_SUCCESS, NULL, NULL);
+}
+
static struct cmd_results *cmd_exec_always(int argc, char **argv) {
struct cmd_results *error = NULL;
if (!config->active) return cmd_results_new(CMD_DEFER, NULL, NULL);
@@ -2211,6 +2284,12 @@ static struct cmd_handler handlers[] = {
{ "bindcode", cmd_bindcode },
{ "bindsym", cmd_bindsym },
{ "border", cmd_border },
+ { "client.background", cmd_client_background },
+ { "client.focused", cmd_client_focused },
+ { "client.focused_inactive", cmd_client_focused_inactive },
+ { "client.placeholder", cmd_client_placeholder },
+ { "client.unfocused", cmd_client_unfocused },
+ { "client.urgent", cmd_client_urgent },
{ "debuglog", cmd_debuglog },
{ "default_orientation", cmd_orientation },
{ "exec", cmd_exec },
@@ -2821,7 +2900,6 @@ static struct cmd_results *add_color(const char *name, char *buffer, const char
buffer[7] = 'f';
buffer[8] = 'f';
}
- sway_log(L_DEBUG, "Setting %s color %s for bar: %s", name, buffer, config->current_bar->id);
return NULL;
}