[play_music.sh]: Add play_music.sh

This commit is contained in:
2024-12-18 18:50:15 +00:00
parent ed7bde8f7b
commit 77db4d39d8
2 changed files with 7 additions and 0 deletions

6
play_music.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
# Simple script to play music albums based off the supplied artist & album name
artist="$1"
album="$2"
setsid umpv "$HOME/media/music/$artist/$album/" &