1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-28 10:37:44 +00:00

feat: super+f for floating and super+ctrl+f for full width

This commit is contained in:
RGBCube 2025-03-23 14:41:06 +03:00
parent 9ee68319db
commit 59c9608c28
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M

View file

@ -99,8 +99,8 @@ do -- HOTKEYS
hs.hotkey.bind(super, "q", windowClose) hs.hotkey.bind(super, "q", windowClose)
hs.hotkey.bind(super, "c", PaperWM.actions.center_window) hs.hotkey.bind(super, "c", PaperWM.actions.center_window)
hs.hotkey.bind(super, "f", PaperWM.actions.full_width) hs.hotkey.bind(super_ctrl, "f", PaperWM.actions.full_width)
hs.hotkey.bind(super_shift, "f", PaperWM.actions.toggle_floating) hs.hotkey.bind(super, "f", PaperWM.actions.toggle_floating)
hs.hotkey.bind(super, "w", function() hs.application.launchOrFocus("Firefox") end) hs.hotkey.bind(super, "w", function() hs.application.launchOrFocus("Firefox") end)
hs.hotkey.bind(super, "return", function() hs.application.launchOrFocus("Ghostty") end) hs.hotkey.bind(super, "return", function() hs.application.launchOrFocus("Ghostty") end)