This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
player_status=$(playerctl status 2> /dev/null) | |
if [[ $? -eq 0 ]]; then | |
metadata="$(playerctl metadata artist) - $(playerctl metadata title)" | |
fi | |
# Foreground color formatting tags are optional | |
if [[ $player_status = "Playing" ]]; then | |
echo "%{F#FFFFFF}$metadata%{F-}" |