cat << EOF | sudo tee /etc/systemd/system/powertop.service
[Unit]
Description=PowerTOP auto tune
[Service]
Type=idle
Environment="TERM=dumb"
ExecStart=/usr/sbin/powertop --auto-tune
[Install]
WantedBy=multi-user.target
EOF
Forked from abelardojarab/powertop_systemd_service.md
Last active
July 17, 2025 04:54
-
-
Save andrebrait/d90130e3551b7ca2fc84021eea11f71c to your computer and use it in GitHub Desktop.
Create powertop systemd service
cat > /etc/systemd/system/powertop.service << EOF
[Unit]
Description=PowerTOP auto tune
[Service]
Type=idle
Environment="TERM=dumb"
ExecStart=/usr/sbin/powertop --auto-tune
[Install]
WantedBy=multi-user.target
EOF
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment