From 0566cf106ee80ad4d1067cc599c31eb6f3117391 Mon Sep 17 00:00:00 2001 From: Skia Date: Sun, 15 Jan 2023 11:15:01 +0100 Subject: [PATCH] README: fix '{next,prev}-output' and add 'Breaking changes' section --- README.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index eb3179c..d9bb7ec 100644 --- a/README.md +++ b/README.md @@ -64,10 +64,10 @@ bindsym $mod+Shift+9 exec "swaysome move 9" bindsym $mod+Shift+0 exec "swaysome move 0" # Move focused container to next output -bindsym $mod+o exec "swaysome next_output" +bindsym $mod+o exec "swaysome next-output" # Move focused container to previous output -bindsym $mod+Shift+o exec "swaysome prev_output" +bindsym $mod+Shift+o exec "swaysome prev-output" # Init workspaces for every screen exec "swaysome init 1" @@ -90,9 +90,12 @@ as usual. ## Exhaustive swaysome commands list * `move [name]`: move the focused container to `[name]` -* `next_output`: move the focused container to the next output -* `prev_output`: move the focused container to the previous output +* `next-output`: move the focused container to the next output +* `prev-output`: move the focused container to the previous output * `focus [name]`: change focus to `[name]` * `focus_all_outputs [name]`: change all outputs focus to `[name]` * `init [name]`: cycle all outputs to create a default workspace with name `[name]` +## Breaking changes + +* Starting with 1.1.6, `next_output` and `prev_output` have been changed to `next-output` and `prev-output`.