mirror of
https://github.com/Ponce/slackbuilds
synced 2024-12-01 01:00:03 +01:00
5a41962c79
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
17 lines
272 B
Bash
17 lines
272 B
Bash
#!/bin/sh
|
|
|
|
. "${PM_FUNCTIONS}"
|
|
. .@INSTALL_PATH@displaylink-sleep.sh
|
|
|
|
command_exists suspend_dlm || exit $NA
|
|
command_exists resume_dlm || exit $NA
|
|
|
|
case $1 in
|
|
hibernate|suspend)
|
|
suspend_dlm
|
|
;;
|
|
thaw|resume)
|
|
resume_dlm
|
|
;;
|
|
esac
|
|
exit 0
|