nixy loop prompt fix

This commit is contained in:
Hadi 2024-10-15 19:53:08 +02:00
parent 51c64ace97
commit f36410f05f

View File

@ -65,8 +65,9 @@ let
elif [[ $1 == "loop" ]];then elif [[ $1 == "loop" ]];then
while true; do while true; do
nixy nixy
read -p "Press enter to continue, e to exit" -n 1 REPLY echo "Press enter to continue, e to exit"
echo read -n 1 REPLY
clear
[[ $REPLY == "e" ]] && exit 0 [[ $REPLY == "e" ]] && exit 0
done done
else else