about summary refs log tree commit diff stats
path: root/pkgs/sources/scripts/source/wrappers/mpc.sh
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/sources/scripts/source/wrappers/mpc.sh')
-rwxr-xr-xpkgs/sources/scripts/source/wrappers/mpc.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/sources/scripts/source/wrappers/mpc.sh b/pkgs/sources/scripts/source/wrappers/mpc.sh
new file mode 100755
index 00000000..5aae5cdb
--- /dev/null
+++ b/pkgs/sources/scripts/source/wrappers/mpc.sh
@@ -0,0 +1,20 @@
+#!/usr/bin/env dash
+
+# shellcheck source=/dev/null
+SHELL_LIBRARY_VERSION="2.1.2" . %SHELL_LIBRARY_PATH
+
+case "$1" in
+"rm")
+    shift 1
+    mpc-rm "$@"
+    ;;
+"fav")
+    shift 1
+    mpc-fav "$@"
+    ;;
+*)
+    mpc "$@"
+    ;;
+esac
+
+# vim: ft=sh