Files
dtos-dotfiles/.config/conky/qtile/Mimosa/scripts/playerctl.sh
Derek Taylor ef6f204591 Adding a conky
2023-08-31 18:14:26 -05:00

15 lines
193 B
Bash
Executable File

#!/bin/bash
# Closebox73
# Simple script to get playerctl status
PCTL=$(playerctl status)
if [[ ${PCTL} == "" ]]; then
echo "No Music Played"
else
playerctl metadata xesam:artist
fi
exit