mirror of
https://github.com/agresdominik/dotfiles.git
synced 2026-04-21 18:05:50 +00:00
15 lines
215 B
Bash
Executable File
15 lines
215 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
STATUS="$(mullvad status 2>/dev/null)"
|
|
|
|
if echo "$STATUS" | grep -q "^Connected"; then
|
|
echo "UP"
|
|
echo "UP"
|
|
echo "#00b894"
|
|
else
|
|
echo "DOWN"
|
|
echo "DOWN"
|
|
echo "#ff0000"
|
|
fi
|
|
|