You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
744 B

mpd_test=$(pgrep -f /data/data/com.termux/files/usr/libexec/mpd)
CmdArgs=$(echo "$@")
#echo $mpd_test
mkdir -p ~/.mpd
mkdir -p ~/.mpd/playlists
touch ~/.mpd/state
touch ~/.mpd/log
touch ~/.mpd/pid
if [ "x$CmdArgs" = x ] ; then
if [ -z "$MULTIPLE_MPDS" ] ; then
if [ -n "$mpd_test" ] ; then
echo -n "restart music player daemon (y/n)? "
read answer
if echo "$answer" | grep -iq "^y" ;then
echo "restarting music player daemon"
pgrep -f /data/data/com.termux/files/usr/libexec/mpd | while read line; do kill "$line"; done
else
echo "doing nothing"
exit
fi
else
echo "starting mpd the music player daemon"
fi
sleep 0.5;
chmod +rw ~/.mpd/* 2>&1 > /dev/null
rm -rf ~/.mpd/pid 2>&1 > /dev/null
fi
fi