diff options
Diffstat (limited to 'roles/obs/templates/mpv-track')
-rwxr-xr-x | roles/obs/templates/mpv-track | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/roles/obs/templates/mpv-track b/roles/obs/templates/mpv-track index b6d6d67..77d73bd 100755 --- a/roles/obs/templates/mpv-track +++ b/roles/obs/templates/mpv-track @@ -2,6 +2,11 @@ # Run MPV with the output set to the right sink and with an IPC socket # {{ ansible_managed }} +# Kill the background music if playing +if screen -list | grep -q background; then + screen -S background -X quit +fi + # Update the overlay FILE=$1 if [[ ! -f $FILE ]]; then |