From 8c518b2bb45a65da8ded73d8f8b6480a5328f539 Mon Sep 17 00:00:00 2001 From: Alpha Chen Date: Sun, 20 Mar 2016 16:36:47 -0700 Subject: [PATCH] [hammerspoon] Use mash+left/right for throwing windows --- .hammerspoon/init.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.hammerspoon/init.lua b/.hammerspoon/init.lua index 6552066..b8069af 100644 --- a/.hammerspoon/init.lua +++ b/.hammerspoon/init.lua @@ -57,7 +57,9 @@ local throw_right = function() end hs.hotkey.bind(mash, "h", throw_left) +hs.hotkey.bind(mash, "left", throw_left) hs.hotkey.bind(mash, "l", throw_right) +hs.hotkey.bind(mash, "right", throw_right) hs.pathwatcher.new(os.getenv("HOME") .. "/.hammerspoon/", function() hs.reload()