mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 14:17:13 +08:00
24 lines
263 B
Bash
Executable File
24 lines
263 B
Bash
Executable File
#!/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 |