mirror of
https://github.com/edu4rdshl/linuxscripts.git
synced 2026-07-17 23:24:52 +00:00
20 lines
483 B
Desktop File
20 lines
483 B
Desktop File
# tlp - systemd startup/shutdown service
|
|
#
|
|
# Copyright (c) 2018 Thomas Koch <linrunner at gmx.net>
|
|
# This software is licensed under the GPL v2 or later.
|
|
|
|
[Unit]
|
|
Description=TLP system startup/shutdown
|
|
#Wants=bluetooth.service NetworkManager.service
|
|
After=multi-user.target
|
|
Before=shutdown.target
|
|
Documentation=http://linrunner.de/tlp
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
RemainAfterExit=yes
|
|
ExecStart=/usr/bin/tlp init start
|
|
ExecStop=/usr/bin/tlp init stop
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|