Files
omarchy/migrations/1751134568.sh
David Heinemeier Hansson a873a2cf96 Clean up migrations a bit
2025-07-09 19:13:37 -04:00

9 lines
336 B
Bash

# Turn on bluetooth service so blueberry works out the box
echo "Let's turn on Bluetooth service so the controls work"
if systemctl is-enabled --quiet bluetooth.service && systemctl is-active --quiet bluetooth.service; then
# Bluetooth is already enabled, nothing to change
:
else
sudo systemctl enable --now bluetooth.service
fi