Probably now fixed if preset.sh is used for thunar

This commit is contained in:
JaKooLit
2025-02-03 11:21:32 +09:00
parent 083c20878e
commit d215fbd786
3 changed files with 24 additions and 14 deletions

View File

@@ -38,12 +38,12 @@ show_progress() {
while ps -p $pid &> /dev/null; do
printf "\r${NOTE} Installing ${YELLOW}%s${RESET} %s" "$package_name" "${spin_chars[i]}"
i=$(( (i + 1) % 10 )) # Cycle through 10 animation frames
sleep 0.3 # Slower animation
i=$(( (i + 1) % 10 ))
sleep 0.3
done
printf "\r${NOTE} Installing ${YELLOW}%s${RESET} ... Done!%-20s\n" "$package_name" ""
tput cnorm # Show cursor again
tput cnorm
}