Implement floating_modifier <mod> [inverse|normal]

This commit is contained in:
Brian Ashworth 2018-07-24 18:41:08 -04:00
parent 817d37c950
commit dca02944ce
4 changed files with 18 additions and 4 deletions

View file

@ -1,10 +1,11 @@
#include "strings.h"
#include "sway/commands.h"
#include "sway/config.h"
#include "util.h"
struct cmd_results *cmd_floating_modifier(int argc, char **argv) {
struct cmd_results *error = NULL;
if ((error = checkarg(argc, "floating_modifier", EXPECTED_EQUAL_TO, 1))) {
if ((error = checkarg(argc, "floating_modifier", EXPECTED_AT_LEAST, 1))) {
return error;
}
@ -14,6 +15,15 @@ struct cmd_results *cmd_floating_modifier(int argc, char **argv) {
"Invalid modifier");
}
if (argc == 1 || strcasecmp(argv[1], "normal") == 0) {
config->floating_mod_inverse = false;
} else if (strcasecmp(argv[1], "inverse") == 0) {
config->floating_mod_inverse = true;
} else {
return cmd_results_new(CMD_INVALID, "floating_modifier",
"Usage: floating_modifier <mod> [inverse|normal]");
}
config->floating_mod = mod;
return cmd_results_new(CMD_SUCCESS, NULL, NULL);