diff options
author | Joe <rbo@gmx.us> | 2024-01-18 15:37:02 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-01-18 15:37:02 +0100 |
commit | 25e424725312ffc616814a42940b9278c5363a3f (patch) | |
tree | 96e816c4867c64f6769dc91f3579964690984185 | |
parent | up (diff) | |
download | dotfiles-bsd-25e424725312ffc616814a42940b9278c5363a3f.tar.gz dotfiles-bsd-25e424725312ffc616814a42940b9278c5363a3f.tar.bz2 dotfiles-bsd-25e424725312ffc616814a42940b9278c5363a3f.tar.xz dotfiles-bsd-25e424725312ffc616814a42940b9278c5363a3f.tar.zst dotfiles-bsd-25e424725312ffc616814a42940b9278c5363a3f.zip |
up
-rwxr-xr-x | .local/bin/status/sb-net | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/status/sb-net b/.local/bin/status/sb-net index 9dd4a86..837fbf3 100755 --- a/.local/bin/status/sb-net +++ b/.local/bin/status/sb-net @@ -4,7 +4,7 @@ case $(hostname -s) in mother|po-rbo) ping="ping -c1 -w1 9.9.9.9" ;; mars) ping="ping -c1 -t1 9.9.9.9" ;; esac -if ifconfig | grep -E '^tun|^vpn' >/dev/null 2>&1; then +if ifconfig | grep -E '^tun|^vpn|^wg' >/dev/null 2>&1; then echo -n " " fi if ! $ping >/dev/null 2>&1; then |