1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-11 09:50:42 +01:00
Files
oh-my-zsh/plugins/mpd/mpd.plugin.zsh
Chloé "Matcha" Desoutter 896ddb462a Added mpd plugin
check for missing mpdscribble
one-time warning to plugin
alias m=mpc, + checks for mpc
fixed alias for mpd
formatted accordingly with Style guide.
2021-07-08 17:50:07 +02:00

36 lines
1001 B
Bash

let _mpdscribble_missing_warned
let _mpc_missing_warned
alias m=mpc
for _ in 1; do
pidof mpdscribble > /dev/null
test "$?" = 0 && break
_pth=$(which mpdscribble) > /dev/null
_exists_mpdscribble=$?
test ${_exists_mpdscribble} -eq 0 && let _mpdscribble_missing_warned=0
test ${_exists_mpdscribble} -ne 0 \
&& test 1 -le "${_mpdscribble_missing_warned}" \
&& break
if [ ${_exists_mpdscribble} -ne 0 ]; then
echo "mpdscribble missing"
let _mpdscribble_missing_warned+=1
export _mpdscribble_missing_warned
break
fi
_exists_mpc=$?
test ${_exists_mpc} -eq 0 && let _mpc_missing_warned=0
test ${_exists_mpc} -ne 0 && test 1 -le "${_mpc_missing_warned}" && break
if [ ${_exists_mpc} -ne 0 ]; then
echo "mpc missing"
let _mpc_missing_warned+=1
export _mpc_missing_warned
unalias m
break
fi
test -z "${_p}" && $_pth
unset _pmpd
unset _exists_mpdscribble
unset _pth
unset _mpdscribble_missing_warned
unset _mpc_missing_warned
done