aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xplaylist-get1
-rwxr-xr-xplaylist-ls16
2 files changed, 17 insertions, 0 deletions
diff --git a/playlist-get b/playlist-get
index d6b7d63..d43e296 100755
--- a/playlist-get
+++ b/playlist-get
@@ -33,6 +33,7 @@ elif [ "$BASENAME" == "playlist-copy" ]; then
exit 1
fi
+ DEST="--to $DEST"
command="copy"
else
command="get"
diff --git a/playlist-ls b/playlist-ls
new file mode 100755
index 0000000..1894ae6
--- /dev/null
+++ b/playlist-ls
@@ -0,0 +1,16 @@
+#!/bin/bash
+#
+# Get files for playlist using git-annex and mpd
+#
+
+# Parameters
+BASENAME="`basename $0`"
+PLAYLIST="$1"
+MEDIA="/var/cache/media/noise"
+PLAYLISTS="$MEDIA/playlists"
+
+if [ -z "$PLAYLIST" ]; then
+ ls -C $PLAYLISTS
+elif [ -f "$PLAYLISTS/$PLAYLIST.m3u" ]; then
+ cat "$PLAYLISTS/$PLAYLIST.m3u"
+fi