Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions default/hypr/bindings/tiling.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ o.bind("SUPER + O", "Pop window out (float & pin)", "omarchy-hyprland-window-pop
o.bind("SUPER + ALT + Home", "Save window width", "omarchy-hyprland-window-width save")
o.bind("SUPER + Home", "Restore window width", "omarchy-hyprland-window-width restore")
o.bind("SUPER + L", "Toggle workspace layout", "omarchy-hyprland-workspace-layout-toggle")
o.bind("SUPER + BACKSLASH", "Stack or unstack window with next column", hl.dsp.layout("consume_or_expel next"))
o.bind("SUPER + SHIFT + BACKSLASH", "Stack or unstack window with previous column", hl.dsp.layout("consume_or_expel prev"))
o.bind("SUPER + BRACKETRIGHT", "Widen column", hl.dsp.layout("colresize +conf"))
o.bind("SUPER + BRACKETLEFT", "Narrow column", hl.dsp.layout("colresize -conf"))

o.bind("SUPER + LEFT", "Focus on left window", hl.dsp.focus({ direction = "l" }))
o.bind("SUPER + RIGHT", "Focus on right window", hl.dsp.focus({ direction = "r" }))
Expand Down