-- Keybindings local terminal = "alacritty" local fileManager = "dolphin" local menu = "wofi --show drun" local browser = "zen-browser" local mainMod = "SUPER" -- Launch/close hl.bind(mainMod .. " + Return", hl.dsp.exec_cmd(terminal)) hl.bind(mainMod .. " + Q", hl.dsp.window.close()) hl.bind(mainMod .. " + ALT + Q", hl.dsp.exit()) hl.bind(mainMod .. " + E", hl.dsp.exec_cmd(fileManager)) hl.bind(mainMod .. " + W", hl.dsp.exec_cmd(browser)) hl.bind(mainMod .. " + T", hl.dsp.window.float({ action = "toggle" })) hl.bind(mainMod .. " + F", hl.dsp.window.fullscreen()) hl.bind( mainMod .. " + V", hl.dsp.exec_cmd("cliphist list | wofi --dmenu | cliphist decode | wl-copy") ) hl.bind(mainMod .. " + R", hl.dsp.exec_cmd(menu)) hl.bind(mainMod .. " + P", hl.dsp.window.pseudo()) hl.bind(mainMod .. " + J", hl.dsp.layout("togglesplit")) -- Move focus with mainMod + arrow keys hl.bind(mainMod .. " + left", hl.dsp.focus({ direction = "l" })) hl.bind(mainMod .. " + right", hl.dsp.focus({ direction = "r" })) hl.bind(mainMod .. " + up", hl.dsp.focus({ direction = "u" })) hl.bind(mainMod .. " + down", hl.dsp.focus({ direction = "d" })) -- Swap windows with mainMod + SHIFT + arrow keys hl.bind(mainMod .. " + SHIFT + left", hl.dsp.window.swap({ direction = "l" })) hl.bind(mainMod .. " + SHIFT + right", hl.dsp.window.swap({ direction = "r" })) hl.bind(mainMod .. " + SHIFT + up", hl.dsp.window.swap({ direction = "u" })) hl.bind(mainMod .. " + SHIFT + down", hl.dsp.window.swap({ direction = "d" })) -- Resize windows with mainMod + CTRL + arrow keys hl.bind(mainMod .. " + CTRL + left", hl.dsp.window.resize({ x = -60, y = 0 })) hl.bind(mainMod .. " + CTRL + right", hl.dsp.window.resize({ x = 60, y = 0 })) hl.bind(mainMod .. " + CTRL + up", hl.dsp.window.resize({ x = 0, y = -60 })) hl.bind(mainMod .. " + CTRL + down", hl.dsp.window.resize({ x = 0, y = 60 })) -- Switch / move workspaces with mainMod + [0-9] for i = 1, 10 do local key = i % 10 hl.bind(mainMod .. " + " .. key, hl.dsp.focus({ workspace = i })) hl.bind( mainMod .. " + SHIFT + " .. key, hl.dsp.window.move({ workspace = i, silent = true }) ) end -- 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 hl.bind(mainMod .. " + mouse:272", hl.dsp.window.drag(), { mouse = true }) hl.bind(mainMod .. " + mouse:273", hl.dsp.window.resize(), { mouse = true }) -- Brightness hl.bind( "XF86MonBrightnessDown", hl.dsp.exec_cmd("brightnessctl set 5%-"), { locked = true, repeating = true } ) hl.bind( "XF86MonBrightnessUp", hl.dsp.exec_cmd("brightnessctl set 5%+"), { locked = true, repeating = true } ) -- Audio hl.bind( "XF86AudioRaiseVolume", hl.dsp.exec_cmd("wpctl set-volume @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 } ) hl.bind( "XF86AudioPlay", hl.dsp.exec_cmd("playerctl play-pause"), { locked = true } ) hl.bind( "XF86AudioPrev", hl.dsp.exec_cmd("playerctl previous"), { locked = true } ) hl.bind("XF86AudioNext", hl.dsp.exec_cmd("playerctl next"), { locked = true }) -- Misc binds hl.bind( mainMod .. " + SHIFT + C", hl.dsp.exec_cmd(terminal .. " -e sh -c 'nvim ~/.config/'") ) hl.bind(mainMod .. " + SHIFT + S", hl.dsp.exec_cmd("grimblast copysave area"))