aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.local/bin/barvpnstatus
diff options
context:
space:
mode:
Diffstat (limited to 'dotfiles/.local/bin/barvpnstatus')
-rwxr-xr-xdotfiles/.local/bin/barvpnstatus15
1 files changed, 0 insertions, 15 deletions
diff --git a/dotfiles/.local/bin/barvpnstatus b/dotfiles/.local/bin/barvpnstatus
deleted file mode 100755
index cca0201..0000000
--- a/dotfiles/.local/bin/barvpnstatus
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-isup=$(ip a | grep wg0:)
-
-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'