aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--init.lua10
1 files changed, 0 insertions, 10 deletions
diff --git a/init.lua b/init.lua
index c03f55a..b3baca8 100644
--- a/init.lua
+++ b/init.lua
@@ -27,16 +27,6 @@ hs.loadSpoon('WindowMode')
spoon.WindowMode:bindHotkeys({ mode = {{'ctrl', 'option'}, 'w'} })
--- Maximise window height
-hs.hotkey.bind({'ctrl', 'alt'}, 'z', function()
- local win = hs.window.frontmostWindow()
- local f = win:frame()
-
- f.h = hs.screen.mainScreen():frame().h
- win:setFrame(f)
-end)
-
-
-- Shortcut to invert screen colours
hs.hotkey.bind({}, 'f8', function()
hs.eventtap.keyStroke({'cmd', 'option', 'ctrl'}, '8')