1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
bind = $mainMod, R, exec, hyprctl notify 0 10000 0 " RESIZE MODE (Left-Up-Down-Right / H-J-K-L)"
bind = $mainMod, R, submap, resize
$move = 25
submap = resize
# arrows
binde = , right, resizeactive, 25 0
binde = , left, resizeactive, -25 0
binde = , up, resizeactive, 0 -25
binde = , down, resizeactive, 0 25
# vim style
binde = , L, resizeactive, 25 0
binde = , H, resizeactive, -25 0
binde = , J, resizeactive, 0 -25
binde = , K, resizeactive, 0 25
# reset
# bind = , Escape, exec, hyprctl notify-dismiss 1
bind = , Escape, submap, reset
submap = reset
|