* Turn Bluetooth off with an rfkill soft block BlueZ never persists an adapter's Powered property, so turning Bluetooth off in the panel lasted only until the next boot. Omarchy's answer was AutoEnable=false, which persists nothing either — it just means "never power the adapter on", so Bluetooth came up off every boot whatever the user had chosen. The soft block already does the job. systemd-rfkill saves every switch under /var/lib/systemd/rfkill and restores it early on the next boot; that is the entire purpose of the unit. Blocking also covers every controller at once, where bluetoothctl only ever addresses the default one. So the block becomes the state and BlueZ follows it: with AutoEnable back at its stock default, lifting the block is enough for bluetoothd to power the adapter up on its own. Powered still tracks the block, so the panel switch and icon read it exactly as before. Everything that turns Bluetooth on or off goes through omarchy-bluetooth-power, because bluetoothctl power on fails while a block is set. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * Carry installed machines over to the rfkill block Existing installs have AutoEnable=false, so their adapter is down at every boot and Powered is the only record of what the user actually wants. Read it before anything changes, hand it to the block, then put AutoEnable back to its default so bluetoothd can act on that block. Only the exact line Omarchy wrote is reverted, so a hand-edited opt-out survives. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * Ask the power helper for a direction, not a toggle The helper runs detached and the switch only moves once BlueZ catches up, so a second click inside that window re-read the pre-click state and undid the first. The panel already knows which way it wants to go, so let it say. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * Read every controller and bound the power-up wait The block hits every Bluetooth radio at once, but the state was read from a bare bluetoothctl show, which reports the default controller only. A powered dongle sitting behind a powered-down internal controller read as off and got blocked along with it. Enumerate the controllers and take any powered one as on, exposed as is-on so callers do not each reinvent the read. The wait counted probes rather than time, so a wedged D-Bus turned a two-second bound into roughly fifty across a full power-up. One deadline around the whole wait holds it near nine. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> * Change the radio through sudo in the migration /dev/rfkill is only writable unelevated from an active graphical seat, so an update run over SSH failed here with EACCES. Migrations run under bash -e, so that aborted before the config revert and the marker, and aborted again on every retry. The privilege guidance already calls for sudo on machine-wide work run from a visible terminal. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
53 lines
1.5 KiB
Bash
Executable File
53 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Control a Bluetooth device
|
|
# omarchy:group=bluetooth
|
|
# omarchy:args=[pair|connect|disconnect|forget] <address>
|
|
# omarchy:examples=omarchy bluetooth device connect 00:11:22:33:44:55
|
|
|
|
set -e
|
|
|
|
usage() {
|
|
echo "Usage: omarchy-bluetooth-device [pair|connect|disconnect|forget] <address>" >&2
|
|
exit 1
|
|
}
|
|
|
|
action=${1:-}
|
|
address=${2:-}
|
|
|
|
[[ $action == "pair" || $action == "connect" || $action == "disconnect" || $action == "forget" ]] || usage
|
|
[[ $address =~ ^([0-9A-Fa-f]{2}:){5}[0-9A-Fa-f]{2}$ ]] || usage
|
|
|
|
power_on() {
|
|
[[ $(timeout 2s bluetoothctl show 2>/dev/null) == *"Powered: yes"* ]] && return
|
|
# Not bluetoothctl directly: Bluetooth is turned off by an rfkill soft block,
|
|
# and BlueZ refuses to power an adapter up while one is set.
|
|
omarchy-bluetooth-power on || true
|
|
}
|
|
|
|
trust_device() {
|
|
bluetoothctl trust "$address" >/dev/null 2>&1 || true
|
|
}
|
|
|
|
case "$action" in
|
|
pair)
|
|
power_on
|
|
timeout 20s bluetoothctl pair "$address" >/dev/null 2>&1 || true
|
|
trust_device
|
|
timeout 20s bluetoothctl connect "$address" >/dev/null 2>&1 || true
|
|
;;
|
|
connect)
|
|
power_on
|
|
trust_device
|
|
timeout 20s bluetoothctl connect "$address" >/dev/null 2>&1 || true
|
|
;;
|
|
disconnect)
|
|
timeout 10s bluetoothctl disconnect "$address" >/dev/null 2>&1 || true
|
|
;;
|
|
forget)
|
|
power_on
|
|
timeout 10s bluetoothctl disconnect "$address" >/dev/null 2>&1 || true
|
|
timeout 10s bluetoothctl remove "$address" >/dev/null 2>&1 || true
|
|
;;
|
|
esac
|