Omarchy quick resize & center
| -- Create shortcut for centering a window | |
| o.bind("SUPER + ALT + C", "Center window", hl.dsp.window.center()) | |
| -- Shortcut for changing window size and centering | |
| o.bind("SUPER + ALT + V", "Resize exact and center", function() | |
| hl.dispatch(hl.dsp.window.float({ action = "set" })) | |
| hl.dispatch(hl.dsp.window.resize({ x = 1280, y = 720 })) | |
| hl.dispatch(hl.dsp.window.center()) | |
| end) |
评论
?
参与讨论