dwmbar/modules/bluetooth

20 lines
278 B
Text
Raw Normal View History

2019-10-21 18:47:15 +00:00
#!/bin/bash
# Prints out the bluetooth status
BLUETOOTH_ON_ICON=''
BLUETOOTH_OFF_ICON=''
get_bluetooth()
{
status=$(systemctl is-active bluetooth.service)
if [ "$status" == "active" ]
then
echo ""
else
:
#echo ""
fi
}