From f94bd441ebb427fe28249b6913212404b63098b1 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Fri, 12 Oct 2018 10:27:35 +0100 Subject: [PATCH] Make rarely if ever used keybindings more obscure I've recently found other use for cmd+ctrl+n, and since I never position my displays on top of each other, I've never had use for these keybindings. So lets make them a bit more obscure, but still usable should the need ever arise. --- hammerspoon/window_management.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hammerspoon/window_management.lua b/hammerspoon/window_management.lua index 6075739..d07747e 100644 --- a/hammerspoon/window_management.lua +++ b/hammerspoon/window_management.lua @@ -145,7 +145,7 @@ function wm:init () ) -- move to screen above - bind({'cmd', 'ctrl'}, 'P', + bind({'cmd', 'ctrl', 'alt'}, '.', function () local win = hs.window.focusedWindow() win:moveOneScreenNorth() @@ -154,7 +154,7 @@ function wm:init () ) -- move to screen bellow - bind({'cmd', 'ctrl'}, 'N', + bind({'cmd', 'ctrl', 'alt'}, ',', function () local win = hs.window.focusedWindow() win:moveOneScreenSouth()