blob: 9ddb5b5443e218c3a7d0708a30b8776ab6f13773 (
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
30
31
32
33
34
35
36
37
38
39
40
41
|
#!/bin/bash
# Outputs if Express VPN is connected or not
vpnstatus="$(piactl get connectionstate)"
case "$vpnstatus" in
Disconnected) icon=" " ;;
Connecting) icon=" " ;;
Connected) icon=" " ;;
Interrupted) icon=" " ;;
Reconnecting) icon=" " ;;
DisconnectingToReconnect) icon=" ";;
Disconnecting) icon=" " ;;
esac
# 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) piactl connect && notify-send -a "VPN" "Connected" && kill -36 $(pidof dwmblocks);;
2) vpnmenu ;;
3) piactl disconnect && notify-send -a "VPN" "Disonnected" && kill -36 $(pidof dwmblocks);;
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
esac
|