12 lines
206 B
Bash
Executable File
12 lines
206 B
Bash
Executable File
#!/bin/bash
|
|
|
|
status=$(playerctl status 2>/dev/null)
|
|
|
|
if [ "$status" = "Playing" ]; then
|
|
artist=$(playerctl metadata artist)
|
|
title=$(playerctl metadata title)
|
|
echo "$artist - $title"
|
|
else
|
|
echo ""
|
|
fi
|