More tweaks to the animations

This commit is contained in:
David Heinemeier Hansson
2025-07-25 15:30:49 -04:00
parent c4a08c3c25
commit 37f4d4a411
2 changed files with 3 additions and 3 deletions

View File

@ -5,11 +5,11 @@ yay -S --noconfirm --needed gum python-terminaltexteffects
show_logo() {
clear
tte -i ~/.local/share/omarchy/logo.txt --frame-rate 120 ${1:-expand}
tte -i ~/.local/share/omarchy/logo.txt --frame-rate ${2:-120} ${1:-expand}
echo -e ""
}
show_subtext() {
echo "$1" | tte --frame-rate 640 wipe
echo "$1" | tte --frame-rate ${3:-640} ${2:-wipe}
echo -e ""
}

View File

@ -1,6 +1,6 @@
#!/bin/bash
show_logo
show_logo beams 240
show_subtext "Let's install Omarchy!"
export OMARCHY_USER_NAME=$(gum input --placeholder "Enter full name" --prompt "Name> ")