14 lines
211 B
Plaintext
14 lines
211 B
Plaintext
|
#!/bin/sh -efu
|
||
|
|
||
|
sleepconf=/etc/systemd/sleep.conf
|
||
|
|
||
|
test ! -f "$sleepconf" && exit || :
|
||
|
cat >> "$sleepconf" <<EOF
|
||
|
AllowSuspend=no
|
||
|
AllowHibernation=no
|
||
|
AllowSuspendThenHibernate=no
|
||
|
AllowHybridSleep=no
|
||
|
EOF
|
||
|
|
||
|
exit $?
|