dotfiles/.config/polybar/scripts/vpn-openvpn-status.sh
2024-01-29 08:31:23 -06:00

4 lines
125 B
Bash

#!/bin/sh
printf "VPN: " && (pgrep -a openvpn$ | head -n 1 | awk '{print $NF }' | cut -d '.' -f 1 && echo down) | head -n 1