mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-10 19:23:03 +03:00
9 lines
233 B
Bash
Executable file
9 lines
233 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# [[file:../../Desktop.org::*openvpn][openvpn:1]]
|
|
vpn=$(pgrep -a openvpn$ | head -n 1 | awk '{print $NF }' | cut -d '.' -f 1)
|
|
if [ -n "$vpn" ]; then
|
|
echo " "
|
|
else
|
|
echo " "
|
|
fi
|
|
# openvpn:1 ends here
|