21 lines
No EOL
685 B
Lua
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) |