aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands.c')
-rw-r--r--sway/commands.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/commands.c b/sway/commands.c
index d4f588de..f0db4ed2 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -354,12 +354,12 @@ static bool cmd_workspace(struct sway_config *config, int argc, char **argv) {
354 } 354 }
355 355
356 // Handle workspace output_next/prev 356 // Handle workspace output_next/prev
357 if (strcmp(argv[0], "output_next") == 0) { 357 if (strcmp(argv[0], "next_on_output") == 0) {
358 workspace_output_next(); 358 workspace_output_next();
359 return true; 359 return true;
360 } 360 }
361 361
362 if (strcmp(argv[0], "output_prev") == 0) { 362 if (strcmp(argv[0], "prev_on_output") == 0) {
363 workspace_output_prev(); 363 workspace_output_prev();
364 return true; 364 return true;
365 } 365 }