aboutsummaryrefslogtreecommitdiff
path: root/scripts/scripts/music.sh
diff options
context:
space:
mode:
authorAkshay <[email protected]>2020-11-20 05:52:22 +0000
committerAkshay <[email protected]>2020-11-20 05:52:22 +0000
commitcbb6464273a7d074e0103c3f6b98a99206d9ca3d (patch)
treeeede42271e7ef59096c335f4eb2f5d364488f3d7 /scripts/scripts/music.sh
parent54062528662142f27cb039992fe8e36e30da87db (diff)
remove outdated scripts
Diffstat (limited to 'scripts/scripts/music.sh')
-rwxr-xr-xscripts/scripts/music.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/scripts/scripts/music.sh b/scripts/scripts/music.sh
deleted file mode 100755
index 1de3bc0..0000000
--- a/scripts/scripts/music.sh
+++ /dev/null
@@ -1,16 +0,0 @@
1#!/usr/bin/env bash
2
3while getopts abt options
4do
5 case $options in
6 a)
7 cmus-remote -Q | grep tag\ artist\ | sed 's/tag artist //'
8 ;;
9 b)
10 cmus-remote -Q | grep tag\ album\ | sed 's/tag album //'
11 ;;
12 t)
13 cmus-remote -Q | grep tag\ title\ | sed 's/tag title //'
14 ;;
15 esac
16done