61 lines
2.1 KiB
Text
61 lines
2.1 KiB
Text
|
|
# Move focus with mainMod + arrow keys
|
|
bind = $mainMod, left, movefocus, l
|
|
bind = $mainMod, down, movefocus, d
|
|
bind = $mainMod, up, movefocus, u
|
|
bind = $mainMod, right, movefocus, r
|
|
bind = $mainMod, h, movefocus, l
|
|
bind = $mainMod, j, movefocus, d
|
|
bind = $mainMod, k, movefocus, u
|
|
bind = $mainMod, l, movefocus, r
|
|
|
|
# Switch workspaces with mainMod + [0-9]
|
|
bind = $mainMod, 1, workspace, 1
|
|
bind = $mainMod, 2, workspace, 2
|
|
bind = $mainMod, 3, workspace, 3
|
|
bind = $mainMod, 4, workspace, 4
|
|
bind = $mainMod, 5, workspace, 5
|
|
bind = $mainMod, 6, workspace, 6
|
|
bind = $mainMod, 7, workspace, 7
|
|
bind = $mainMod, 8, workspace, 8
|
|
bind = $mainMod, 9, workspace, 9
|
|
bind = $mainMod, 0, workspace, 10
|
|
|
|
# Move active window to a workspace with mainMod + SHIFT + [0-9]
|
|
bind = $mainMod SHIFT, 1, movetoworkspacesilent, 1
|
|
bind = $mainMod SHIFT, 2, movetoworkspacesilent, 2
|
|
bind = $mainMod SHIFT, 3, movetoworkspacesilent, 3
|
|
bind = $mainMod SHIFT, 4, movetoworkspacesilent, 4
|
|
bind = $mainMod SHIFT, 5, movetoworkspacesilent, 5
|
|
bind = $mainMod SHIFT, 6, movetoworkspacesilent, 6
|
|
bind = $mainMod SHIFT, 7, movetoworkspacesilent, 7
|
|
bind = $mainMod SHIFT, 8, movetoworkspacesilent, 8
|
|
bind = $mainMod SHIFT, 9, movetoworkspacesilent, 9
|
|
bind = $mainMod SHIFT, 0, movetoworkspacesilent, 10
|
|
|
|
# Example special workspace (scratchpad)
|
|
bind = , F1, togglespecialworkspace, magic
|
|
bind = SHIFT, F1, movetoworkspace, special:magic
|
|
|
|
# Scroll through existing workspaces with mainMod + scroll
|
|
bind = $mainMod, mouse_down, workspace, e+1
|
|
bind = $mainMod, mouse_up, workspace, e-1
|
|
|
|
# Move/resize windows with mainMod + LMB/RMB and dragging
|
|
bindm = $mainMod, mouse:272, movewindow
|
|
bindm = $mainMod, mouse:273, resizewindow
|
|
|
|
# Resize windows
|
|
bind = $mainMod, R, submap, resize
|
|
submap = resize
|
|
binde = , left, resizeactive, -15 0
|
|
binde = , down, resizeactive, 0 15
|
|
binde = , up, resizeactive, 0 -15
|
|
binde = , right, resizeactive, 15 0
|
|
binde = , h, resizeactive, -15 0
|
|
binde = , j, resizeactive, 0 15
|
|
binde = , k, resizeactive, 0 -15
|
|
binde = , l, resizeactive, 15 0
|
|
bind = , escape, submap, reset
|
|
submap = reset
|
|
|