10 lines
150 B
Bash
Executable file
10 lines
150 B
Bash
Executable file
#!/bin/env sh
|
|
|
|
addApplications bluez \
|
|
bluez-utils
|
|
|
|
setupBluetooth() {
|
|
sudo systemctl enable --now bluetooth.service
|
|
}
|
|
|
|
addActions setupBluetooth
|