aboutsummaryrefslogtreecommitdiff
path: root/playlist-ls
diff options
context:
space:
mode:
Diffstat (limited to 'playlist-ls')
-rwxr-xr-xplaylist-ls16
1 files changed, 0 insertions, 16 deletions
diff --git a/playlist-ls b/playlist-ls
deleted file mode 100755
index 1894ae6..0000000
--- a/playlist-ls
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/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