voidrice/.local/bin/touchpad

22 lines
618 B
Text
Raw Normal View History

2024-02-16 11:41:16 +00:00
#!/bin/bash
2024-02-18 22:42:33 +00:00
# Check the status of the Bluetooth
bluetooth_status=$(bluetoothctl show | awk '/Powered/ {print $2}')
connected_devices=$(bluetoothctl info | grep -iE 'Connected: yes')
# Set the icon based on Bluetooth status
if [ "$bluetooth_status" == "yes" ] && [ ! -z "$connected_devices" ]; then
# Bluetooth is on and connected to a device
icon=" "
elif [ "$bluetooth_status" == "yes" ]; then
# Bluetooth is on but not connected to a device
icon=""
else
# Bluetooth is off
icon="❌"
fi
# Print the icon
echo "$icon"