bff71cd5e2
* Add support for a variant of JELOS suitable for hosting containers. * Fix desktop mode terminal bug.
14 lines
294 B
Bash
Executable file
14 lines
294 B
Bash
Executable file
#!/bin/bash
|
|
|
|
. /etc/profile
|
|
|
|
if [ "$(get_setting bluetooth.enabled)" == "1" ]
|
|
then
|
|
tocon "Starting bluetooth..."
|
|
nohup systemctl start bluetooth &
|
|
nohup systemctl start bluetooth-agent &
|
|
nohup systemctl start bluetoothsense &
|
|
rfkill unblock bluetooth
|
|
else
|
|
rfkill block bluetooth
|
|
fi
|