From 5ed110597cb0bdf6d71dd5b379de0e377807ea7a Mon Sep 17 00:00:00 2001 From: Nick Date: Fri, 14 Feb 2025 21:43:48 -0600 Subject: [PATCH] feat: changed some binds --- .../gui/desktop/hypr/land/config/bind.nix | 21 ++++++++----------- 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/modules/home/gui/desktop/hypr/land/config/bind.nix b/modules/home/gui/desktop/hypr/land/config/bind.nix index 41f9cf6..681c5ce 100755 --- a/modules/home/gui/desktop/hypr/land/config/bind.nix +++ b/modules/home/gui/desktop/hypr/land/config/bind.nix @@ -9,7 +9,7 @@ let superBinds = builtins.map (x: "SUPER, " + x) [ # Apps - "Space, exec, rm -r /home/$USER/.cache/tofi* ; tofi-drun" + # "Space, exec, rm -r /home/$USER/.cache/tofi* ; tofi-drun" "C, exec, zeditor" "A, exec, obsidian" "D, exec, ghostty -e zellij a dotfiles" @@ -58,24 +58,26 @@ let "F8, exec, playerctl next" "F7, exec, playerctl previous" "F6, exec, playerctl play-pause" + "Space, workspace, previous" ]; superShiftBinds = builtins.map (x: "SUPER SHIFT, " + x) [ # Super+shift binds "S, exec, flameshot gui" "Print, exec, grim -g \"$(slurp)\"" - "ScrollDown, workspace, previous" "left , movewindow, l" "down , movewindow, d" "up , movewindow, u" "right , movewindow, r" + "Backspace, layoutmsg, togglesplit" + "1, movetoworkspacesilent, 1" + "2, movetoworkspacesilent, 2" + "3, movetoworkspacesilent, 3" + "4, movetoworkspacesilent, 4" + "5, movetoworkspacesilent, 5" ]; superCtrlBinds = builtins.map (x: "SUPER CTRL, " + x) [ # Super+shift binds - "Space, workspace, previous" - "S, layoutmsg, togglesplit" - "equal, splitratio, 0.33" - "minus, splitratio, -0.33" ]; altBinds = builtins.map (x: "ALT, " + x) [ @@ -92,12 +94,7 @@ let ctrlShiftBinds = builtins.map (x: "CTRL SHIFT, " + x) [ # Ctrl+shift binds - "1, movetoworkspacesilent, 1" - "2, movetoworkspacesilent, 2" - "3, movetoworkspacesilent, 3" - "4, movetoworkspacesilent, 4" - "5, movetoworkspacesilent, 5" - "End, exec, shutdown now" + # "End, exec, shutdown now" ]; in superBinds