Files
omarchy/install/config/hardware/bluetooth.sh
2025-09-28 00:41:37 -04:00

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"
}