aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/workspace.c
diff options
context:
space:
mode:
authorLibravatar ppascher <ppascher@users.noreply.github.com>2018-10-25 19:24:01 +0200
committerLibravatar GitHub <noreply@github.com>2018-10-25 19:24:01 +0200
commitdb61d581a3bfab0fd895344ccd6efec181a0b20b (patch)
treef9371461867bd17e258e0c2fc7c6c323324ac768 /sway/commands/workspace.c
parentMerge pull request #2973 from ianyfan/swaybar (diff)
downloadsway-db61d581a3bfab0fd895344ccd6efec181a0b20b.tar.gz
sway-db61d581a3bfab0fd895344ccd6efec181a0b20b.tar.zst
sway-db61d581a3bfab0fd895344ccd6efec181a0b20b.zip
Update workspace.c
Remove output requirement for workspace command
Diffstat (limited to 'sway/commands/workspace.c')
-rw-r--r--sway/commands/workspace.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/sway/commands/workspace.c b/sway/commands/workspace.c
index 8364e607..745b40c7 100644
--- a/sway/commands/workspace.c
+++ b/sway/commands/workspace.c
@@ -38,10 +38,6 @@ 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 }
45 41
46 int output_location = -1; 42 int output_location = -1;
47 int gaps_location = -1; 43 int gaps_location = -1;