Files
.dotfiles/.config/polybar/picom_status.sh

7 lines
101 B
Bash
Executable File

#!/bin/bash
if pgrep -x "picom" > /dev/null; then
echo "Picom: ON"
else
echo "Picom: OFF"
fi