nix/home/config/sway/module/Resize.nix
2024-11-06 01:07:30 +03:00

12 lines
384 B
Nix

{ ... }: let
stepHorizontal = 10;
stepVertical = 10;
in {
text = ''
bindsym --to-code $mod+j resize grow height ${toString stepVertical}px
bindsym --to-code $mod+k resize shrink height ${toString stepVertical}px
bindsym --to-code $mod+h resize shrink width ${toString stepHorizontal}px
bindsym --to-code $mod+l resize grow width ${toString stepHorizontal}px
'';
}