aboutsummaryrefslogtreecommitdiffstats
path: root/bin/mpc
diff options
context:
space:
mode:
Diffstat (limited to 'bin/mpc')
-rw-r--r--bin/mpc38
1 files changed, 0 insertions, 38 deletions
diff --git a/bin/mpc b/bin/mpc
deleted file mode 100644
index cc85fd4..0000000
--- a/bin/mpc
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/bash
-file=/tmp/mpdhost
-
-if [ -e $file ]
-then
- mpdhost=$(cat $file)
-else
- case $(hostname) in
- "dvzrv")
- mpdhost=dvzrv
- ;;
- *)
- mpdhost=homey
- ;;
- esac
-fi
-
-case $1 in
- "switch")
- case "$mpdhost" in
- "dvzrv")
- mpdhost=homey
- ;;
- *)
- mpdhost=dvzrv
- ;;
- esac
- echo $mpdhost > $file
- echo switched to $mpdhost
- shift
- ;;
- "host")
- echo $mpdhost
- exit 0
- ;;
-esac
-
-/usr/bin/mpc -h $mpdhost "$@"