feat: Added mpc plugin
This commit is contained in:
parent
77bad73881
commit
a486050c22
2 changed files with 30 additions and 1 deletions
|
@ -213,6 +213,10 @@ main()
|
||||||
IFS=' ' read -r -a colors <<<$(get_tmux_option "@dracula-attached-clients-colors" "cyan dark_gray")
|
IFS=' ' read -r -a colors <<<$(get_tmux_option "@dracula-attached-clients-colors" "cyan dark_gray")
|
||||||
script="#($current_dir/attached_clients.sh)"
|
script="#($current_dir/attached_clients.sh)"
|
||||||
|
|
||||||
|
elif [ $plugin = "mpc" ]; then
|
||||||
|
IFS=' ' read -r -a colors <<<$(get_tmux_option "@dracula-spotify-tui-colors" "green dark_gray")
|
||||||
|
script="#($current_dir/mpc.sh)"
|
||||||
|
|
||||||
elif [ $plugin = "spotify-tui" ]; then
|
elif [ $plugin = "spotify-tui" ]; then
|
||||||
IFS=' ' read -r -a colors <<<$(get_tmux_option "@dracula-spotify-tui-colors" "green dark_gray")
|
IFS=' ' read -r -a colors <<<$(get_tmux_option "@dracula-spotify-tui-colors" "green dark_gray")
|
||||||
script="#($current_dir/spotify-tui.sh)"
|
script="#($current_dir/spotify-tui.sh)"
|
||||||
|
|
25
scripts/mpc.sh
Executable file
25
scripts/mpc.sh
Executable file
|
@ -0,0 +1,25 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
# setting the locale, some users have issues with different locales, this forces the correct one
|
||||||
|
export LC_ALL=en_US.UTF-8
|
||||||
|
|
||||||
|
current_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
|
source $current_dir/utils.sh
|
||||||
|
|
||||||
|
main()
|
||||||
|
{
|
||||||
|
# storing the refresh rate in the variable RATE, default is 5
|
||||||
|
RATE=$(get_tmux_option "@dracula-refresh-rate" 5)
|
||||||
|
|
||||||
|
if ! command -v mpc &> /dev/null
|
||||||
|
then
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# FORMAT=$(get_tmux_option "@dracula-spotify-tui-format" "%f %s %t - %a")
|
||||||
|
mpc_playback=$(mpc current)
|
||||||
|
echo ${mpc_playback}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
# run the main driver
|
||||||
|
main
|
Loading…
Reference in a new issue