Spectacle Window Manager Keybindings For Hammerspoon
Lunette is an easily configurable and extendible Hammerspoon package that implements all of the Spectacle keybindings.
Lunette comes with a set of default keybindings. See installation for more on altering and disabling default keybindings.
CommandName | (Chord) Activator |
---|---|
center |
(⌥ ⌘) C |
fullScreen |
(⌥ ⌘) F |
leftHalf |
(⌥ ⌘) ← |
rightHalf |
(⌥ ⌘) → |
topHalf |
(⌥ ⌘) ↑ |
bottomHalf |
(⌥ ⌘) ↓ |
topLeft |
(⌃ ⌘) ← |
bottomLeft |
(⌃ ⌘ ⇧) ← |
topRight |
(⌃ ⌘) → |
bottomRight |
(⌃ ⌘ ⇧) → |
nextDisplay |
(⌃ ⌥ ⌘) → |
prevDisplay |
(⌃ ⌥ ⌘) ← |
nextThird |
(⌃ ⌥) → |
prevThird |
(⌃ ⌥) ← |
enlarge |
(⌃ ⌥ ⇧) → |
shrink |
(⌃ ⌥ ⇧) ← |
undo |
(⌥ ⌘) Z |
redo |
(⌥ ⌘ ⇧) Z |
-
Download and Install Hammerspoon
-
Download and unzip
Lunette.spoon.zip
to~/.hammerspoon/Spoons/
or clone this repository and symlinkLunette.spoon
to~/.hammerspoon/Spoons
-
Make sure you've enabled Hammerspoon with MacOS via System Preferences > Security & Privacy
-
Load Lunette in
~/.hammerspoon/init.lua
and bind the Lunette hotkeys:-- ~/.hammerspoon/init.lua hs.spoons.use("Lunette", { hotkeys = "default" })
OPTIONAL:
Override default hotkey definitions by passing a custom mapping table to
bindHotkeys()
-- ~/.hammerspoon/init.lua hs.loadSpoon("Lunette") customBindings = { leftHalf = { {{"Q", "W"}, "E"}, {{"cmd", "alt"}, "left"}, }, rightHalf = { {{"A", "S"}, "D"}, }, undo = false, redo = false } spoon.Lunette:bindHotkeys(customBindings)
Feel free to submit an issue/feature request/pull request.
Bugfix:
- fix installation error introduced in v0.3 (@jasperzs)
New features:
- exposing the window resizer API outside of Lunette (@jokajak)
- adding SpoonInstaller/Make config (@jokajak)
Minor bugfixes and improvements:
- use integer division instead of
math.floor
(@shayneholmes) - fix issue with stuck bottom corner calculations (@shayneholmes)
- permit multiple mappings per keybinding (@davidosomething)
- add gitignore
- add release checklist
Initial Release