42 lines
861 B
Text
42 lines
861 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
|
|
bindsym $mod+b splith
|
|
bindsym $mod+v splitv
|
|
|
|
# Change Layout Style
|
|
bindsym $mod+s layout stacking
|
|
bindsym $mod+w layout tabbed
|
|
bindsym $mod+e layout toggle split
|
|
|
|
# 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
|