README: fix '{next,prev}-output' and add 'Breaking changes' section

This commit is contained in:
Skia 2023-01-15 11:15:01 +01:00
parent 5380131ee9
commit 0566cf106e

View file

@ -64,10 +64,10 @@ bindsym $mod+Shift+9 exec "swaysome move 9"
bindsym $mod+Shift+0 exec "swaysome move 0" bindsym $mod+Shift+0 exec "swaysome move 0"
# Move focused container to next output # 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 # 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 # Init workspaces for every screen
exec "swaysome init 1" exec "swaysome init 1"
@ -90,9 +90,12 @@ as usual.
## Exhaustive swaysome commands list ## Exhaustive swaysome commands list
* `move [name]`: move the focused container to `[name]` * `move [name]`: move the focused container to `[name]`
* `next_output`: move the focused container to the next output * `next-output`: move the focused container to the next output
* `prev_output`: move the focused container to the previous output * `prev-output`: move the focused container to the previous output
* `focus [name]`: change focus to `[name]` * `focus [name]`: change focus to `[name]`
* `focus_all_outputs [name]`: change all outputs 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]` * `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`.