2023-08-25 17:44:30 +02:00
|
|
|
# Bluetooth
|
|
|
|
|
2023-08-16 22:09:10 +02:00
|
|
|
Bluetooth functionality may be obtained by enabling `bluetoothd`. Its packages may be installed by:
|
|
|
|
|
|
|
|
```
|
|
|
|
# xbps-install bluez bluez-alsa libspa-bluetooth
|
|
|
|
```
|
|
|
|
|
|
|
|
Then, `bluetoothd` may be enabled by symlinking it to `/var/service/`.
|
|
|
|
|
|
|
|
```
|
|
|
|
# ln -s /etc/sv/bluetoothd /var/service/
|
|
|
|
```
|
|
|
|
|
|
|
|
If it is the case that bluetooth is not constantly used. It may be generally disabled by:
|
|
|
|
|
|
|
|
```
|
|
|
|
# touch /var/service/bluetoothd/down
|
|
|
|
```
|
|
|
|
|
|
|
|
To be able to use bluetooth the user needs to be in the bluetooth group.
|
|
|
|
|
|
|
|
```
|
|
|
|
# usermod -aG bluetooth <user>
|
2023-08-16 23:13:16 +02:00
|
|
|
```
|