diff options
author | Drew DeVault <sir@cmpwn.com> | 2015-11-04 07:37:37 -0500 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2015-11-04 07:37:37 -0500 |
commit | c3d731ba9333b6bce4e9f6b9a6ee20bbe7967865 (patch) | |
tree | 325b45395cd3ccda48cb7400922fda5b4731b14b /sway/commands.c | |
parent | 713c7d6e1eb886de374659d41ae4cab0f4bc3f34 (diff) | |
parent | abc5fbfaec5159de7e3f6043e61c00b81787a9f2 (diff) |
Merge pull request #216 from sce/learn_edge_gaps_0
Learn "gaps edge_gaps <on|off|toggle>".
Diffstat (limited to 'sway/commands.c')
-rw-r--r-- | sway/commands.c | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/sway/commands.c b/sway/commands.c index 19b8e1a9..2cfda07c 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -761,7 +761,8 @@ static struct cmd_results *cmd_gaps(int argc, char **argv) { return error; } const char* expected_syntax = - "Expected 'gaps <inner|outer> <current|all|workspace> <set|plus|minus n>'"; + "Expected 'gaps edge_gaps <on|off|toggle>' or " + "'gaps <inner|outer> <current|all|workspace> <set|plus|minus n>'"; const char *amount_str = argv[0]; // gaps amount if (argc >= 1 && isdigit(*amount_str)) { @@ -789,6 +790,20 @@ static struct cmd_results *cmd_gaps(int argc, char **argv) { } arrange_windows(&root_container, -1, -1); return cmd_results_new(CMD_SUCCESS, NULL, NULL); + } else if (argc == 2 && strcasecmp(argv[0], "edge_gaps") == 0) { + // gaps edge_gaps <on|off|toggle> + if (strcasecmp(argv[1], "toggle") == 0) { + if (config->reading) { + return cmd_results_new(CMD_FAILURE, "gaps edge_gaps toggle", + "Can't be used in config file."); + } + config->edge_gaps = !config->edge_gaps; + } else { + config->edge_gaps = + (strcasecmp(argv[1], "yes") == 0 || strcasecmp(argv[1], "on") == 0); + } + arrange_windows(&root_container, -1, -1); + return cmd_results_new(CMD_SUCCESS, NULL, NULL); } // gaps inner|outer current|all set|plus|minus n if (argc < 4 || config->reading) { |