2018-03-30 08:20:03 +11:00
|
|
|
#include <string.h>
|
|
|
|
#include "sway/commands.h"
|
2019-01-22 04:39:16 +11:00
|
|
|
#include "sway/input/keyboard.h"
|
2018-03-30 08:20:03 +11:00
|
|
|
#include "log.h"
|
|
|
|
#include "stringop.h"
|
|
|
|
|
|
|
|
struct cmd_results *bar_cmd_modifier(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "modifier", EXPECTED_EQUAL_TO, 1))) {
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t mod = 0;
|
2019-02-07 14:00:29 +11:00
|
|
|
if (strcmp(argv[0], "none") != 0) {
|
|
|
|
list_t *split = split_string(argv[0], "+");
|
|
|
|
for (int i = 0; i < split->length; ++i) {
|
|
|
|
uint32_t tmp_mod;
|
|
|
|
if ((tmp_mod = get_modifier_mask_by_name(split->items[i])) > 0) {
|
|
|
|
mod |= tmp_mod;
|
|
|
|
} else if (strcmp(split->items[i], "none") == 0) {
|
|
|
|
error = cmd_results_new(CMD_INVALID,
|
|
|
|
"none cannot be used along with other modifiers");
|
|
|
|
list_free_items_and_destroy(split);
|
|
|
|
return error;
|
|
|
|
} else {
|
|
|
|
error = cmd_results_new(CMD_INVALID,
|
|
|
|
"Unknown modifier '%s'", (char *)split->items[i]);
|
|
|
|
list_free_items_and_destroy(split);
|
|
|
|
return error;
|
|
|
|
}
|
2018-03-30 08:20:03 +11:00
|
|
|
}
|
2019-02-07 14:00:29 +11:00
|
|
|
list_free_items_and_destroy(split);
|
2018-03-30 08:20:03 +11:00
|
|
|
}
|
|
|
|
config->current_bar->modifier = mod;
|
2019-01-21 05:51:12 +11:00
|
|
|
sway_log(SWAY_DEBUG,
|
2018-03-30 13:05:16 +11:00
|
|
|
"Show/Hide the bar when pressing '%s' in hide mode.", argv[0]);
|
2019-01-11 10:27:21 +11:00
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
2018-03-30 08:20:03 +11:00
|
|
|
}
|