mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 09:37:14 +08:00
e46c7bdb0d
- other rebuilds might be needed
14 lines
143 B
Bash
Executable File
14 lines
143 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# 90alsa: suspend/wakeup ALSA devices
|
|
|
|
case "$1" in
|
|
hibernate|suspend)
|
|
;;
|
|
thaw|resume)
|
|
aplay -d 1 /dev/zero
|
|
;;
|
|
*) exit $NA
|
|
;;
|
|
esac
|