diff --git a/src/commands/commands.go b/src/commands/commands.go index 60067c5..600ef6a 100644 --- a/src/commands/commands.go +++ b/src/commands/commands.go @@ -784,7 +784,11 @@ func PrintState(state *spotify.PlayerState) error { } func PrintPlaying(current *spotify.CurrentlyPlaying) error { - fmt.Println(fmt.Sprintf("%s by %s", current.Item.Name, current.Item.Artists[0].Name)) + icon := "▶" + if !current.Playing { + icon = "⏸" + } + fmt.Println(fmt.Sprintf("%s %s - %s", icon, current.Item.Name, current.Item.Artists[0].Name)) return nil }