about summary refs log tree commit diff stats
path: root/pkgs/by-name/mp/mpp/mpp.sh
blob: 0d636ac5b3b34f3949b75ea23064e691249797a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env dash

# shellcheck source=/dev/null
SHELL_LIBRARY_VERSION="2.1.2" . %SHELL_LIBRARY_PATH

case "$1" in
"searchadd")
    shift 1
    mpc-searchadd "$@"
    ;;
"lyrics")
    shift 1
    mpc-lyrics "$@"
    ;;
"beetrm")
    shift 1
    mpc-beetrm "$@"
    ;;
*)
    mpc "$@"
    ;;
esac

# vim: ft=sh