blob: a5a6a315e8749878f5e08982e6709109ba7a4539 (
plain) (
blame)
1
2
3
4
5
|
if screen -list | grep -q background; then
echo "Already running in screen, attach with screen -x background"
else
screen -dmS background /bin/bash -c "mpv {{ background_music_dir }}/* --shuffle --loop-playlist=inf --volume={{ background_music_volume }}"
fi
|