aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kris7topher@gmail.com>2020-05-02 19:55:34 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2021-01-20 21:00:15 +0100
commit97111f3e606c7c11dd418c275c3e7c2d69b68a06 (patch)
tree0008e9206b2e8cc2fcf0250fc6986239d31bf9ba
parentAdhere to ICCCM focus specification (diff)
downloadsway-97111f3e606c7c11dd418c275c3e7c2d69b68a06.tar.gz
sway-97111f3e606c7c11dd418c275c3e7c2d69b68a06.tar.zst
sway-97111f3e606c7c11dd418c275c3e7c2d69b68a06.zip
Override outputs with the workspace command
-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 2858a284..9ff1c97d 100644
--- a/sway/commands/workspace.c
+++ b/sway/commands/workspace.c
@@ -158,6 +158,10 @@ struct cmd_results *cmd_workspace(int argc, char **argv) {
158 return cmd_results_new(CMD_FAILURE, 158 return cmd_results_new(CMD_FAILURE,
159 "Unable to allocate workspace output"); 159 "Unable to allocate workspace output");
160 } 160 }
161 if (output_location + 1 < argc) {
162 list_free_items_and_destroy(wsc->outputs);
163 wsc->outputs = create_list();
164 }
161 for (int i = output_location + 1; i < argc; ++i) { 165 for (int i = output_location + 1; i < argc; ++i) {
162 list_add(wsc->outputs, strdup(argv[i])); 166 list_add(wsc->outputs, strdup(argv[i]));
163 } 167 }