23 lines
503 B
SYSTEMD
23 lines
503 B
SYSTEMD
|
[Unit]
|
||
|
Description=Extend the battery life of laptop
|
||
|
|
||
|
[Service]
|
||
|
# added automatically, for details please see
|
||
|
# https://en.opensuse.org/openSUSE:Security_Features#Systemd_hardening_effort
|
||
|
ProtectSystem=full
|
||
|
ProtectHome=true
|
||
|
PrivateDevices=true
|
||
|
ProtectHostname=true
|
||
|
ProtectClock=true
|
||
|
ProtectKernelModules=true
|
||
|
ProtectKernelLogs=true
|
||
|
ProtectControlGroups=true
|
||
|
RestrictRealtime=true
|
||
|
# end of automatic additions
|
||
|
Type=oneshot
|
||
|
ExecStart=/usr/sbin/powertop --auto-tune
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|
||
|
|