From f107c705f310dc0d6e2a993246abeca6e0316536 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Tue, 24 Jun 2025 22:23:22 +0300 Subject: [PATCH] paperwm: change slurp/barf keybinds --- modules/darwin/paperwm.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/darwin/paperwm.nix b/modules/darwin/paperwm.nix index 808402e..f5d0e55 100644 --- a/modules/darwin/paperwm.nix +++ b/modules/darwin/paperwm.nix @@ -183,9 +183,9 @@ in { hs.hotkey.bind(super_shift, "k", PaperWM.actions.swap_up) hs.hotkey.bind(super_shift, "l", PaperWM.actions.swap_right) - -- SLURP & BARF WINDOW -- SUPER + SHIFT + I/O - hs.hotkey.bind(super_shift, "i", PaperWM.actions.slurp_in) - hs.hotkey.bind(super_shift, "o", PaperWM.actions.barf_out) + -- SLURP & BARF WINDOW -- SUPER + SHIFT + T/G + hs.hotkey.bind(super_shift, "t", PaperWM.actions.slurp_in) + hs.hotkey.bind(super_shift, "g", PaperWM.actions.barf_out) -- MISC CONTROL hs.hotkey.bind(super, "q", windowClose)