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