Debian

藍牙耳機打開時防止debian 10從掛起中喚醒

  • September 22, 2019

自從我升級到 Debian 10(buster)後,當我打開藍牙耳機時,電腦從睡眠/掛起中喚醒(我相信發送連接到電腦的請求)。我如何防止這種情況發生?

通過 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

此腳本在掛起時阻止藍牙。對我來說,它在喚醒時會自動解鎖,因此在掛起後不必創建新腳本來解鎖藍牙。

引用自:https://unix.stackexchange.com/questions/543052