Last active
October 31, 2022 00:48
-
-
Save rainyear/2ec3b464cda37573c240e1ded78c176b to your computer and use it in GitHub Desktop.
hammerspoon.init.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local hyper = {'shift', 'cmd'} | |
local hyper2 = {'ctrl', 'cmd'} | |
-- hyper + up maximize the current window | |
hs.hotkey.bind(hyper, 'up', function() | |
hs.grid.maximizeWindow() | |
end) | |
hs.hotkey.bind(hyper, "Left", function() | |
local win = hs.window.focusedWindow() | |
local f = win:frame() | |
local screen = win:screen() | |
local max = screen:frame() | |
f.x = max.x | |
f.y = max.y | |
f.w = max.w / 2 | |
f.h = max.h | |
win:setFrame(f) | |
end) | |
hs.hotkey.bind(hyper, "Right", function() | |
local win = hs.window.focusedWindow() | |
local f = win:frame() | |
local screen = win:screen() | |
local max = screen:frame() | |
f.x = max.x + (max.w / 2) | |
f.y = max.y | |
f.w = max.w / 2 | |
f.h = max.h | |
win:setFrame(f) | |
end) | |
moveto = function(win, n) | |
local screens = hs.screen.allScreens() | |
if n > #screens then | |
hs.alert.show("No enough screens " .. #screens) | |
else | |
local toWin = hs.screen.allScreens()[n]:name() | |
hs.alert.show("Move " .. win:application():name() .. " to " .. toWin) | |
hs.layout.apply({{nil, win:title(), toWin, hs.layout.maximized, nil, nil}}) | |
end | |
end | |
hs.hotkey.bind(hyper2, "1", function() | |
local win = hs.window.focusedWindow() | |
moveto(win, 1) | |
end) | |
hs.hotkey.bind(hyper2, "2", function() | |
local win = hs.window.focusedWindow() | |
moveto(win, 2) | |
end) | |
hs.hotkey.bind(hyper2, "3", function() | |
local win = hs.window.focusedWindow() | |
moveto(win, 3) | |
end) | |
hs.hotkey.bind({"cmd", "alt", "ctrl"}, "R", function() | |
hs.reload() | |
end) | |
hs.alert.show("Config loaded") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
请问,如果是接上显示器后,能在电脑屏幕和显示器之间切换吗,拖拉鼠标的方式感觉有点难受,求实现