sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 6b80879ec92b14e26fb4b9aea0dddfbf8e19ba08
parent 7f4529ec8b6362ef36ce546cfe34d816f1b708f0
Author: Luminarys <kizunanohikari@gmail.com>
Date:   Sun, 16 Aug 2015 15:51:43 -0500

Minor naming fix workspace changing commands

Diffstat:
Msway/commands.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sway/commands.c b/sway/commands.c @@ -354,12 +354,12 @@ static bool cmd_workspace(struct sway_config *config, int argc, char **argv) { } // Handle workspace output_next/prev - if (strcmp(argv[0], "output_next") == 0) { + if (strcmp(argv[0], "next_on_output") == 0) { workspace_output_next(); return true; } - if (strcmp(argv[0], "output_prev") == 0) { + if (strcmp(argv[0], "prev_on_output") == 0) { workspace_output_prev(); return true; }