11 lines
164 B
Text
11 lines
164 B
Text
|
#!/bin/bash
|
||
|
. /etc/profile
|
||
|
|
||
|
cat <<EOF >/storage/.config/sleep.conf.d/sleep.conf
|
||
|
[Sleep]
|
||
|
AllowSuspend=yes
|
||
|
SuspendState=${1}
|
||
|
EOF
|
||
|
|
||
|
set_setting system.suspendmode ${1}
|