diff options
author | Squibid <me@zacharyscheiman.com> | 2024-08-04 02:12:04 -0400 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2024-08-04 02:12:04 -0400 |
commit | 84f3886d289dccefd965d05b4e17f245d3a309b9 (patch) | |
tree | d19f79bc423a9ab76a31f5ea25f7bd98e893cd66 /mpdnotify/conf | |
parent | 8a8291bd82935290b69187b92d04842eb0ce1533 (diff) | |
download | runit-services-84f3886d289dccefd965d05b4e17f245d3a309b9.tar.gz runit-services-84f3886d289dccefd965d05b4e17f245d3a309b9.tar.bz2 runit-services-84f3886d289dccefd965d05b4e17f245d3a309b9.zip |
improve mpdnotifys portability
Diffstat (limited to '')
-rw-r--r-- | mpdnotify/conf | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mpdnotify/conf b/mpdnotify/conf index f5dffdb..7517940 100644 --- a/mpdnotify/conf +++ b/mpdnotify/conf @@ -1,5 +1,6 @@ #!/bin/sh -ID=18 +export ID=18 -coverart=0 # extract coverart on song change -coverartfile=/tmp/coverart.png # path to put extracted coverart +export musicdir="$HOME/media/music" # path to mpds root music dir +export coverart=1 # extract coverart on song change +export coverartfile=/tmp/coverart.png # path to put extracted coverart |