diff options
author | Alex Maese <memaese@hotmail.com> | 2020-01-19 11:10:30 -0600 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2020-01-20 09:19:04 -0700 |
commit | 86ee240a4a6a958b4728b3613ce05edd884caf45 (patch) | |
tree | f50b0aa7919f4313ff3ac06ee37e6f6403fdb314 /sway/commands | |
parent | a576bc27bf29e91ccf6659cafffeb6cd38a8d9f1 (diff) |
Add ability to remove the floating modifier
Diffstat (limited to 'sway/commands')
-rw-r--r-- | sway/commands/floating_modifier.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sway/commands/floating_modifier.c b/sway/commands/floating_modifier.c index fd606281..c02bce97 100644 --- a/sway/commands/floating_modifier.c +++ b/sway/commands/floating_modifier.c @@ -9,6 +9,11 @@ struct cmd_results *cmd_floating_modifier(int argc, char **argv) { return error; } + if (strcasecmp(argv[0], "none") == 0) { + config->floating_mod = 0; + return cmd_results_new(CMD_SUCCESS, NULL); + } + uint32_t mod = get_modifier_mask_by_name(argv[0]); if (!mod) { return cmd_results_new(CMD_INVALID, "Invalid modifier"); |