#!/bin/bash player_status=$(playerctl status) player_name=$(playerctl metadata --format "{{ playerName }}") artist=$(playerctl metadata --format "{{ artist }}") title=$(playerctl metadata --format "{{ title }}") duration=$(playerctl metadata --format "{{ duration(position) }} / {{ duration(mpris:length) }}") firefox_status=$(playerctl --player=firefox status) spotify_status=$(playerctl --player=spotify status) if [ "$player_name" == "spotify" ]; then echo " $artist - $title - [$duration]" elif [ "$player_name" == "firefox" ]; then if [ "$artist" == "" ]; then echo " $title" else echo " $artist - $title" fi else if [ "$player_status" == "Playing" ]; then echo " $artist - $title" else echo "" fi fi