dwmbar/modules/bluetooth
2019-10-21 19:47:15 +01:00

19 lines
278 B
Bash
Executable file

#!/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
}