blob: 2cabbbfd14d20c7d9b814ac14175d15911141670 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# /lib/systemd/system/
# /etc/systemd/system/
# /etc/systemd/system/multi-user.target.wants/
[Unit]
Description=Powertop tunings
[Service]
Type=oneshot
RemainAfterExit=no
ExecStart=/sbin/powertop --auto-tune
# "powertop --auto-tune" still needs a terminal for some reason. Possibly a bug?
Environment="TERM=xterm"
[Install]
WantedBy=multi-user.target
|