Fix display moving

This commit is contained in:
Shadowfacts 2016-07-16 16:55:16 -04:00
parent fb8eebda8c
commit b3e6880077
1 changed files with 5 additions and 5 deletions

View File

@ -146,17 +146,17 @@ hs.hotkey.bind({"cmd", "ctrl", "shift"}, "Right", function()
end)
-- 1 screen left
hs.hotkey.bind({"cmd", "alt", "ctrl"}, "Left", function()
hs.window.focusedWindow():moveOneScreenWest(false, true)
hs.window.focusedWindow():moveOneScreenWest(true, true)
end)
-- 1 screen right
hs.hotkey.bind({"cmd", "alt", "ctrl"}, "Right", function()
hs.window.focusedWindow():moveOneScreenEast(false, true)
hs.window.focusedWindow():moveOneScreenEast(true, true)
end)
-- 1 screen up
hs.hotkey.bind({"cmd", "alt", "ctrl"}, "Up", function()
hs.window.focusedWindow():moveOneScreenNorth(false, true)
hs.window.focusedWindow():moveOneScreenNorth(true, true)
end)
-- 1 screen down
hs.hotkey.bind({"cmd", "alt", "ctrl"}, "Down", function()
hs.window.focusedWindow():moveOneScreenSouth(false, true)
end)
hs.window.focusedWindow():moveOneScreenSouth(true, true)
end)