mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 11:47:14 +08:00
16 lines
411 B
SYSTEMD
16 lines
411 B
SYSTEMD
|
[Unit]
|
||
|
Description=Laptop Power Saving Tools
|
||
|
After=acpid.service
|
||
|
Wants=acpid.service
|
||
|
|
||
|
[Service]
|
||
|
Type=oneshot
|
||
|
RemainAfterExit=yes
|
||
|
ExecStartPre=/usr/bin/install -d /var/run/laptop-mode-tools ; /usr/bin/touch /var/run/laptop-mode-tools/enabled
|
||
|
ExecStart=/usr/sbin/laptop_mode auto
|
||
|
ExecStop=/usr/sbin/laptop_mode stop
|
||
|
ExecStopPost=/bin/rm -f /var/run/laptop-mode-tools/enabled
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|