A window management playground, using Hammerspoon.
(Very much in progress.)
git clone https://github.com/mybuddymichael/helm.git ~/.hammerspoon/Spoons/helm
Add this to your configuration at ~/.hammerspoon/init.lua:
helm = hs.loadSpoon("helm")
helm:bindHotkeys({
focusLeft = { { "alt" }, "h" },
focusRight = { { "alt" }, "l" },
moveWindowLeft = { { "alt", "shift" }, "h" },
moveWindowRight = { { "alt", "shift" }, "l" },
makeFullScreen = { { "alt", "shift" }, "return" },
})
helm:start()MIT License