mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 05:47:41 +08:00
14 lines
143 B
Plaintext
14 lines
143 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# 90alsa: suspend/wakeup ALSA devices
|
||
|
|
||
|
case "$1" in
|
||
|
hibernate|suspend)
|
||
|
;;
|
||
|
thaw|resume)
|
||
|
aplay -d 1 /dev/zero
|
||
|
;;
|
||
|
*) exit $NA
|
||
|
;;
|
||
|
esac
|