dotfiles/de/home/.config/sway/config.d/resize
2024-03-27 15:15:01 -06:00

29 lines
500 B
Text

#
# Resize Mode
#
#Enter Resize Mode
bindsym $mod+r mode "resize"
#Define Mode Rules
mode "resize" {
#Right: Grow Width
bindsym Right resize grow width 10px
# Left: Shrink Width
bindsym Left resize shrink width 10px
# Up: Grow Height
bindsym Up resize grow height 10px
# Down: Shrink Height
bindsym Down resize shrink height 10px
# Return to default mode
bindsym Return mode "default"
bindsym Escape mode "default"
bindsym $mod+r mode "default"
}