Add cmus currently playing module

This commit is contained in:
RealStickman 2020-11-24 10:13:15 +01:00
parent ed776c9b0c
commit f50da4ab64
3 changed files with 59 additions and 1 deletions

View File

@ -84,7 +84,7 @@ font-5 = Iosevka:style=bold:size=16;3
modules-left = full sysmenu full i3 full left-top right-bot full xwindow full left-top modules-left = full sysmenu full i3 full left-top right-bot full xwindow full left-top
modules-center = modules-center =
modules-right = right-top full date battery full left-bot right-top modules-right = right-top full player-cmus full left-bot right-top full date battery full left-bot right-top
tray-detached = false tray-detached = false
tray-offset-x = 0 tray-offset-x = 0

View File

@ -96,6 +96,20 @@ click-left = ~/.config/polybar/scripts/powermenu
################################################################################ ################################################################################
[module/player-cmus]
type = custom/script
exec = ~/.config/polybar/scripts/player-cmus.sh
interval = 5
content-background = ${colors.modbackground}
format-background = ${colors.modbackground}
click-left = cmus-remote -u &
click-right = cmus-remote -n &
click-middle = cmus-remote -r &
################################################################################
[module/backlight] [module/backlight]
;https://github.com/jaagr/polybar/wiki/Module:-backlight ;https://github.com/jaagr/polybar/wiki/Module:-backlight

View File

@ -0,0 +1,44 @@
#!/bin/sh
# from https://github.com/polybar/polybar-scripts/tree/master/polybar-scripts/player-cmus
if info=$(cmus-remote -Q 2> /dev/null); then
status=$(echo "$info" | grep -v "set " | grep -v "tag " | grep "status " | cut -d ' ' -f 2)
if [ "$status" = "playing" ] || [ "$status" = "paused" ] || [ "$status" = "stopped" ]; then
title=$(echo "$info" | grep -v 'set ' | grep " title " | cut -d ' ' -f 3-)
artist=$(echo "$info" | grep -v 'set ' | grep " artist " | cut -d ' ' -f 3-)
position=$(echo "$info" | grep -v "set " | grep -v "tag " | grep "position " | cut -d ' ' -f 2)
duration=$(echo "$info" | grep -v "set " | grep -v "tag " | grep "duration " | cut -d ' ' -f 2)
if [ "$artist" ] || [ "$title" ]; then
if [ "$duration" -ge 0 ]; then
pos_minutes=$(printf "%02d" $((position / 60)))
pos_seconds=$(printf "%02d" $((position % 60)))
dur_minutes=$(printf "%02d" $((duration / 60)))
dur_seconds=$(printf "%02d" $((duration % 60)))
info_string="| $pos_minutes:$pos_seconds / $dur_minutes:$dur_seconds"
fi
info_string="$artist - $title $info_string"
if [ "$status" = "playing" ]; then
echo "#1 $info_string"
elif [ "$status" = "paused" ]; then
echo "#2 $info_string"
elif [ "$status" = "stopped" ]; then
echo "#3 $info_string"
else
echo ""
fi
else
echo ""
fi
else
echo ""
fi
else
echo ""
fi