added niri option

This commit is contained in:
2026-04-23 08:31:12 +02:00
parent 925417ad23
commit 2191db7a43
2 changed files with 295 additions and 0 deletions
+2
View File
@@ -179,11 +179,13 @@ while true; do
echo "Select a tiling window manager:"
echo " 1) CHADWM"
echo " 2) Hyprland"
echo " 3) Niri"
echo " x) None (default)"
read -rp "Enter choice [1/2/x] (default: x): " choice
case "${choice,,}" in
1) TWM="chadwm"; break ;;
2) TWM="hyprland"; break ;;
3) TWM="niri"; break ;;
x|"") TWM="none"; break ;;
*) echo "Invalid option. Please enter 1, 2, or x." ;;
esac