commit 2123dfa15f32a1f3abde597c8ba0b3698761be31
parent db61d581a3bfab0fd895344ccd6efec181a0b20b
Author: ppascher <ppascher@users.noreply.github.com>
Date: Thu, 25 Oct 2018 19:48:45 +0200
Update workspace.c
re-added missing output check after config load
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/sway/commands/workspace.c b/sway/commands/workspace.c
@@ -108,6 +108,9 @@ struct cmd_results *cmd_workspace(int argc, char **argv) {
} else {
if (config->reading || !config->active) {
return cmd_results_new(CMD_DEFER, "workspace", NULL);
+ } else if (!root->outputs->length) {
+ return cmd_results_new(CMD_INVALID, "workspace",
+ "Can't run this command while there's no outputs connected.");
}
bool no_auto_back_and_forth = false;