Kaynağa Gözat

Merge pull request #15 from StollD/bugfix/disabled-bluetooth

sleep-script: Prevent bluetoothctl from timing out
Maximilian Luz 5 yıl önce
ebeveyn
işleme
0984748ad5
1 değiştirilmiş dosya ile 4 ekleme ve 2 silme
  1. 4 2
      root/lib/systemd/system-sleep/sleep

+ 4 - 2
root/lib/systemd/system-sleep/sleep

@@ -3,7 +3,7 @@ case $1 in
   pre)    # unload the modules before going to sleep
 
     # Disable bluetooth if no device is connected
-    if ! bluetoothctl info; then
+    if ps cax | grep bluetoothd && ! bluetoothctl info; then
       bluetoothctl power off
     fi
 
@@ -32,7 +32,9 @@ case $1 in
     #modprobe intel_ipts
 
     # Restart bluetooth
-    bluetoothctl power on
+    if ps cax | grep bluetoothd; then
+      bluetoothctl power on
+    fi
 
     # handle wifi issues: complete cycle
     modprobe cfg80211;