chezmoi/dot_dotfiles/polybar/polybar-scripts/polybar-scripts/openvpn-isrunning/isrunning-openvpn.sh
2020-07-14 15:19:48 +02:00

8 lines
79 B
Bash

#!/bin/sh
if [ "$(pgrep openvpn)" ]; then
echo "#1"
else
echo "#2"
fi