aboutsummaryrefslogtreecommitdiff
path: root/modules/bluetooth
blob: e342d5f4895b5da972cf1b4cf56e738420efc812 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
}