Added bluetooth icon

This commit is contained in:
Manuel Palenzuela 2019-10-21 19:47:15 +01:00
parent 1ae2767c7d
commit 21c6c1fcc8

19
modules/bluetooth Executable file
View file

@ -0,0 +1,19 @@
#!/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
}