1
0
Fork 0

Modifié pour avoir un son aléatoire. Et oui, c'est débile!

This commit is contained in:
trotFunky 2018-03-02 18:03:40 +01:00
parent 3012af9c19
commit 1a2e64daed

View file

@ -1,5 +1,16 @@
#! /bin/sh #! /bin/sh
cd /home/trotfunky/Documents/Sounds/Startup/
qty=$(ls | grep -c "" )
mplayer -nogui -softvol -ao alsa,pulse /home/trotfunky/Documents/Sounds/winxp.mp3 & if [ $qty -lt 10 ]; then
maxBit=1
diGrep=[[:digit:]]
elif [ $qty -lt 100]; then
maxBit=2
diGrep=[[:digit:]][[:digit:]]
fi
mplayer -nogui -softvol -ao alsa,pulse $(expr $(strings /dev/urandom | cut -b 1-$maxBit | grep $diGrep -m 1 ) % $qty )* &
cd -
exit 0 exit 0