12 lines
238 B
Text
12 lines
238 B
Text
|
#!/bin/bash
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
# Copyright (C) 2021-present Fewtarius (https://github.com/fewtarius)
|
||
|
|
||
|
. /etc/profile
|
||
|
|
||
|
cat <<EOF >/storage/.config/sleep.conf.d/sleep.conf
|
||
|
[Sleep]
|
||
|
AllowSuspend=yes
|
||
|
SuspendState=freeze
|
||
|
EOF
|