summaryrefslogtreecommitdiff
path: root/fish/.local/bin/mediactl.sh
diff options
context:
space:
mode:
Diffstat (limited to 'fish/.local/bin/mediactl.sh')
-rwxr-xr-xfish/.local/bin/mediactl.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/fish/.local/bin/mediactl.sh b/fish/.local/bin/mediactl.sh
deleted file mode 100755
index 40ef71a..0000000
--- a/fish/.local/bin/mediactl.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/bash
-
-if [[ "$1" == "status" ]]; then
- qmmp --status
-elif [[ "$1" == "play" ]]; then
- qmmp -p
-elif [[ "$1" == "pause" ]]; then
- qmmp -u
-elif [[ "$1" == "prev" ]]; then
- qmmp --previous
-elif [[ "$1" == "next" ]]; then
- qmmp --next
-elif [[ "$1" == "fwd" ]]; then
- qmmp --seek-fwd "$2"
-elif [[ "$1" == "bwd" ]]; then
- qmmp --seek-bwd "$2"
-else
- qmmp "$@"
-fi