mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-25 20:40:24 +10:00
15 lines
193 B
Bash
Executable File
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
|