Skip to content
Snippets Groups Projects
Verified Commit dcc52ed0 authored by Andreas Gerlach's avatar Andreas Gerlach
Browse files

[sway] add gaps inc/decr to resize mode

parent da9b23de
No related branches found
No related tags found
No related merge requests found
......@@ -65,6 +65,8 @@ Sway has up to ten different workspaces that can be freely arranged on the avail
After activating the Resize Mode you should see a message in the statusbar.
- resize the current application window: **\<movement-key\>**
- increase the gaps between windows: **+**
- decrease the gaps between windows: **-**
- exit the resize mode: **Enter** or **ESC**
## Scratchpad Mode
......
......@@ -17,6 +17,12 @@ mode "resize" {
bindsym Up resize shrink height 10px
bindsym Right resize grow width 10px
## Resize // Window Gaps // + - ##
bindsym minus gaps inner current minus 6
bindsym plus gaps inner current plus 6
bindsym Shift+minus gaps inner current minus 12
bindsym Shift+plus gaps inner current plus 12
# Return to default mode
bindsym Return mode "default"
bindsym Escape mode "default"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment