Files
2026-05-14 18:59:23 -04:00

16 lines
344 B
Lua

-- ~/.hammerspoon/HyperKey.lua
-- Define the Hyper Key global (Cmd + Alt + Ctrl + Shift)
-- Map Caps Lock to this combo using Karabiner-Elements
-- hyper = {"ralt"}
hyper = {"cmd", "alt", "ctrl", "shift"}
-- Global Shortcuts
hs.hotkey.bind(hyper, "R", function()
hs.reload()
end)
print("HyperKey Module: Set to CAPS Lock")
return hyper