distribution/packages/hardware/quirks/platforms/AMD64/030-suspend_mode

14 lines
269 B
Text
Raw Normal View History

#!/bin/sh
2023-04-25 20:20:32 +00:00
# SPDX-License-Identifier: Apache-2.0
# Copyright (C) 2022-present Fewtarius
2023-04-25 20:20:32 +00:00
. /etc/profile.d/001-functions
2023-04-25 20:20:32 +00:00
### Set sleep mode to mem sleep (S3)
MYSLEEPMODE=$(get_setting system.suspendmode)
if [ -z "${MYSLEEPMODE}" ]
then
/usr/bin/setsuspendmode mem
fi