aboutsummaryrefslogtreecommitdiffstats
path: root/mouse.lua
diff options
context:
space:
mode:
authorTeddy Wing2019-06-17 20:01:52 +0200
committerTeddy Wing2019-06-17 20:01:52 +0200
commitd3926970150f71904664a540493fe3a96eedb70d (patch)
treec9ff90b5b2239a1d7fcda43fd47c98258b7a98a8 /mouse.lua
parentb28d76115d7ef315821f5d9cce67e8275cdfa169 (diff)
downloaddothammerspoon-d3926970150f71904664a540493fe3a96eedb70d.tar.bz2
mouse: Remove Ctrl-Option-Shift-m mode hotkey
Changed this to 'padclear', and the way the code is written, we can't have two shortcuts to activate & deactivate the mode. Just keep one.
Diffstat (limited to 'mouse.lua')
-rw-r--r--mouse.lua5
1 files changed, 0 insertions, 5 deletions
diff --git a/mouse.lua b/mouse.lua
index 3feb5cb..5367ae6 100644
--- a/mouse.lua
+++ b/mouse.lua
@@ -101,11 +101,6 @@ function mouse.top_right(amount)
end
-mouse_mode = hs.hotkey.modal.new({'ctrl', 'option', 'shift'}, 'm', 'Mouse')
-mouse_mode:bind({'ctrl', 'option', 'shift'}, 'm', 'Mouse Off', function()
- mouse_mode:exit()
-end)
-
mouse_mode = hs.hotkey.modal.new({}, 'padclear', 'Mouse')
mouse_mode:bind({}, 'padclear', 'Mouse Off', function()
mouse_mode:exit()