feat: changed some binds

This commit is contained in:
Nick 2025-02-14 21:43:48 -06:00
parent bfe585abe1
commit 5ed110597c

View file

@ -9,7 +9,7 @@ let
superBinds = builtins.map (x: "SUPER, " + x) [ superBinds = builtins.map (x: "SUPER, " + x) [
# Apps # Apps
"Space, exec, rm -r /home/$USER/.cache/tofi* ; tofi-drun" # "Space, exec, rm -r /home/$USER/.cache/tofi* ; tofi-drun"
"C, exec, zeditor" "C, exec, zeditor"
"A, exec, obsidian" "A, exec, obsidian"
"D, exec, ghostty -e zellij a dotfiles" "D, exec, ghostty -e zellij a dotfiles"
@ -58,24 +58,26 @@ let
"F8, exec, playerctl next" "F8, exec, playerctl next"
"F7, exec, playerctl previous" "F7, exec, playerctl previous"
"F6, exec, playerctl play-pause" "F6, exec, playerctl play-pause"
"Space, workspace, previous"
]; ];
superShiftBinds = builtins.map (x: "SUPER SHIFT, " + x) [ superShiftBinds = builtins.map (x: "SUPER SHIFT, " + x) [
# Super+shift binds # Super+shift binds
"S, exec, flameshot gui" "S, exec, flameshot gui"
"Print, exec, grim -g \"$(slurp)\"" "Print, exec, grim -g \"$(slurp)\""
"ScrollDown, workspace, previous"
"left , movewindow, l" "left , movewindow, l"
"down , movewindow, d" "down , movewindow, d"
"up , movewindow, u" "up , movewindow, u"
"right , movewindow, r" "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) [ superCtrlBinds = builtins.map (x: "SUPER CTRL, " + x) [
# Super+shift binds # Super+shift binds
"Space, workspace, previous"
"S, layoutmsg, togglesplit"
"equal, splitratio, 0.33"
"minus, splitratio, -0.33"
]; ];
altBinds = builtins.map (x: "ALT, " + x) [ altBinds = builtins.map (x: "ALT, " + x) [
@ -92,12 +94,7 @@ let
ctrlShiftBinds = builtins.map (x: "CTRL SHIFT, " + x) [ ctrlShiftBinds = builtins.map (x: "CTRL SHIFT, " + x) [
# Ctrl+shift binds # Ctrl+shift binds
"1, movetoworkspacesilent, 1" # "End, exec, shutdown now"
"2, movetoworkspacesilent, 2"
"3, movetoworkspacesilent, 3"
"4, movetoworkspacesilent, 4"
"5, movetoworkspacesilent, 5"
"End, exec, shutdown now"
]; ];
in in
superBinds superBinds