Add a way to disable the pony

This commit is contained in:
Mattia Basaglia 2015-08-04 17:33:57 +02:00
parent 3b12c83e16
commit cabffe4242

View file

@ -278,11 +278,16 @@ do
fi
done
ponydir=$(get_data_file "rendered/ansi/")
ponyfile="$ponydir/$PONY.colored.txt"
if [ -n "$ponydir" -a '(' -z "$PONY" -o "$PONY" = random ')' ]
if [ "$PONY" = nopony ]
then
ponyfile="$(find "$ponydir" -name '*.colored.txt' | shuf | head -n 1)"
ponyfile=/dev/null
else
ponydir=$(get_data_file "rendered/ansi/")
ponyfile="$ponydir/$PONY.colored.txt"
if [ -n "$ponydir" -a '(' \! -f "$ponyfile" -o "$PONY" = random ')' ]
then
ponyfile="$(find "$ponydir" -name '*.colored.txt' | shuf | head -n 1)"
fi
fi