Initial commit of Hammerspoon config

This commit is contained in:
Franco Pellicciotti
2026-05-14 18:59:23 -04:00
commit 8a9f5c37ff
683 changed files with 180195 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
-- ~/.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