diff options
author | Yaroslav <contact@yaroslavps.com> | 2020-05-03 23:54:41 +0300 |
---|---|---|
committer | Yaroslav <contact@yaroslavps.com> | 2020-05-03 23:54:41 +0300 |
commit | 49d23f11f49daccf49e9c6cc9e7eabd6f4b4bfe4 (patch) | |
tree | 05fcb5719f4d9dd63e3e0d6811a30be9548e5b8e /dotfiles/.local/bin/barvpnstatus | |
parent | ff88fbca675945015a0c59b18be65b74cdd7d989 (diff) | |
download | swayrice-49d23f11f49daccf49e9c6cc9e7eabd6f4b4bfe4.tar.gz swayrice-49d23f11f49daccf49e9c6cc9e7eabd6f4b4bfe4.zip |
goodbye openvpn, hello wireguard
Diffstat (limited to 'dotfiles/.local/bin/barvpnstatus')
-rwxr-xr-x | dotfiles/.local/bin/barvpnstatus | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/dotfiles/.local/bin/barvpnstatus b/dotfiles/.local/bin/barvpnstatus index 7850d94..cca0201 100755 --- a/dotfiles/.local/bin/barvpnstatus +++ b/dotfiles/.local/bin/barvpnstatus @@ -1,9 +1,15 @@ #!/bin/sh -if [ -f "$HOME/.cache/openvpnpid" ]; then - printf " vpn" - exit -fi +isup=$(ip a | grep wg0:) -printf "" +if [ -n "$isup" ]; then + printf " vpn\n" +else + printf "" +fi +# For some goddamned weird reason sed crashes with a +# "couldn't flush stdout: broken pipe" error when running from waybar itself +# if I don't call sed from its hard location, so I had to call it using +# /usr/bin/sed +nmcli monitor | grep -E --line-buffered 'wg0: connected|wg0: disconnected' | /usr/bin/sed --unbuffered 's/wg0: connected/ vpn/g;s/wg0: disconnected//g' |