mirror of
https://github.com/LukeHagar/omarchy.git
synced 2025-12-06 04:20:23 +00:00
10 lines
242 B
Bash
10 lines
242 B
Bash
OMARCHY_DESCRIPTION="Enable Bluetooth Service"
|
|
|
|
omarchy_install() {
|
|
chrootable_systemctl_enable bluetooth.service
|
|
}
|
|
|
|
omarchy_verify() {
|
|
systemctl is-enabled bluetooth.service >/dev/null 2>&1 || add_error "Bluetooth service not enabled"
|
|
}
|