summaryrefslogtreecommitdiff
path: root/.config/polybar/mullvad_status.sh
diff options
context:
space:
mode:
authorRoger Gonzalez <roger@rogs.me>2024-05-12 20:05:57 -0300
committerRoger Gonzalez <roger@rogs.me>2024-05-12 20:05:57 -0300
commit2d69d91b8d4ff39694b309266b5a717a998f1411 (patch)
tree9f5beb41f2edcdd623a7f4192957e52abc303bc5 /.config/polybar/mullvad_status.sh
parent74330422a0e9ca0bb7592d041e42dcfa931bc417 (diff)
Added new dock and changed Mullvad for ProtonVPN
Diffstat (limited to '.config/polybar/mullvad_status.sh')
-rwxr-xr-x.config/polybar/mullvad_status.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/.config/polybar/mullvad_status.sh b/.config/polybar/mullvad_status.sh
deleted file mode 100755
index fbca326c..00000000
--- a/.config/polybar/mullvad_status.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-set -euo pipefail
-IFS=$'\n\t'
-
-MULLVAD_STATUS=$(mullvad status)
-
-if echo $MULLVAD_STATUS | grep -q 'Connected'; then
- echo "%{u#75d85a}VPN %{T5}✅%{T-}"
- elif echo $MULLVAD_STATUS | grep -q 'Connecting'; then
- echo "VPN ..."
- else
- echo "%{u#f90000}VPN %{T5}🚫%{T-}"
-fi