From 59c9608c28fe9758a51a1ff48d24c712147d2482 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Sun, 23 Mar 2025 14:41:06 +0300 Subject: [PATCH] feat: super+f for floating and super+ctrl+f for full width --- modules/darwin/hammerspoon/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/darwin/hammerspoon/init.lua b/modules/darwin/hammerspoon/init.lua index b306e7e..12525f3 100644 --- a/modules/darwin/hammerspoon/init.lua +++ b/modules/darwin/hammerspoon/init.lua @@ -99,8 +99,8 @@ do -- HOTKEYS hs.hotkey.bind(super, "q", windowClose) hs.hotkey.bind(super, "c", PaperWM.actions.center_window) - hs.hotkey.bind(super, "f", PaperWM.actions.full_width) - hs.hotkey.bind(super_shift, "f", PaperWM.actions.toggle_floating) + hs.hotkey.bind(super_ctrl, "f", PaperWM.actions.full_width) + hs.hotkey.bind(super, "f", PaperWM.actions.toggle_floating) hs.hotkey.bind(super, "w", function() hs.application.launchOrFocus("Firefox") end) hs.hotkey.bind(super, "return", function() hs.application.launchOrFocus("Ghostty") end)