12 lines
154 B
Bash
Executable File
12 lines
154 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#The icon that would change color
|
|
icon=" "
|
|
|
|
if pgrep -x "compton" > /dev/null
|
|
then
|
|
echo "$icon"
|
|
else
|
|
echo "%{F#484852}$icon"
|
|
fi
|