diff options
author | Matt Singleton <matt@xcolour.net> | 2016-04-16 12:06:16 -0400 |
---|---|---|
committer | Matt Singleton <matt@xcolour.net> | 2016-04-16 12:06:16 -0400 |
commit | f97262188b674b170309a330adae6f5211373920 (patch) | |
tree | f0989bca40587207f21d7f49d830e6f77eea1406 /hammerspoon | |
parent | 1e15fb7e6565baed1a799ec2ad439aaad3e6f7fc (diff) |
switch from mjolnir to hammerspoon for mac window management
Diffstat (limited to 'hammerspoon')
-rw-r--r-- | hammerspoon/init.lua | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/hammerspoon/init.lua b/hammerspoon/init.lua new file mode 100644 index 0000000..c745976 --- /dev/null +++ b/hammerspoon/init.lua @@ -0,0 +1,38 @@ +local window = require "hs.window" +local hotkey = require "hs.hotkey" + +window.animationDuration = 0 + +hotkey.bind({"alt"}, "0", function() + local win = window.focusedWindow() + win:maximize() +end) + +hotkey.bind({"alt"}, "left", function() + local win = window.focusedWindow() + if win ~= nil then + win:moveToUnit({x=0, y=0, w=0.5, h=1}) + end +end) + +hotkey.bind({"alt"}, "right", function() + local win = window.focusedWindow() + if win ~= nil then + win:moveToUnit({x=0.5, y=0, w=0.5, h=1}) + end +end) + +hotkey.bind({"alt"}, "down", function() + local win = window.focusedWindow() + if win ~= nil then + win:moveToUnit({x=0.167, y=0, w=0.666, h=1}) + end +end) + +hotkey.bind({"alt"}, "r", function() + hs.reload() +end) + +hotkey.bind({"alt"}, "c", function() + hs.openConsole() +end) |