fix(waybar): use correct nerd font for media

This commit is contained in:
Price Hiller 2023-07-17 14:23:39 -05:00
parent 4c7aaaddf7
commit 00070666b8
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -10,10 +10,10 @@ get-album-info () {
player_ctl_info="$(playerctl metadata --format '{{ artist }} | {{ title }} | {{ album }}')"
if [[ "${class}" == "playing" ]]; then
text=" ${player_ctl_info}"
text="󰎆 ${player_ctl_info}"
elif [[ "${class}" == "paused" ]]; then
text=" ${player_ctl_info}"
text="󰏦 ${player_ctl_info}"
fi
else
class="paused"