aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--init.lua13
1 files changed, 0 insertions, 13 deletions
diff --git a/init.lua b/init.lua
index d82012b..898af67 100644
--- a/init.lua
+++ b/init.lua
@@ -27,16 +27,3 @@ require('window_layout')
hs.loadSpoon('WindowMode')
spoon.WindowMode:bindHotkeys({ mode = {{'ctrl', 'option'}, 'w'} })
-
-
--- Shortcut to invert screen colours
-hs.hotkey.bind({}, 'f8', function()
- hs.eventtap.keyStroke({'cmd', 'option', 'ctrl'}, '8')
-
- -- Counteract a Catalina bug where sometimes inverting screen colours with
- -- an external monitor connected makes the internal monitor's brightness
- -- change to 100%.
- if hs.screen.primaryScreen():name() == 'G247HL' then
- cbb_brightness_restore()
- end
-end)