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

get_bluetooth