summaryrefslogtreecommitdiff
path: root/.local/bin/dwmbar/dwmb-vpn
blob: e08e6d66eaa95035e1bf906b6ef32a1a01279267 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/bash
# Outputs if Express VPN is connected or not

vpnstatus=$(expressvpn status | head -n 1)

case "$vpnstatus" in
	*"Not"*) icon=""
		;;
	*"Connected"*) icon=""
		;;
	*"Connecting"*) icon=" "
		;;
	*) icon=""
esac

echo " $icon "


# \033]01;31\] # pink
# \033]00m\]   # white
# \033]01;36\] # bold green
# \033]02;36\] # green
# \033]01;34\] # blue
# \033]01;33\] # bold yellow
# s/onnected\sto\s//;
case $BLOCK_BUTTON in
	1) ~/.local/bin/vpnmenu ;;
	6) "$TERMINAL" -e "$EDITOR" "$0" ;;
esac