From e89f22ce84304d7b1aec18bb0c437588cc3db06a Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Sat, 18 Jun 2022 10:54:24 +0200 Subject: [PATCH] chore: comment out more shortcuts in favor of Raycast shortcuts --- hammerspoon/init.lua | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/hammerspoon/init.lua b/hammerspoon/init.lua index c42df6b..625727b 100644 --- a/hammerspoon/init.lua +++ b/hammerspoon/init.lua @@ -145,17 +145,17 @@ hotkey.bind(KEY_SAM, "left", function() yank(-100, 0) end) -- hotkey.bind(KEY_CAM, "7", function() push(0.6, 0, 0.4, 1) end) -- Move a window between monitors (preserve size) -hotkey.bind(KEY_CM, "1", function() window.focusedWindow():moveOneScreenNorth() end) -hotkey.bind(KEY_CM, "2", function() window.focusedWindow():moveOneScreenSouth() end) -hotkey.bind(KEY_CM, "3", function() window.focusedWindow():moveOneScreenWest() end) -hotkey.bind(KEY_CM, "up", function() window.focusedWindow():moveOneScreenNorth() end) -hotkey.bind(KEY_CM, "down", function() window.focusedWindow():moveOneScreenSouth() end) -hotkey.bind(KEY_CM, "right", function() window.focusedWindow():moveOneScreenEast() end) -hotkey.bind(KEY_CM, "left", function() window.focusedWindow():moveOneScreenWest() end) -hotkey.bind(KEY_CM, "k", function() window.focusedWindow():moveOneScreenNorth() end) -hotkey.bind(KEY_CM, "j", function() window.focusedWindow():moveOneScreenSouth() end) -hotkey.bind(KEY_CM, "l", function() window.focusedWindow():moveOneScreenEast() end) -hotkey.bind(KEY_CM, "h", function() window.focusedWindow():moveOneScreenWest() end) +-- hotkey.bind(KEY_CM, "1", function() window.focusedWindow():moveOneScreenNorth() end) +-- hotkey.bind(KEY_CM, "2", function() window.focusedWindow():moveOneScreenSouth() end) +-- hotkey.bind(KEY_CM, "3", function() window.focusedWindow():moveOneScreenWest() end) +-- hotkey.bind(KEY_CM, "down", function() window.focusedWindow():moveOneScreenSouth() end) +-- hotkey.bind(KEY_CM, "h", function() window.focusedWindow():moveOneScreenWest() end) +-- hotkey.bind(KEY_CM, "j", function() window.focusedWindow():moveOneScreenSouth() end) +-- hotkey.bind(KEY_CM, "k", function() window.focusedWindow():moveOneScreenNorth() end) +-- hotkey.bind(KEY_CM, "l", function() window.focusedWindow():moveOneScreenEast() end) +-- hotkey.bind(KEY_CM, "left", function() window.focusedWindow():moveOneScreenWest() end) +-- hotkey.bind(KEY_CM, "right", function() window.focusedWindow():moveOneScreenEast() end) +-- hotkey.bind(KEY_CM, "up", function() window.focusedWindow():moveOneScreenNorth() end) -- Move a window between monitors (change to fullscreen) (Moved to Raycast -- keep for later) -- hotkey.bind(KEY_SCM, "1", function() window.focusedWindow():moveOneScreenNorth(); push(0, 0, 1, 1) end)