dotfiles/hammerspoon/init.lua
Anthony Cicchetti a3c857360b mawp
2020-08-10 09:43:57 -04:00

21 lines
No EOL
685 B
Lua

hs.loadSpoon("SpoonInstall")
spoon.SpoonInstall.use_syncinstall = true
spoon.SpoonInstall:andUse("WindowScreenLeftAndRight")
spoon.SpoonInstall:andUse("WindowHalfsAndThirds")
spoon.SpoonInstall:andUse("Commander")
spoon.WindowScreenLeftAndRight:bindHotkeys(spoon.WindowScreenLeftAndRight.defaultHotkeys)
spoon.WindowHalfsAndThirds:bindHotkeys(spoon.WindowHalfsAndThirds.defaultHotkeys)
hs.hotkey.bind({"cmd", "alt", "ctrl"}, "SPACE", function ()
spoon.Commander.show()
end)
hs.hotkey.bind({"ctrl"}, "t", function ()
hs.application.launchOrFocus("Alacritty")
end)
hs.hotkey.bind({"cmd", "alt"}, ",", function ()
hs.application.launchOrFocus("System Preferences")
end)