Adding a conky

This commit is contained in:
Derek Taylor
2023-08-31 18:14:26 -05:00
parent cf12132648
commit ef6f204591
17 changed files with 1061 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#!/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