2023-04-22 20:01:07 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Copyright (C) 2021-present Fewtarius (https://github.com/fewtarius)
|
|
|
|
|
|
|
|
. /etc/profile
|
|
|
|
|
|
|
|
if [ ! -e "/storage/.quirks" ]
|
|
|
|
then
|
|
|
|
echo 19000 > /sys/class/backlight/$(brightness device)/brightness
|
|
|
|
touch /storage/.quirks
|
|
|
|
fi
|
2023-06-02 20:58:46 +00:00
|
|
|
|
|
|
|
MYSLEEPMODE=$(get_setting system.suspendmode)
|
|
|
|
if [ -z "${MYSLEEPMODE}" ]
|
|
|
|
then
|
|
|
|
/usr/bin/setsuspendmode mem
|
|
|
|
fi
|