43 lines
944 B
Text
43 lines
944 B
Text
#
|
|
# Window Management
|
|
#
|
|
|
|
# Kill Focused Window
|
|
bindsym $mod+Shift+q kill
|
|
|
|
# Move Floating Window
|
|
floating_modifier $mod normal
|
|
|
|
# Move Focus Around
|
|
bindsym $mod+Left focus left
|
|
bindsym $mod+Down focus down
|
|
bindsym $mod+Up focus up
|
|
bindsym $mod+Right focus right
|
|
|
|
# Move Focused Window
|
|
bindsym $mod+Shift+Left move left
|
|
bindsym $mod+Shift+Down move down
|
|
bindsym $mod+Shift+Up move up
|
|
bindsym $mod+Shift+Right move right
|
|
|
|
# Fullscreen
|
|
bindsym $mod+f fullscreen
|
|
|
|
# Change Split Orientation
|
|
# < splits windows horizontally, > splits vertically
|
|
bindsym $mod+comma splith
|
|
bindsym $mod+period splitv
|
|
bindsym $mod+slash layout toggle split
|
|
|
|
# Change Layout Style
|
|
bindsym $mod+semicolon layout stacking
|
|
bindsym $mod+apostrophe layout tabbed
|
|
|
|
# Focus Parent
|
|
bindsym $mod+a focus parent
|
|
|
|
# Toggle Floating
|
|
bindsym $mod+Shift+space floating toggle
|
|
|
|
# Swap Between Tiles and Floats
|
|
bindsym $mod+space focus mode_toggle
|