some mcsr bullshit

This commit is contained in:
2026-05-30 21:51:18 -07:00
parent b4c8930dfe
commit dd0ad8816b
6 changed files with 27 additions and 12 deletions

View File

@@ -182,10 +182,10 @@ bind("SUPER + SHIFT + COMMA", hl.dsp.exec_cmd(
local zoom = false
bind("SUPER + SEMICOLON", function ()
if zoom then
hl.config({cursor = {zoom_factor = 1.0}})
hl.config({cursor = {zoom_factor = 1.0, invisible = false}})
zoom = false
else
hl.config({cursor = {zoom_factor = 3.0}})
hl.config({cursor = {zoom_factor = 3.0, invisible = true}})
zoom = true
end
end)
@@ -199,3 +199,10 @@ bind("SUPER + G", hl.dsp.exec_cmd("zen-browser"))
bind("SUPER + C", hl.dsp.exec_cmd("vesktop"))
bind("SUPER + R", hl.dsp.exec_cmd("keepassxc"))
bind("SUPER + L", hl.dsp.exec_cmd("kitty"))
bind("KP_HOME", hl.dsp.pass({window = "class:vesktop"}))
bind("KP_HOME", hl.dsp.pass({window = "class:vesktop"}), {release = true})
bind("KP_UP", hl.dsp.send_shortcut({mods = "CTRL + SHIFT", key = "M", window = "class:vesktop"}))
bind("KP_UP", hl.dsp.send_shortcut({mods = "CTRL + SHIFT", key = "M", window = "class:vesktop"}), {release = true})
bind("KP_PRIOR", hl.dsp.send_shortcut({mods = "CTRL + SHIFT", key = "D", window = "class:vesktop"}))
bind("KP_PRIOR", hl.dsp.send_shortcut({mods = "CTRL + SHIFT", key = "D", window = "class:vesktop"}), {release = true})