aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/workspace.c
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-10-26 00:03:44 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-10-26 00:03:44 +1000
commit885963f11fa031d9cb78d4a28788f8ee0a7769ec (patch)
tree6ee9577b8af7b68d85984e8f7ea03d8bf818d3d7 /sway/commands/workspace.c
parentMerge pull request #2950 from emersion/presentation-time (diff)
downloadsway-885963f11fa031d9cb78d4a28788f8ee0a7769ec.tar.gz
sway-885963f11fa031d9cb78d4a28788f8ee0a7769ec.tar.zst
sway-885963f11fa031d9cb78d4a28788f8ee0a7769ec.zip
Deny several commands when there's no outputs connected
Diffstat (limited to 'sway/commands/workspace.c')
-rw-r--r--sway/commands/workspace.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sway/commands/workspace.c b/sway/commands/workspace.c
index 745b40c7..8364e607 100644
--- a/sway/commands/workspace.c
+++ b/sway/commands/workspace.c
@@ -38,6 +38,10 @@ struct cmd_results *cmd_workspace(int argc, char **argv) {
38 if ((error = checkarg(argc, "workspace", EXPECTED_AT_LEAST, 1))) { 38 if ((error = checkarg(argc, "workspace", EXPECTED_AT_LEAST, 1))) {
39 return error; 39 return error;
40 } 40 }
41 if (!root->outputs->length) {
42 return cmd_results_new(CMD_INVALID, "workspace",
43 "Can't run this command while there's no outputs connected.");
44 }
41 45
42 int output_location = -1; 46 int output_location = -1;
43 int gaps_location = -1; 47 int gaps_location = -1;