blob: 78508e61684a1190ad3b0ac2c66bc59c7627a778 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
if pidof emacs-28.2 >/dev/null 2>&1; then
echo -n " "
fi
if pgrep gpg-agent >/dev/null 2>&1; then
echo -n " "
else
echo -n " "
fi
if pidof gdbus >/dev/null 2>&1; then
echo -n "ﬗ "
fi
|