You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#{playerctl_artist}: Display the song's artist information
#{playerctl_title}: Display the song's title information
#{playerctl_album}: Display the song's album information
#{playerctl_full}: Display the song info in the format [Artist] - [Title]
#{playerctl_short}: Display the song info in the format [Artist] - [Title] but trimmed
to a max number of characters (default: 30)
#{playerctl_status}: Display the player's status (default: Playing = ▶, Paused = ⏸, Stopped = ⏹)
Just add the desired option to your .tmux.conf like this:
set -g status-right "#{playerctl_status} #{playerctl_full}"
Settings
Available settings for playerctl_short (shown values are the defaults):
#: Number of characters to showset -g @short_length "30"#: Character(s) to append at the end of the trimmed song nameset -g @short_append_chars "..."
Available settings for playerctl_status:
#: Shown values are the defaults#: Character to show when the player is playingset -g @status_playing "▶"#: Character to show when the player is pausedset -g @status_paused "⏸"#: Character to show when the player is stoppedset -g @status_stopped "⏹"