Switch greeter from tuigreet to regreet

- Replace greetd-tuigreet with greetd-regreet + cage in packages.txt
- Add greetd/config.toml and greetd/regreet.toml (Materia-dark theme)
- Update install.sh to deploy greetd configs to /etc/greetd/
- Fix powermenu.sh awk parsing (use $NF instead of $2 for icon glyphs)
This commit is contained in:
funman300
2026-04-22 17:15:17 -07:00
parent 50e274cc20
commit 0cd43b9e54
5 changed files with 26 additions and 2 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ CHOICE=$(printf " Logout\n Restart\n Sleep\n Shutdown" \
--hide-scroll \
--no-actions \
--insensitive \
| awk '{print $2}')
| awk '{print $NF}')
case "$CHOICE" in
Logout) niri msg action quit ;;