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.
This commit is contained in:
2018-10-12 10:27:35 +01:00
parent 5789f74779
commit f94bd441eb

View File

@@ -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()