mirror of
https://git.aramjonghu.nl/AramJonghu/hypr.git
synced 2026-06-06 20:38:24 +02:00
minor adjustments for lua conversion
This commit is contained in:
+4
-4
@@ -13,10 +13,10 @@ hl.bind("SUPER + H", hl.dsp.movefocus("l"))
|
||||
hl.bind("SUPER + L", hl.dsp.movefocus("r"))
|
||||
hl.bind("SUPER + K", hl.dsp.movefocus("u"))
|
||||
hl.bind("SUPER + J", hl.dsp.movefocus("d"))
|
||||
hl.bind("SUPER + SHIFT + L", hl.dsp.resizeactive("50 0"), { repeating = true })
|
||||
hl.bind("SUPER + SHIFT + H", hl.dsp.resizeactive("-50 0"), { repeating = true })
|
||||
hl.bind("SUPER + SHIFT + K", hl.dsp.resizeactive("0 -50"), { repeating = true })
|
||||
hl.bind("SUPER + SHIFT + J", hl.dsp.resizeactive("0 50"), { repeating = true })
|
||||
hl.bind("SUPER + SHIFT + L", hl.dsp.window.resize({ x = 50, y = 0, relative = true }), { repeating = true })
|
||||
hl.bind("SUPER + SHIFT + H", hl.dsp.window.resize({ x = -50, y = 0, relative = true }), { repeating = true })
|
||||
hl.bind("SUPER + SHIFT + K", hl.dsp.window.resize({ x = 0, y = -50, relative = true }), { repeating = true })
|
||||
hl.bind("SUPER + SHIFT + J", hl.dsp.window.resize({ x = 0, y = 50, relative = true }), { repeating = true })
|
||||
|
||||
hl.bind("SUPER + 1", hl.dsp.workspace("1"))
|
||||
hl.bind("SUPER + 2", hl.dsp.workspace("2"))
|
||||
|
||||
Reference in New Issue
Block a user