1
0
Fork 0

added check to custom polybar modules

This commit is contained in:
Massaki Archambault 2018-09-11 14:53:54 -04:00
parent fcdfb47b0d
commit 697d25ae0a
4 changed files with 26 additions and 19 deletions

View File

@ -1,14 +1,16 @@
#!/bin/bash
if rfkill list bluetooth | grep "yes" >/dev/null; then
if [[ "$1" == "toggle" ]]; then
rfkill unblock bluetooth
fi
echo "$ICO_BLU_OFF"
else
if [[ "$1" == "toggle" ]]; then
rfkill block bluetooth
fi
echo "$ICO_BLU_ON"
if which rfkill >/dev/null && [[ -f /dev/rfkill ]]; then
if rfkill list bluetooth | grep "yes" >/dev/null; then
if [[ "$1" == "toggle" ]]; then
rfkill unblock bluetooth
fi
echo "$ICO_BLU_OFF"
else
if [[ "$1" == "toggle" ]]; then
rfkill block bluetooth
fi
echo "$ICO_BLU_ON"
fi
fi

View File

@ -1,7 +1,10 @@
#!/bin/bash
if ! pgrep "openvpn" &>/dev/null || ! ip link | grep -q tun; then
echo "$ICO_VPN_OFF "
else
echo "$ICO_VPN_ON "
if which openvpn >/dev/null; then
if ! pgrep "openvpn" &>/dev/null || ! ip link | grep -q tun; then
echo "$ICO_VPN_OFF "
else
echo "$ICO_VPN_ON "
fi
fi

View File

@ -1,8 +1,10 @@
#!/bin/bash
if rfkill list wifi | grep "yes" >/dev/null; then
rfkill unblock wifi
else
rfkill block wifi
if which rfkill >/dev/null && [[ -f /dev/rfkill ]]; then
if rfkill list wifi | grep "yes" >/dev/null; then
rfkill unblock wifi
else
rfkill block wifi
fi
fi

View File

@ -9,7 +9,7 @@ export EDITOR=nvim
export PAGER=less
# motd
export MOTD_SERVICES="$MOTD_SERVICES docker.socket libvirtd"
export MOTD_SERVICES="$MOTD_SERVICES docker.socket"
# firefox
export MOZ_USE_XINPUT2=1