play christmas song if ffplay is installed

This commit is contained in:
sergioro 2019-12-09 22:35:35 -07:00
parent bfea545af6
commit 9bc77527dc
2 changed files with 18 additions and 0 deletions

View file

@ -9,6 +9,15 @@ est=$((c-2))
color=0
tput setaf 2; tput bold
# Song
if command -v ffplay &>/dev/null ; then
{
song=https://web.archive.org/web/20191210052304/http://0x0.st/zUun.mp3
wget -qP /tmp "$song"
ffplay -autoexit -nodisp -loglevel quiet "/tmp/$(basename "$song")"
} &
fi
# Tree
for ((i=1; i<20; i+=2))
{

View file

@ -9,6 +9,15 @@ est=$((c-2))
color=0
tput setaf 2; tput bold
# Song
if command -v ffplay &>/dev/null ; then
{
song=https://web.archive.org/web/20191210052304/http://0x0.st/zUun.mp3
wget -qP /tmp "$song"
ffplay -autoexit -nodisp -loglevel quiet "/tmp/$(basename "$song")"
} &
fi
# Tree
for ((i=1; i<20; i+=2))
{