chore(FIX): fixed nerdfont xmobar deprecated icons

This commit is contained in:
Afonso Franco 2023-05-19 12:22:02 +01:00
parent 200f16359e
commit 52c030277d
Signed by: afonso
SSH key fingerprint: SHA256:gkVPzsQQJzqi21ntQBV6pXTx4bYI53rFGI4XtvCpwd4
4 changed files with 22 additions and 23 deletions

View file

@ -2,14 +2,14 @@
regex="([0-9A-Z]*:)+"
DEVICES=$(bluetoothctl devices)
ICON=""
ICON="󰂲"
COLOR="#696B71"
for DEVICE in $DEVICES
do
if [[ $DEVICE =~ $regex ]]; then
STATUS=$(bluetoothctl info $DEVICE | grep "Connected" | awk '{print $2}')
if [ $STATUS = "yes" ]; then
ICON=""
ICON="󰂱"
COLOR="#DFDFDF"
fi
fi