mirror of
git://slackware.nl/current.git
synced 2025-01-09 05:24:36 +01:00
16 lines
168 B
Text
16 lines
168 B
Text
|
#!/bin/sh
|
||
|
|
||
|
. "${PM_FUNCTIONS}"
|
||
|
|
||
|
case "$1" in
|
||
|
hibernate|suspend)
|
||
|
rfkill block bluetooth
|
||
|
;;
|
||
|
thaw|resume)
|
||
|
rfkill unblock bluetooth
|
||
|
;;
|
||
|
*)
|
||
|
;;
|
||
|
esac
|
||
|
|