482e11ab9d
This feature disabled suspend, sleep, hibernation mode.
14 lines
211 B
Bash
Executable File
14 lines
211 B
Bash
Executable File
#!/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 $?
|