111 lines
2.1 KiB
Bash
111 lines
2.1 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
## Author : Aditya Shakya (adi1090x)
|
|
## Github : @adi1090x
|
|
#
|
|
## Applets : MPD (music)
|
|
|
|
# Import Current Theme
|
|
source "$HOME"/.config/rofi/applets/shared/theme.bash
|
|
theme="$type/$style"
|
|
|
|
# Theme Elements
|
|
status="`playerctl status`"
|
|
|
|
if [[ ( "$theme" == *'type-1'* ) || ( "$theme" == *'type-3'* ) || ( "$theme" == *'type-5'* ) ]]; then
|
|
list_col='1'
|
|
list_row='4'
|
|
elif [[ ( "$theme" == *'type-2'* ) || ( "$theme" == *'type-4'* ) ]]; then
|
|
list_col='4'
|
|
list_row='1'
|
|
fi
|
|
|
|
# Options
|
|
layout=`cat ${theme} | grep 'USE_ICON' | cut -d'=' -f2`
|
|
if [[ "$layout" == 'NO' ]]; then
|
|
if [[ ${status} == *"Playing"* ]]; then
|
|
option_1=" Pause"
|
|
else
|
|
option_1=" Play"
|
|
fi
|
|
option_2=" Stop"
|
|
option_3=" Previous"
|
|
option_4=" Next"
|
|
else
|
|
if [[ ${status} == *"Playing"* ]]; then
|
|
option_1=""
|
|
else
|
|
option_1=""
|
|
fi
|
|
option_2=""
|
|
option_3=""
|
|
option_4=""
|
|
fi
|
|
|
|
# Toggle Actions
|
|
active=''
|
|
urgent=''
|
|
# Repeat
|
|
if [[ ${status} == *"repeat: on"* ]]; then
|
|
active="-a 4"
|
|
elif [[ ${status} == *"repeat: off"* ]]; then
|
|
urgent="-u 4"
|
|
else
|
|
option_5=" Parsing Error"
|
|
fi
|
|
# Random
|
|
if [[ ${status} == *"random: on"* ]]; then
|
|
[ -n "$active" ] && active+=",5" || active="-a 5"
|
|
elif [[ ${status} == *"random: off"* ]]; then
|
|
[ -n "$urgent" ] && urgent+=",5" || urgent="-u 5"
|
|
else
|
|
option_6=" Parsing Error"
|
|
fi
|
|
|
|
# Rofi CMD
|
|
rofi_cmd() {
|
|
rofi -theme-str "listview {columns: $list_col; lines: $list_row;}" \
|
|
-theme-str 'textbox-prompt-colon {str: "";}' \
|
|
-dmenu \
|
|
-p "$prompt" \
|
|
-mesg "$mesg" \
|
|
${active} ${urgent} \
|
|
-markup-rows \
|
|
-theme ${theme}
|
|
}
|
|
|
|
# Pass variables to rofi dmenu
|
|
run_rofi() {
|
|
echo -e "$option_1\n$option_2\n$option_3\n$option_4\n" | rofi_cmd
|
|
}
|
|
|
|
# Execute Command
|
|
run_cmd() {
|
|
if [[ "$1" == '--opt1' ]]; then
|
|
playerctl play-pause
|
|
elif [[ "$1" == '--opt2' ]]; then
|
|
plaerctl stop
|
|
elif [[ "$1" == '--opt3' ]]; then
|
|
playerctl prev
|
|
elif [[ "$1" == '--opt4' ]]; then
|
|
playerctl next
|
|
fi
|
|
}
|
|
|
|
# Actions
|
|
chosen="$(run_rofi)"
|
|
case ${chosen} in
|
|
$option_1)
|
|
run_cmd --opt1
|
|
;;
|
|
$option_2)
|
|
run_cmd --opt2
|
|
;;
|
|
$option_3)
|
|
run_cmd --opt3
|
|
;;
|
|
$option_4)
|
|
run_cmd --opt4
|
|
;;
|
|
esac
|