added check to custom polybar modules
This commit is contained in:
parent
fcdfb47b0d
commit
697d25ae0a
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue