2016-09-02 12:39:08 +10:00
|
|
|
#include <string.h>
|
2016-09-03 05:11:48 +10:00
|
|
|
#include "sway/commands.h"
|
2016-09-02 12:39:08 +10:00
|
|
|
|
2016-11-03 07:07:04 +11:00
|
|
|
static struct cmd_results *parse_single_color(char **color, const char *cmd_name, int argc, char **argv) {
|
2016-09-02 12:39:08 +10:00
|
|
|
struct cmd_results *error = NULL;
|
2016-11-03 07:07:04 +11:00
|
|
|
if ((error = checkarg(argc, cmd_name, EXPECTED_EQUAL_TO, 1))) {
|
2016-09-02 12:39:08 +10:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2016-11-03 07:07:04 +11:00
|
|
|
if (!*color) {
|
|
|
|
*color = malloc(10);
|
2016-12-16 09:39:09 +11:00
|
|
|
if (!*color) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, cmd_name, "Unable to allocate color");
|
|
|
|
}
|
2016-09-02 12:39:08 +10:00
|
|
|
}
|
|
|
|
|
2016-11-03 07:07:04 +11:00
|
|
|
error = add_color(cmd_name, *color, argv[0]);
|
|
|
|
if (error) {
|
2016-09-02 12:39:08 +10:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2016-11-03 07:07:04 +11:00
|
|
|
static struct cmd_results *parse_three_colors(char ***colors, const char *cmd_name, int argc, char **argv) {
|
2016-09-02 12:39:08 +10:00
|
|
|
struct cmd_results *error = NULL;
|
2016-11-03 07:07:04 +11:00
|
|
|
if (argc != 3) {
|
|
|
|
return cmd_results_new(CMD_INVALID, cmd_name, "Requires exactly three color values");
|
2016-09-02 12:39:08 +10:00
|
|
|
}
|
|
|
|
|
2016-11-03 07:07:04 +11:00
|
|
|
int i;
|
|
|
|
for (i = 0; i < 3; i++) {
|
|
|
|
if (!*colors[i]) {
|
|
|
|
*(colors[i]) = malloc(10);
|
2016-12-16 10:39:40 +11:00
|
|
|
if (!*(colors[i])) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, cmd_name, "Unable to allocate color");
|
|
|
|
}
|
2016-11-03 07:07:04 +11:00
|
|
|
}
|
|
|
|
error = add_color(cmd_name, *(colors[i]), argv[i]);
|
|
|
|
if (error) {
|
|
|
|
return error;
|
|
|
|
}
|
2016-09-02 12:39:08 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2016-11-03 07:07:04 +11:00
|
|
|
struct cmd_results *bar_cmd_colors(int argc, char **argv) {
|
2016-11-03 04:48:43 +11:00
|
|
|
struct cmd_results *error = NULL;
|
2016-11-03 07:07:04 +11:00
|
|
|
if ((error = checkarg(argc, "colors", EXPECTED_EQUAL_TO, 1))) {
|
2016-11-03 04:48:43 +11:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2016-11-03 07:07:04 +11:00
|
|
|
if (strcmp("{", argv[0]) != 0) {
|
|
|
|
return cmd_results_new(CMD_INVALID, "colors",
|
|
|
|
"Expected '{' at the start of colors config definition.");
|
2016-11-03 04:48:43 +11:00
|
|
|
}
|
|
|
|
|
2016-11-03 07:07:04 +11:00
|
|
|
return cmd_results_new(CMD_BLOCK_BAR_COLORS, NULL, NULL);
|
2016-11-03 04:48:43 +11:00
|
|
|
}
|
|
|
|
|
2016-11-03 07:07:04 +11:00
|
|
|
struct cmd_results *bar_colors_cmd_active_workspace(int argc, char **argv) {
|
|
|
|
char **colors[3] = {
|
|
|
|
&(config->current_bar->colors.active_workspace_border),
|
|
|
|
&(config->current_bar->colors.active_workspace_bg),
|
|
|
|
&(config->current_bar->colors.active_workspace_text)
|
|
|
|
};
|
|
|
|
return parse_three_colors(colors, "active_workspace", argc, argv);
|
|
|
|
}
|
2016-09-02 12:39:08 +10:00
|
|
|
|
2016-11-03 07:07:04 +11:00
|
|
|
struct cmd_results *bar_colors_cmd_background(int argc, char **argv) {
|
|
|
|
return parse_single_color(&(config->current_bar->colors.background), "background", argc, argv);
|
|
|
|
}
|
2016-09-02 12:39:08 +10:00
|
|
|
|
2016-11-03 07:07:04 +11:00
|
|
|
struct cmd_results *bar_colors_cmd_focused_background(int argc, char **argv) {
|
|
|
|
return parse_single_color(&(config->current_bar->colors.focused_background), "focused_background", argc, argv);
|
|
|
|
}
|
2016-09-02 12:39:08 +10:00
|
|
|
|
2016-11-03 07:07:04 +11:00
|
|
|
struct cmd_results *bar_colors_cmd_binding_mode(int argc, char **argv) {
|
|
|
|
char **colors[3] = {
|
|
|
|
&(config->current_bar->colors.binding_mode_border),
|
|
|
|
&(config->current_bar->colors.binding_mode_bg),
|
|
|
|
&(config->current_bar->colors.binding_mode_text)
|
|
|
|
};
|
|
|
|
return parse_three_colors(colors, "binding_mode", argc, argv);
|
2016-09-02 12:39:08 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
struct cmd_results *bar_colors_cmd_focused_workspace(int argc, char **argv) {
|
2016-11-03 07:07:04 +11:00
|
|
|
char **colors[3] = {
|
|
|
|
&(config->current_bar->colors.focused_workspace_border),
|
|
|
|
&(config->current_bar->colors.focused_workspace_bg),
|
|
|
|
&(config->current_bar->colors.focused_workspace_text)
|
|
|
|
};
|
|
|
|
return parse_three_colors(colors, "focused_workspace", argc, argv);
|
2016-09-02 12:39:08 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
struct cmd_results *bar_colors_cmd_inactive_workspace(int argc, char **argv) {
|
2016-11-03 07:07:04 +11:00
|
|
|
char **colors[3] = {
|
|
|
|
&(config->current_bar->colors.inactive_workspace_border),
|
|
|
|
&(config->current_bar->colors.inactive_workspace_bg),
|
|
|
|
&(config->current_bar->colors.inactive_workspace_text)
|
|
|
|
};
|
|
|
|
return parse_three_colors(colors, "inactive_workspace", argc, argv);
|
2016-09-02 12:39:08 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
struct cmd_results *bar_colors_cmd_separator(int argc, char **argv) {
|
2016-11-03 07:07:04 +11:00
|
|
|
return parse_single_color(&(config->current_bar->colors.separator), "separator", argc, argv);
|
2016-09-02 12:39:08 +10:00
|
|
|
}
|
|
|
|
|
2016-11-03 04:48:43 +11:00
|
|
|
struct cmd_results *bar_colors_cmd_focused_separator(int argc, char **argv) {
|
2016-11-03 07:07:04 +11:00
|
|
|
return parse_single_color(&(config->current_bar->colors.focused_separator), "focused_separator", argc, argv);
|
2016-11-03 04:48:43 +11:00
|
|
|
}
|
|
|
|
|
2016-09-02 12:39:08 +10:00
|
|
|
struct cmd_results *bar_colors_cmd_statusline(int argc, char **argv) {
|
2016-11-03 07:07:04 +11:00
|
|
|
return parse_single_color(&(config->current_bar->colors.statusline), "statusline", argc, argv);
|
2016-09-02 12:39:08 +10:00
|
|
|
}
|
|
|
|
|
2016-11-03 04:48:43 +11:00
|
|
|
struct cmd_results *bar_colors_cmd_focused_statusline(int argc, char **argv) {
|
2016-11-03 07:07:04 +11:00
|
|
|
return parse_single_color(&(config->current_bar->colors.focused_separator), "focused_separator", argc, argv);
|
2016-11-03 04:48:43 +11:00
|
|
|
}
|
|
|
|
|
2016-09-02 12:39:08 +10:00
|
|
|
struct cmd_results *bar_colors_cmd_urgent_workspace(int argc, char **argv) {
|
2016-11-03 07:07:04 +11:00
|
|
|
char **colors[3] = {
|
|
|
|
&(config->current_bar->colors.urgent_workspace_border),
|
|
|
|
&(config->current_bar->colors.urgent_workspace_bg),
|
|
|
|
&(config->current_bar->colors.urgent_workspace_text)
|
|
|
|
};
|
|
|
|
return parse_three_colors(colors, "urgent_workspace", argc, argv);
|
2016-09-02 12:39:08 +10:00
|
|
|
}
|