Add demo mode to cycle all themes

This commit is contained in:
2026-01-24 18:20:27 +00:00
parent 16a7d8dad9
commit ae66cbc70e
7 changed files with 69 additions and 2 deletions

View File

@@ -163,6 +163,8 @@ if [[ -t 0 ]]; then
echo " Preview: [date time user] @host - /path"
echo " 8) HawolexV2 - Winter neon gradient"
echo " Preview: [date time user] @host - /path"
echo " 9) Demo - Cycles all themes every prompt"
echo " Preview: (auto-rotate)"
read -r -p "Choose style [1]: " style_pick
case "${style_pick}" in
2) style_choice="neon" ;;
@@ -172,6 +174,7 @@ if [[ -t 0 ]]; then
6) style_choice="git" ;;
7) style_choice="hawolex" ;;
8) style_choice="hawolexv2" ;;
9) style_choice="demo" ;;
""|1) style_choice="aurora" ;;
*) echo "Invalid choice, using aurora."; style_choice="aurora" ;;
esac