mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-29 13:00:32 +01:00
22 lines
345 B
Bash
22 lines
345 B
Bash
#!/bin/sh
|
|
# tlp - handle suspend/hibernate/resume tasks
|
|
#
|
|
# Copyright (c) 2018 Thomas Koch <linrunner at gmx.net>
|
|
# This software is licensed under the GPL v2 or later.
|
|
|
|
. "${PM_FUNCTIONS}"
|
|
|
|
case $1 in
|
|
hibernate|suspend)
|
|
tlp suspend
|
|
;;
|
|
|
|
thaw|resume)
|
|
tlp resume
|
|
;;
|
|
|
|
*) exit $NA
|
|
;;
|
|
esac
|
|
|
|
exit 0
|