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

sleep-script: Prevent bluetoothctl from timing out
This commit is contained in:
Maximilian Luz 2019-10-12 00:34:47 +02:00 committed by GitHub
commit 0984748ad5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;