summaryrefslogtreecommitdiffstats
path: root/hammerspoon/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'hammerspoon/init.lua')
-rw-r--r--hammerspoon/init.lua21
1 files changed, 0 insertions, 21 deletions
diff --git a/hammerspoon/init.lua b/hammerspoon/init.lua
index b231421..c68ca8d 100644
--- a/hammerspoon/init.lua
+++ b/hammerspoon/init.lua
@@ -22,23 +22,6 @@ doKeyStroke = function(modifiers, character)
end
end
-hs.hotkey.bind({"alt"}, "h", function()
- hs.window.focusedWindow():focusWindowWest(nil, false, true)
-end)
-hs.hotkey.bind({"alt"}, "j", function()
- hs.window.focusedWindow():focusWindowSouth(nil, false, true)
-end)
-hs.hotkey.bind({"alt"}, "k", function()
- hs.window.focusedWindow():focusWindowNorth(nil, false, true)
-end)
-hs.hotkey.bind({"alt"}, "l", function()
- hs.window.focusedWindow():focusWindowEast(nil, false, true)
-end)
-
-hs.hotkey.bind({"alt"}, "b", function()
- hs.execute("open /Applications/Google\\ Chrome.app --new --args --new-window about:home")
-end)
-
hs.hotkey.bind({"alt"}, "d", function()
hs.caffeinate.lockScreen()
end)
@@ -47,10 +30,6 @@ hs.hotkey.bind({"alt"}, "f", function()
hs.window.focusedWindow():toggleFullScreen()
end)
-hs.hotkey.bind({"alt"}, "o", function()
- hs.execute("open -n /Applications/Alacritty.app/")
-end)
-
hs.hotkey.bind({"alt"}, "q", function()
hs.window.focusedWindow():close()
end)