Add eww helper scripts

This commit is contained in:
2023-12-27 19:07:17 +01:00
parent b6531abf57
commit 093b7afe94
2 changed files with 51 additions and 0 deletions

41
tree/.local/bin/mullvad-status Executable file
View File

@ -0,0 +1,41 @@
#!/bin/sh
if ! which mullvad &> /dev/null
then
echo "ERROR: command 'mullvad' does not exist"
exit 1
fi
STATUS="$(mullvad status)"
CONNECTING="Connecting"
CONNECTED="Connected"
DISCONNECTED="Disconnected"
check_status() {
STRING="$1"
echo "$STATUS" | grep -iq "$STRING"
}
TOOLTIP="$STATUS"
ICON="󱙱"
ON_CLICK=""
if check_status "$DISCONNECTED"; then
CLASS="disconnected"
ON_CLICK="mullvad connect"
elif check_status "$CONNECTED"; then
CLASS=""
ICON="󱎚"
ON_CLICK="mullvad disconnect"
elif check_status "$CONNECTING"; then
CLASS="connecting"
ON_CLICK="mullvad disconnect"
else
CLASS="disconnected"
ON_CLICK="mullvad connect"
fi
echo '{"icon":"'$ICON'", "tooltip":"'$TOOLTIP'", "class":"'$CLASS'", "on_click": "'$ON_CLICK'"}'