play christmas song if ffplay is installed
This commit is contained in:
parent
bfea545af6
commit
9bc77527dc
2 changed files with 18 additions and 0 deletions
|
@ -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))
|
||||
{
|
||||
|
|
|
@ -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))
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue