2023-10-19 12:18:43 +02:00
|
|
|
#!/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
|
2023-12-21 03:32:56 +01:00
|
|
|
RATE=$(get_tmux_option "@kanagawa-refresh-rate" 5)
|
2023-10-19 12:18:43 +02:00
|
|
|
|
|
|
|
if ! command -v mpc &> /dev/null
|
|
|
|
then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2023-12-21 03:32:56 +01:00
|
|
|
FORMAT=$(get_tmux_option "@kanagawa-mpc-format" "%title% - %artist%")
|
2023-10-19 12:39:27 +02:00
|
|
|
mpc_playback=$(mpc current -f "${FORMAT}")
|
2023-10-19 12:18:43 +02:00
|
|
|
echo ${mpc_playback}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
# run the main driver
|
|
|
|
main
|