Add bind to switch layouts
All checks were successful
Buill NixOS Configurations / Build-NixOS-Configurations (carbon) (push) Successful in 29s
Buill NixOS Configurations / Build-NixOS-Configurations (git) (push) Successful in 20s
Buill NixOS Configurations / Build-NixOS-Configurations (gospel) (push) Successful in 32s
Buill NixOS Configurations / Build-NixOS-Configurations (node) (push) Successful in 23s

This commit is contained in:
alejandro-angulo 2026-02-15 14:40:40 -08:00
parent 70e4a4d452
commit 68aa7a16f8

View file

@ -24,6 +24,14 @@ let
emoji_picker = "${pkgs.bemoji}/bin/bemoji -t"; emoji_picker = "${pkgs.bemoji}/bin/bemoji -t";
terminal = "${pkgs.kitty}/bin/kitty"; terminal = "${pkgs.kitty}/bin/kitty";
layout_toggle_script = pkgs.writeShellScriptBin "layout-toggle" ''
current_layout="$(${pkgs.hyprland}/bin/hyprctl getoption general:layout -j | ${pkgs.jq}/bin/jq -r .str)"
case "$current_layout" in
master) ${pkgs.hyprland}/bin/hyprctl -q keyword general:layout dwindle ;;
dwindle) ${pkgs.hyprland}/bin/hyprctl -q keyword general:layout master ;;
esac
'';
generate_grim_command = target: '' generate_grim_command = target: ''
exec mkdir -p ~/screenshots \ exec mkdir -p ~/screenshots \
&& ${pkgs.grim}/bin/grim -g "$(${pkgs.slurp}/bin/slurp)" \ && ${pkgs.grim}/bin/grim -g "$(${pkgs.slurp}/bin/slurp)" \
@ -147,6 +155,11 @@ in
preserve_split = true; preserve_split = true;
}; };
# Master layout
master = {
orientation = "center";
};
# Window rules # Window rules
windowrule = [ windowrule = [
"suppress_event maximize, match:class .*" "suppress_event maximize, match:class .*"
@ -208,6 +221,7 @@ in
"$mod SHIFT, o, movetoworkspace, 9" "$mod SHIFT, o, movetoworkspace, 9"
# Layout # Layout
"$mod, g, exec, ${layout_toggle_script}/bin/layout-toggle"
"$mod, v, togglesplit" "$mod, v, togglesplit"
"$mod, f, fullscreen" "$mod, f, fullscreen"
"$mod SHIFT, f, togglefloating" "$mod SHIFT, f, togglefloating"