mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 07:47:14 +08:00
24 lines
263 B
Plaintext
24 lines
263 B
Plaintext
|
#!/bin/sh
|
||
|
. "${PM_FUNCTIONS}"
|
||
|
|
||
|
suspend_osssound()
|
||
|
{
|
||
|
/usr/lib/oss/scripts/killprocs.sh
|
||
|
/usr/sbin/soundoff
|
||
|
}
|
||
|
|
||
|
resume_osssound()
|
||
|
{
|
||
|
/usr/sbin/soundon
|
||
|
}
|
||
|
|
||
|
case "$1" in
|
||
|
hibernate|suspend)
|
||
|
suspend_osssound
|
||
|
;;
|
||
|
thaw|resume)
|
||
|
resume_osssound
|
||
|
;;
|
||
|
*) exit $NA
|
||
|
;;
|
||
|
esac
|