mirror of
https://github.com/cizordj/i3-themer.git
synced 2024-04-21 12:32:12 +00:00
14 lines
312 B
Bash
14 lines
312 B
Bash
#!/bin/bash
|
|
|
|
# NOTE: You need the "playerctl" pachage in order for this to work!!!
|
|
|
|
exec 2>/dev/null
|
|
|
|
if [ "$(playerctl status)" = "Playing" ]; then
|
|
title=`exec playerctl metadata xesam:title`
|
|
artist=`exec playerctl metadata xesam:artist`
|
|
echo "[$artist] $title"
|
|
else
|
|
echo "No song currently playing"
|
|
fi
|