add a bunch of sway stuff

This commit is contained in:
Mark Riedesel 2024-06-12 11:42:25 -05:00
parent e0d58c813d
commit 2ac99db38b
15 changed files with 521 additions and 0 deletions

17
.config/sway/modes/resize Normal file
View file

@ -0,0 +1,17 @@
mode "resize" {
$bindsym h resize shrink width 10 px or 10 ppt
$bindsym j resize grow height 10 px or 10 ppt
$bindsym k resize shrink height 10 px or 10 ppt
$bindsym l resize grow width 10 px or 10 ppt
# same bindings, but for the arrow keys
$bindsym Left resize shrink width 10 px or 10 ppt
$bindsym Down resize grow height 10 px or 10 ppt
$bindsym Up resize shrink height 10 px or 10 ppt
$bindsym Right resize grow width 10 px or 10 ppt
# back to normal: Enter or Escape
$bindsym Return mode "default"
$bindsym Escape mode "default"
}
$bindsym $mod+r mode "resize"