mirror of
https://github.com/jimeh/dotfiles.git
synced 2026-02-19 13:46:41 +00:00
7 lines
159 B
Lua
7 lines
159 B
Lua
hs.hotkey.bind({"cmd", "alt", "ctrl"}, "H", function()
|
|
local win = hs.window.focusedWindow()
|
|
local f = win:frame()
|
|
|
|
f.x = f.x - 10
|
|
win:setFrame(f)
|
|
end) |