mirror of
https://github.com/The-Repo-Club/DotFiles.git
synced 2025-02-24 13:19:52 -05:00
12 lines
198 B
Bash
12 lines
198 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# https://github.com/jaagr/polybar/wiki/User-contributed-modules
|
||
|
|
||
|
#The icon that would change color
|
||
|
if pgrep -x "picom" > /dev/null
|
||
|
then
|
||
|
echo "Loaded"
|
||
|
else
|
||
|
echo "UnLoaded"
|
||
|
fi
|