9 lines
122 B
Text
9 lines
122 B
Text
|
#!/bin/bash
|
||
|
|
||
|
. /etc/profile
|
||
|
|
||
|
if [ "$(get_setting bluetooth.enabled)" == "1" ]
|
||
|
then
|
||
|
nohup systemctl start bluetooth &
|
||
|
fi
|