diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2020-10-15 21:15:37 -0400 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2020-10-15 21:15:37 -0400 |
commit | fd6bb8cde6991e789266b4c107f87ebbc15848d7 (patch) | |
tree | 4150b5e7561fa5d675202c58cd89ee9cb3cc02f6 | |
parent | 591e7a7bc4ed0748fb774a636c8493b32d8cb932 (diff) |
use font-awesome icons in dwmb-vpn
-rwxr-xr-x | .local/bin/dwmbar/dwmb-vpn | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.local/bin/dwmbar/dwmb-vpn b/.local/bin/dwmbar/dwmb-vpn index 908aa76..3004c9d 100755 --- a/.local/bin/dwmbar/dwmb-vpn +++ b/.local/bin/dwmbar/dwmb-vpn @@ -4,11 +4,11 @@ vpnstatus=$(expressvpn status | head -n 1) case "$vpnstatus" in - *"Not"*) icon="" + *"Not"*) icon="" ;; - *"Connected"*) icon="" + *"Connected"*) icon="" ;; - *"Connecting"*) icon=" " + *"Connecting"*) icon=" " ;; *) icon="" esac |