aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/floating.c
diff options
context:
space:
mode:
authorLibravatar Connor E <38229097+c-edw@users.noreply.github.com>2018-11-10 12:55:06 +0000
committerLibravatar Connor E <38229097+c-edw@users.noreply.github.com>2018-11-10 12:55:06 +0000
commitb865dabebab717fea75f91e8ccebabc99e36bdd9 (patch)
treedf51bf83b899933f1347508b9f1bd55aefa21ae5 /sway/commands/floating.c
parentMerge pull request #3085 from 7415963987456321/master (diff)
downloadsway-b865dabebab717fea75f91e8ccebabc99e36bdd9.tar.gz
sway-b865dabebab717fea75f91e8ccebabc99e36bdd9.tar.zst
sway-b865dabebab717fea75f91e8ccebabc99e36bdd9.zip
Use parse_boolean where possible.
Diffstat (limited to 'sway/commands/floating.c')
-rw-r--r--sway/commands/floating.c14
1 files changed, 3 insertions, 11 deletions
diff --git a/sway/commands/floating.c b/sway/commands/floating.c
index 81bb86f8..4b82921c 100644
--- a/sway/commands/floating.c
+++ b/sway/commands/floating.c
@@ -9,6 +9,7 @@
9#include "sway/tree/view.h" 9#include "sway/tree/view.h"
10#include "sway/tree/workspace.h" 10#include "sway/tree/workspace.h"
11#include "list.h" 11#include "list.h"
12#include "util.h"
12 13
13struct cmd_results *cmd_floating(int argc, char **argv) { 14struct cmd_results *cmd_floating(int argc, char **argv) {
14 struct cmd_results *error = NULL; 15 struct cmd_results *error = NULL;
@@ -40,17 +41,8 @@ struct cmd_results *cmd_floating(int argc, char **argv) {
40 } 41 }
41 } 42 }
42 43
43 bool wants_floating; 44 bool wants_floating =
44 if (strcasecmp(argv[0], "enable") == 0) { 45 parse_boolean(argv[0], container_is_floating(container));
45 wants_floating = true;
46 } else if (strcasecmp(argv[0], "disable") == 0) {
47 wants_floating = false;
48 } else if (strcasecmp(argv[0], "toggle") == 0) {
49 wants_floating = !container_is_floating(container);
50 } else {
51 return cmd_results_new(CMD_FAILURE, "floating",
52 "Expected 'floating <enable|disable|toggle>'");
53 }
54 46
55 container_set_floating(container, wants_floating); 47 container_set_floating(container, wants_floating);
56 48