防止蓝牙耳机打开时 debian 10 从挂起状态唤醒

防止蓝牙耳机打开时 debian 10 从挂起状态唤醒

自从我升级到 Debian 10 (buster) 以来,当我打开蓝牙耳机时,计算机会从睡眠/挂起状态唤醒(我相信发送连接到计算机的请求)。我该如何防止这种情况发生?

答案1

通过systemd服务找到了解决方案:( /etc/systemd/system/bluetoothKillOnSuspend.service)

[Unit]
Description=Bluetooth TurnOff on suspend
Before=suspend.target

[Service]
ExecStart=/usr/sbin/rfkill block bluetooth

[Install]
WantedBy=suspend.target

通过以下方式启用它:systemctl enable bluetoothKillOnSuspend.service

该脚本在挂起时会阻止蓝牙。对我来说,它会在唤醒时自动解锁,因此无需创建新脚本来在挂起后解锁蓝牙。

相关内容