aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/scratchpad.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/scratchpad.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/scratchpad.c')
-rw-r--r--sway/commands/scratchpad.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sway/commands/scratchpad.c b/sway/commands/scratchpad.c
index 26f0e490..6eab456d 100644
--- a/sway/commands/scratchpad.c
+++ b/sway/commands/scratchpad.c
@@ -87,6 +87,10 @@ struct cmd_results *cmd_scratchpad(int argc, char **argv) {
87 return cmd_results_new(CMD_INVALID, "scratchpad", 87 return cmd_results_new(CMD_INVALID, "scratchpad",
88 "Expected 'scratchpad show'"); 88 "Expected 'scratchpad show'");
89 } 89 }
90 if (!root->outputs->length) {
91 return cmd_results_new(CMD_INVALID, "scratchpad",
92 "Can't run this command while there's no outputs connected.");
93 }
90 if (!root->scratchpad->length) { 94 if (!root->scratchpad->length) {
91 return cmd_results_new(CMD_INVALID, "scratchpad", 95 return cmd_results_new(CMD_INVALID, "scratchpad",
92 "Scratchpad is empty"); 96 "Scratchpad is empty");