| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- local mainMod = "ALT"
- local secMod = "SUPER"
- local terminal = "alacritty"
- local fileManager = "dolphin"
- -- Example binds, see https://wiki.hypr.land/Configuring/Basics/Binds/ for more
- hl.bind(mainMod .. " + Return", hl.dsp.exec_cmd(terminal))
- hl.bind(mainMod .. " + SHIFT + Q", hl.dsp.window.close())
- --hl.bind(mainMod .. " + M", hl.dsp.exec_cmd("command -v hyprshutdown >/dev/null 2>&1 && hyprshutdown || hyprctl dispatch 'hl.dsp.exit()'"))
- hl.bind(mainMod .. " + P", hl.dsp.window.pseudo())
- hl.bind(mainMod .. " + V", hl.dsp.layout("togglesplit")) -- dwindle only
- hl.bind(mainMod .. " + F", hl.dsp.window.fullscreen({ action = "toggle" }))
- hl.bind(mainMod .. " + SHIFT + SPACE", hl.dsp.window.float({ action = "toggle" }))
- hl.bind(secMod .. " + E", hl.dsp.exec_cmd(fileManager))
- hl.bind(secMod .. " + Q", hl.dsp.exec_cmd("firefox"))
- hl.bind(secMod .. " + S", hl.dsp.exec_cmd("spotify"))
- hl.bind(secMod .. " + D", hl.dsp.exec_cmd("vesktop"))
- hl.bind(secMod .. " + SHIFT + C", hl.dsp.exec_cmd("hyprpicker --autocopy"))
- hl.bind(mainMod .. " + CONTROL + A", hl.dsp.exec_cmd("amixer set Capture toggle"))
- hl.bind(mainMod .. " + CONTROL + S", hl.dsp.exec_cmd("amixer set Master toggle"))
- -- Move focus with mainMod + arrow keys
- hl.bind(mainMod .. " + left", hl.dsp.focus({ direction = "left" }))
- hl.bind(mainMod .. " + right", hl.dsp.focus({ direction = "right" }))
- hl.bind(mainMod .. " + up", hl.dsp.focus({ direction = "up" }))
- hl.bind(mainMod .. " + down", hl.dsp.focus({ direction = "down" }))
- -- Move window
- hl.bind(mainMod .. " + SHIFT + left", hl.dsp.window.move({ direction = "left" }))
- hl.bind(mainMod .. " + SHIFT + right", hl.dsp.window.move({ direction = "right" }))
- hl.bind(mainMod .. " + SHIFT + up", hl.dsp.window.move({ direction = "up" }))
- hl.bind(mainMod .. " + SHIFT + down", hl.dsp.window.move({ direction = "down" }))
- -- Switch workspaces with mainMod + [0-9]
- -- Move active window to a workspace with mainMod + SHIFT + [0-9]
- for i = 1, 10 do
- local key = i % 10 -- 10 maps to key 0
- hl.bind(mainMod .. " + " .. key, hl.dsp.focus({ workspace = i}))
- hl.bind(mainMod .. " + SHIFT + " .. key, hl.dsp.window.move({ workspace = i, follow = false }))
- end
- for i = 1, 10 do
- local key = "F" .. i
- hl.bind(mainMod .. " + " .. key, hl.dsp.focus({ workspace = i + 10 }))
- hl.bind(mainMod .. " + SHIFT + " .. key, hl.dsp.window.move({ workspace = i + 10, follow = false }))
- end
- -- Example special workspace (scratchpad)
- hl.bind(mainMod .. " + BAR", hl.dsp.workspace.toggle_special("magic"))
- hl.bind(mainMod .. " + SHIFT + BAR", hl.dsp.window.move({ workspace = "special:magic" }))
- -- Scroll through existing workspaces with mainMod + scroll
- hl.bind(mainMod .. " + mouse_down", hl.dsp.focus({ workspace = "e+1" }))
- hl.bind(mainMod .. " + mouse_up", hl.dsp.focus({ workspace = "e-1" }))
- -- Move/resize windows with mainMod + LMB/RMB and dragging
- hl.bind(mainMod .. " + mouse:272", hl.dsp.window.drag(), { mouse = true })
- hl.bind(mainMod .. " + mouse:273", hl.dsp.window.resize(), { mouse = true })
- -- Laptop multimedia keys for volume and LCD brightness
- hl.bind("XF86AudioRaiseVolume", hl.dsp.exec_cmd("wpctl set-volume -l 1 @DEFAULT_AUDIO_SINK@ 5%+"), { locked = true, repeating = true })
- hl.bind("XF86AudioLowerVolume", hl.dsp.exec_cmd("wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-"), { locked = true, repeating = true })
- hl.bind("XF86AudioMute", hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"), { locked = true, repeating = true })
- hl.bind("XF86AudioMicMute", hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle"), { locked = true, repeating = true })
- hl.bind("XF86MonBrightnessUp", hl.dsp.exec_cmd("brightnessctl -e4 -n2 set 5%+"), { locked = true, repeating = true })
- hl.bind("XF86MonBrightnessDown",hl.dsp.exec_cmd("brightnessctl -e4 -n2 set 5%-"), { locked = true, repeating = true })
- -- Requires playerctl
- hl.bind("XF86AudioNext", hl.dsp.exec_cmd("playerctl next"), { locked = true })
- hl.bind("XF86AudioPause", hl.dsp.exec_cmd("playerctl play-pause"), { locked = true })
- hl.bind("XF86AudioPlay", hl.dsp.exec_cmd("playerctl play-pause"), { locked = true })
- hl.bind("XF86AudioPrev", hl.dsp.exec_cmd("playerctl previous"), { locked = true })
|