tlp.conf 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586
  1. # ------------------------------------------------------------------------------
  2. # /etc/tlp.conf - TLP user configuration (version 1.6.1)
  3. # See full explanation: https://linrunner.de/tlp/settings
  4. #
  5. # Copyright (c) 2023 Thomas Koch <linrunner at gmx.net> and others.
  6. # SPDX-License-Identifier: GPL-2.0-or-later
  7. #
  8. # Settings are read in the following order:
  9. #
  10. # 1. Intrinsic defaults
  11. # 2. /etc/tlp.d/*.conf - Drop-in customization snippets
  12. # 3. /etc/tlp.conf - User configuration (this file)
  13. #
  14. # Notes:
  15. # - In case of identical parameters, the last occurence has precedence
  16. # - This also means, parameters enabled here will override anything else
  17. # - However you may append values to a parameter already defined as intrinsic
  18. # default or in a previously read file: use PARAMETER+="add values"
  19. # - IMPORTANT: all parameters here are disabled; remove the leading '#' if you
  20. # like to enable a feature without default or have a value different from the
  21. # default
  22. # - Default *: intrinsic default that is effective when the parameter is missing
  23. # or disabled by a leading '#'; use PARAM="" to disable an intrinsic default
  24. # - Default <none>: do nothing or use kernel/hardware defaults
  25. # - IMPORTANT: parameters must always be specified pairwise i.e. for
  26. # both AC and BAT. Omitting one of the two makes the set value effective for
  27. # both power sources, since a change only occurs when different values are
  28. # defined.
  29. # ------------------------------------------------------------------------------
  30. # tlp - Parameters for power saving
  31. # Set to 0 to disable, 1 to enable TLP.
  32. # Default: 1
  33. #TLP_ENABLE=1
  34. # Control how warnings about invalid settings are issued:
  35. # 0=disabled,
  36. # 1=background tasks (boot, resume, change of power source) report to syslog,
  37. # 2=shell commands report to the terminal (stderr),
  38. # 3=combination of 1 and 2
  39. # Default: 3
  40. #TLP_WARN_LEVEL=3
  41. # Operation mode when no power supply can be detected: AC, BAT.
  42. # Concerns some desktop and embedded hardware only.
  43. # Default: <none>
  44. #TLP_DEFAULT_MODE=AC
  45. # Operation mode select: 0=depend on power source, 1=always use TLP_DEFAULT_MODE
  46. # Note: use in conjunction with TLP_DEFAULT_MODE=BAT for BAT settings on AC.
  47. # Default: 0
  48. #TLP_PERSISTENT_DEFAULT=0
  49. # Power supply classes to ignore when determining operation mode: AC, USB, BAT.
  50. # Separate multiple classes with spaces.
  51. # Note: try on laptops where operation mode AC/BAT is incorrectly detected.
  52. # Default: <none>
  53. #TLP_PS_IGNORE="BAT"
  54. # Seconds laptop mode has to wait after the disk goes idle before doing a sync.
  55. # Non-zero value enables, zero disables laptop mode.
  56. # Default: 0 (AC), 2 (BAT)
  57. #DISK_IDLE_SECS_ON_AC=0
  58. #DISK_IDLE_SECS_ON_BAT=2
  59. # Dirty page values (timeouts in secs).
  60. # Default: 15 (AC), 60 (BAT)
  61. #MAX_LOST_WORK_SECS_ON_AC=15
  62. #MAX_LOST_WORK_SECS_ON_BAT=60
  63. # Select a CPU scaling driver operation mode.
  64. # Intel CPU with intel_pstate driver:
  65. # active, passive.
  66. # AMD Zen 2 or newer CPU with amd-pstate_driver as of kernel 6.3/6.4(*):
  67. # active, passive, guided(*).
  68. # Default: <none>
  69. #CPU_DRIVER_OPMODE_ON_AC=active
  70. #CPU_DRIVER_OPMODE_ON_BAT=active
  71. # Select a CPU frequency scaling governor.
  72. # Intel CPU with intel_pstate driver or
  73. # AMD CPU with amd-pstate driver in active mode ('amd-pstate-epp'):
  74. # performance, powersave(*).
  75. # Intel CPU with intel_pstate driver in passive mode ('intel_cpufreq') or
  76. # AMD CPU with amd-pstate driver in passive or guided mode ('amd-pstate') or
  77. # Intel, AMD and other CPU brands with acpi-cpufreq driver:
  78. # conservative, ondemand(*), userspace, powersave, performance, schedutil(*).
  79. # Use tlp-stat -p to show the active driver and available governors.
  80. # Important:
  81. # Governors marked (*) above are power efficient for *almost all* workloads
  82. # and therefore kernel and most distributions have chosen them as defaults.
  83. # You should have done your research about advantages/disadvantages *before*
  84. # changing the governor.
  85. # Default: <none>
  86. CPU_SCALING_GOVERNOR_ON_AC=performance
  87. CPU_SCALING_GOVERNOR_ON_BAT=performance
  88. # Set the min/max frequency available for the scaling governor.
  89. # Possible values depend on your CPU. For available frequencies see
  90. # the output of tlp-stat -p.
  91. # Notes:
  92. # - Min/max frequencies must always be specified for both AC *and* BAT
  93. # - Not recommended for use with the intel_pstate driver, use
  94. # CPU_MIN/MAX_PERF_ON_AC/BAT below instead
  95. # Default: <none>
  96. #CPU_SCALING_MIN_FREQ_ON_AC=0
  97. #CPU_SCALING_MAX_FREQ_ON_AC=0
  98. #CPU_SCALING_MIN_FREQ_ON_BAT=0
  99. #CPU_SCALING_MAX_FREQ_ON_BAT=0
  100. # Set CPU energy/performance policies EPP and EPB:
  101. # performance, balance_performance, default, balance_power, power.
  102. # Values are given in order of increasing power saving.
  103. # Requires:
  104. # * Intel CPU
  105. # EPP: Intel Core i 6th gen. or newer CPU with intel_pstate driver
  106. # EPB: Intel Core i 2nd gen. or newer CPU with intel_pstate driver
  107. # as of kernel 5.2; alternatively module msr and
  108. # x86_energy_perf_policy from linux-tools
  109. # EPP and EPB are mutually exclusive: when EPP is available, Intel CPUs
  110. # will not honor EPB. Only the matching feature will be applied by TLP.
  111. # * AMD Zen 2 or newer CPU
  112. # EPP: amd-pstate driver in active mode ('amd-pstate-epp') as of kernel 6.3
  113. # Default: balance_performance (AC), balance_power (BAT)
  114. #CPU_ENERGY_PERF_POLICY_ON_AC=balance_performance
  115. #CPU_ENERGY_PERF_POLICY_ON_BAT=balance_power
  116. # Set Intel CPU P-state performance: 0..100 (%).
  117. # Limit the max/min P-state to control the power dissipation of the CPU.
  118. # Values are stated as a percentage of the available performance.
  119. # Requires Intel Core i 2nd gen. or newer CPU with intel_pstate driver.
  120. # Default: <none>
  121. #CPU_MIN_PERF_ON_AC=0
  122. #CPU_MAX_PERF_ON_AC=100
  123. #CPU_MIN_PERF_ON_BAT=0
  124. #CPU_MAX_PERF_ON_BAT=30
  125. # Set the CPU "turbo boost" (Intel) or "turbo core" (AMD) feature:
  126. # 0=disable, 1=allow.
  127. # Allows to raise the maximum frequency/P-state of some cores if the
  128. # CPU chip is not fully utilized and below it's intended thermal budget.
  129. # Note: a value of 1 does *not* activate boosting, it just allows it.
  130. # Default: <none>
  131. #CPU_BOOST_ON_AC=1
  132. #CPU_BOOST_ON_BAT=0
  133. # Set Intel/AMD CPU dynamic boost feature:
  134. # 0=disable, 1=enable.
  135. # Improve performance by increasing minimum P-state limit dynamically
  136. # whenever a task previously waiting on I/O is selected to run.
  137. # Requires:
  138. # * Intel Core i 6th gen. or newer CPU: intel_pstate driver in active mode
  139. # * AMD Zen 2 or newer CPU: amd-pstate driver in active mode ('amd-pstate-epp')
  140. # provided by a yet unreleased kernel 6.x
  141. # Default: <none>
  142. #CPU_HWP_DYN_BOOST_ON_AC=1
  143. #CPU_HWP_DYN_BOOST_ON_BAT=0
  144. # Kernel NMI Watchdog:
  145. # 0=disable (default, saves power), 1=enable (for kernel debugging only).
  146. # Default: 0
  147. #NMI_WATCHDOG=0
  148. # Select platform profile:
  149. # performance, balanced, low-power.
  150. # Controls system operating characteristics around power/performance levels,
  151. # thermal and fan speed. Values are given in order of increasing power saving.
  152. # Note: check the output of tlp-stat -p to determine availability on your
  153. # hardware and additional profiles such as: balanced-performance, quiet, cool.
  154. # Default: <none>
  155. #PLATFORM_PROFILE_ON_AC=performance
  156. #PLATFORM_PROFILE_ON_BAT=low-power
  157. # System suspend mode:
  158. # s2idle: Idle standby - a pure software, light-weight, system sleep state,
  159. # deep: Suspend to RAM - the whole system is put into a low-power state,
  160. # except for memory, usually resulting in higher savings than s2idle.
  161. # CAUTION: changing suspend mode may lead to system instability and even
  162. # data loss. As for the availability of different modes on your system,
  163. # check the output of tlp-stat -s. If unsure, stick with the system default
  164. # by not enabling this.
  165. # Default: <none>
  166. #MEM_SLEEP_ON_AC=s2idle
  167. #MEM_SLEEP_ON_BAT=deep
  168. # Define disk devices on which the following DISK/AHCI_RUNTIME parameters act.
  169. # Separate multiple devices with spaces.
  170. # Devices can be specified by disk ID also (lookup with: tlp diskid).
  171. # Default: "nvme0n1 sda"
  172. #DISK_DEVICES="nvme0n1 sda"
  173. # Disk advanced power management level: 1..254, 255 (max saving, min, off).
  174. # Levels 1..127 may spin down the disk; 255 allowable on most drives.
  175. # Separate values for multiple disks with spaces. Use the special value 'keep'
  176. # to keep the hardware default for the particular disk.
  177. # Default: 254 (AC), 128 (BAT)
  178. #DISK_APM_LEVEL_ON_AC="254 254"
  179. #DISK_APM_LEVEL_ON_BAT="128 128"
  180. # Exclude disk classes from advanced power management (APM):
  181. # sata, ata, usb, ieee1394.
  182. # Separate multiple classes with spaces.
  183. # CAUTION: USB and IEEE1394 disks may fail to mount or data may get corrupted
  184. # with APM enabled. Be careful and make sure you have backups of all affected
  185. # media before removing 'usb' or 'ieee1394' from the denylist!
  186. # Default: "usb ieee1394"
  187. #DISK_APM_CLASS_DENYLIST="usb ieee1394"
  188. # Hard disk spin down timeout:
  189. # 0: spin down disabled
  190. # 1..240: timeouts from 5s to 20min (in units of 5s)
  191. # 241..251: timeouts from 30min to 5.5 hours (in units of 30min)
  192. # See 'man hdparm' for details.
  193. # Separate values for multiple disks with spaces. Use the special value 'keep'
  194. # to keep the hardware default for the particular disk.
  195. # Default: <none>
  196. #DISK_SPINDOWN_TIMEOUT_ON_AC="0 0"
  197. #DISK_SPINDOWN_TIMEOUT_ON_BAT="0 0"
  198. # Select I/O scheduler for the disk devices.
  199. # Multi queue (blk-mq) schedulers:
  200. # mq-deadline(*), none, kyber, bfq
  201. # Single queue schedulers:
  202. # deadline(*), cfq, bfq, noop
  203. # (*) recommended.
  204. # Separate values for multiple disks with spaces. Use the special value 'keep'
  205. # to keep the kernel default scheduler for the particular disk.
  206. # Notes:
  207. # - Multi queue (blk-mq) may need kernel boot option 'scsi_mod.use_blk_mq=1'
  208. # and 'modprobe mq-deadline-iosched|kyber|bfq' on kernels < 5.0
  209. # - Single queue schedulers are legacy now and were removed together with
  210. # the old block layer in kernel 5.0
  211. # Default: keep
  212. #DISK_IOSCHED="mq-deadline mq-deadline"
  213. # AHCI link power management (ALPM) for SATA disks:
  214. # min_power, med_power_with_dipm(*), medium_power, max_performance.
  215. # (*) recommended.
  216. # Multiple values separated with spaces are tried sequentially until success.
  217. # Default: med_power_with_dipm (AC & BAT)
  218. SATA_LINKPWR_ON_AC="med_power_with_dipm max_performance"
  219. SATA_LINKPWR_ON_BAT="med_power_with_dipm min_power"
  220. # Exclude SATA links from AHCI link power management (ALPM).
  221. # SATA links are specified by their host. Refer to the output of
  222. # tlp-stat -d to determine the host; the format is "hostX".
  223. # Separate multiple hosts with spaces.
  224. # Default: <none>
  225. #SATA_LINKPWR_DENYLIST="host1"
  226. # Runtime Power Management for NVMe, SATA, ATA and USB disks
  227. # as well as SATA ports:
  228. # on=disable, auto=enable.
  229. # Note: SATA controllers are PCIe bus devices and handled by RUNTIME_PM further
  230. # down.
  231. # Default: on (AC), auto (BAT)
  232. #AHCI_RUNTIME_PM_ON_AC=on
  233. #AHCI_RUNTIME_PM_ON_BAT=auto
  234. # Seconds of inactivity before disk is suspended.
  235. # Note: effective only when AHCI_RUNTIME_PM_ON_AC/BAT is activated.
  236. # Default: 15
  237. #AHCI_RUNTIME_PM_TIMEOUT=15
  238. # Power off optical drive in UltraBay/MediaBay: 0=disable, 1=enable.
  239. # Drive can be powered on again by releasing (and reinserting) the eject lever
  240. # or by pressing the disc eject button on newer models.
  241. # Note: an UltraBay/MediaBay hard disk is never powered off.
  242. # Default: 0
  243. #BAY_POWEROFF_ON_AC=0
  244. #BAY_POWEROFF_ON_BAT=0
  245. # Optical drive device to power off
  246. # Default: sr0
  247. #BAY_DEVICE="sr0"
  248. # Set the min/max/turbo frequency for the Intel GPU.
  249. # Possible values depend on your hardware. For available frequencies see
  250. # the output of tlp-stat -g.
  251. # Default: <none>
  252. #INTEL_GPU_MIN_FREQ_ON_AC=0
  253. #INTEL_GPU_MIN_FREQ_ON_BAT=0
  254. #INTEL_GPU_MAX_FREQ_ON_AC=0
  255. #INTEL_GPU_MAX_FREQ_ON_BAT=0
  256. #INTEL_GPU_BOOST_FREQ_ON_AC=0
  257. #INTEL_GPU_BOOST_FREQ_ON_BAT=0
  258. # AMD GPU power management.
  259. # Performance level (DPM): auto, low, high; auto is recommended.
  260. # Note: requires amdgpu or radeon driver.
  261. # Default: auto
  262. #RADEON_DPM_PERF_LEVEL_ON_AC=auto
  263. #RADEON_DPM_PERF_LEVEL_ON_BAT=auto
  264. # Dynamic power management method (DPM): balanced, battery, performance.
  265. # Note: radeon driver only.
  266. # Default: <none>
  267. #RADEON_DPM_STATE_ON_AC=performance
  268. #RADEON_DPM_STATE_ON_BAT=battery
  269. # Graphics clock speed (profile method): low, mid, high, auto, default;
  270. # auto = mid on BAT, high on AC.
  271. # Note: radeon driver on legacy ATI hardware only (where DPM is not available).
  272. # Default: default
  273. #RADEON_POWER_PROFILE_ON_AC=default
  274. #RADEON_POWER_PROFILE_ON_BAT=default
  275. # Wi-Fi power saving mode: on=enable, off=disable.
  276. # Default: off (AC), on (BAT)
  277. #WIFI_PWR_ON_AC=off
  278. #WIFI_PWR_ON_BAT=on
  279. # Disable Wake-on-LAN: Y/N.
  280. # Default: Y
  281. #WOL_DISABLE=Y
  282. # Enable audio power saving for Intel HDA, AC97 devices (timeout in secs).
  283. # A value of 0 disables, >= 1 enables power saving.
  284. # Note: 1 is recommended for Linux desktop environments with PulseAudio,
  285. # systems without PulseAudio may require 10.
  286. # Default: 1
  287. SOUND_POWER_SAVE_ON_AC=0
  288. SOUND_POWER_SAVE_ON_BAT=10
  289. # Disable controller too (HDA only): Y/N.
  290. # Note: effective only when SOUND_POWER_SAVE_ON_AC/BAT is activated.
  291. # Default: Y
  292. #SOUND_POWER_SAVE_CONTROLLER=Y
  293. # PCIe Active State Power Management (ASPM):
  294. # default(*), performance, powersave, powersupersave.
  295. # (*) keeps BIOS ASPM defaults (recommended)
  296. # Default: <none>
  297. #PCIE_ASPM_ON_AC=default
  298. #PCIE_ASPM_ON_BAT=default
  299. # Runtime Power Management for PCIe bus devices: on=disable, auto=enable.
  300. # Default: on (AC), auto (BAT)
  301. #RUNTIME_PM_ON_AC=on
  302. #RUNTIME_PM_ON_BAT=auto
  303. # Exclude listed PCIe device adresses from Runtime PM.
  304. # Note: this preserves the kernel driver default, to force a certain state
  305. # use RUNTIME_PM_ENABLE/DISABLE instead.
  306. # Separate multiple addresses with spaces.
  307. # Use lspci to get the adresses (1st column).
  308. # Default: <none>
  309. #RUNTIME_PM_DENYLIST="11:22.3 44:55.6"
  310. # Exclude PCIe devices assigned to the listed drivers from Runtime PM.
  311. # Note: this preserves the kernel driver default, to force a certain state
  312. # use RUNTIME_PM_ENABLE/DISABLE instead.
  313. # Separate multiple drivers with spaces.
  314. # Default: "mei_me nouveau radeon", use "" to disable completely.
  315. #RUNTIME_PM_DRIVER_DENYLIST="mei_me nouveau radeon"
  316. # Permanently enable/disable Runtime PM for listed PCIe device addresses
  317. # (independent of the power source). This has priority over all preceding
  318. # Runtime PM settings. Separate multiple addresses with spaces.
  319. # Use lspci to get the adresses (1st column).
  320. # Default: <none>
  321. #RUNTIME_PM_ENABLE="11:22.3"
  322. #RUNTIME_PM_DISABLE="44:55.6"
  323. # Set to 0 to disable, 1 to enable USB autosuspend feature.
  324. # Default: 1
  325. #USB_AUTOSUSPEND=1
  326. # Exclude listed devices from USB autosuspend (separate with spaces).
  327. # Use lsusb to get the ids.
  328. # Note: input devices (usbhid) and libsane-supported scanners are excluded
  329. # automatically.
  330. # Default: <none>
  331. #USB_DENYLIST="1111:2222 3333:4444"
  332. # Exclude audio devices from USB autosuspend:
  333. # 0=do not exclude, 1=exclude.
  334. # Default: 1
  335. #USB_EXCLUDE_AUDIO=1
  336. # Exclude bluetooth devices from USB autosuspend:
  337. # 0=do not exclude, 1=exclude.
  338. # Default: 0
  339. #USB_EXCLUDE_BTUSB=0
  340. # Exclude phone devices from USB autosuspend:
  341. # 0=do not exclude, 1=exclude (enable charging).
  342. # Default: 0
  343. #USB_EXCLUDE_PHONE=0
  344. # Exclude printers from USB autosuspend:
  345. # 0=do not exclude, 1=exclude.
  346. # Default: 1
  347. #USB_EXCLUDE_PRINTER=1
  348. # Exclude WWAN devices from USB autosuspend:
  349. # 0=do not exclude, 1=exclude.
  350. # Default: 0
  351. #USB_EXCLUDE_WWAN=0
  352. # Allow USB autosuspend for listed devices even if already denylisted or
  353. # excluded above (separate with spaces). Use lsusb to get the ids.
  354. # Default: 0
  355. #USB_ALLOWLIST="1111:2222 3333:4444"
  356. # Set to 1 to disable autosuspend before shutdown, 0 to do nothing
  357. # Note: use as a workaround for USB devices that cause shutdown problems.
  358. # Default: 0
  359. #USB_AUTOSUSPEND_DISABLE_ON_SHUTDOWN=0
  360. # Restore radio device state (Bluetooth, WiFi, WWAN) from previous shutdown
  361. # on system startup: 0=disable, 1=enable.
  362. # Note: the parameters DEVICES_TO_DISABLE/ENABLE_ON_STARTUP/SHUTDOWN below
  363. # are ignored when this is enabled.
  364. # Default: 0
  365. #RESTORE_DEVICE_STATE_ON_STARTUP=0
  366. # Radio devices to disable on startup: bluetooth, nfc, wifi, wwan.
  367. # Separate multiple devices with spaces.
  368. # Default: <none>
  369. #DEVICES_TO_DISABLE_ON_STARTUP="bluetooth nfc wifi wwan"
  370. # Radio devices to enable on startup: bluetooth, nfc, wifi, wwan.
  371. # Separate multiple devices with spaces.
  372. # Default: <none>
  373. #DEVICES_TO_ENABLE_ON_STARTUP="wifi"
  374. # Radio devices to disable on shutdown: bluetooth, nfc, wifi, wwan.
  375. # Note: use as a workaround for devices that are blocking shutdown.
  376. # Default: <none>
  377. #DEVICES_TO_DISABLE_ON_SHUTDOWN="bluetooth nfc wifi wwan"
  378. # Radio devices to enable on shutdown: bluetooth, nfc, wifi, wwan.
  379. # (to prevent other operating systems from missing radios).
  380. # Default: <none>
  381. #DEVICES_TO_ENABLE_ON_SHUTDOWN="wwan"
  382. # Radio devices to enable on AC: bluetooth, nfc, wifi, wwan.
  383. # Default: <none>
  384. #DEVICES_TO_ENABLE_ON_AC="bluetooth nfc wifi wwan"
  385. # Radio devices to disable on battery: bluetooth, nfc, wifi, wwan.
  386. # Default: <none>
  387. #DEVICES_TO_DISABLE_ON_BAT="bluetooth nfc wifi wwan"
  388. # Radio devices to disable on battery when not in use (not connected):
  389. # bluetooth, nfc, wifi, wwan.
  390. # Default: <none>
  391. #DEVICES_TO_DISABLE_ON_BAT_NOT_IN_USE="bluetooth nfc wifi wwan"
  392. # Battery Care -- Charge thresholds
  393. # Charging starts when the charger is connected and the charge level
  394. # is below the start threshold. Charging stops when the charge level
  395. # is above the stop threshold.
  396. # Required hardware: Lenovo ThinkPads and select other laptop brands
  397. # are driven via specific plugins
  398. # - Active plugin and support status are shown by tlp-stat -b
  399. # - Vendor specific threshold levels are shown by tlp-stat -b, some
  400. # laptops support only 1 (on)/ 0 (off) instead of a percentage level
  401. # - When your hardware supports a start *and* a stop threshold, you must
  402. # specify both, otherwise TLP will refuse to apply the single threshold
  403. # - When your hardware supports only a stop threshold, set the start
  404. # value to 0
  405. # - Older ThinkPads may require an external kernel module, refer to the
  406. # output of tlp-stat -b
  407. # For further explanation and vendor specific details refer to
  408. # - https://linrunner.de/tlp/settings/battery.html
  409. # - https://linrunner.de/tlp/settings/bc-vendors.html
  410. # BAT0: Primary / Main / Internal battery
  411. # Note: also use for batteries BATC, BATT and CMB0
  412. # Default: <none>
  413. # Battery charge level below which charging will begin.
  414. # START_CHARGE_THRESH_BAT0=35
  415. # Battery charge level above which charging will stop.
  416. STOP_CHARGE_THRESH_BAT0=85
  417. # BAT1: Secondary / Ultrabay / Slice / Replaceable battery
  418. # Note: primary on some laptops
  419. # Default: <none>
  420. # Battery charge level below which charging will begin.
  421. # START_CHARGE_THRESH_BAT1=35
  422. # Battery charge level above which charging will stop.
  423. STOP_CHARGE_THRESH_BAT1=85
  424. # Restore charge thresholds when AC is unplugged: 0=disable, 1=enable.
  425. # Default: 0
  426. #RESTORE_THRESHOLDS_ON_BAT=1
  427. # Control battery care drivers: 0=disable, 1=enable.
  428. # Default: 1 (all)
  429. #NATACPI_ENABLE=1
  430. #TPACPI_ENABLE=1
  431. #TPSMAPI_ENABLE=1
  432. # ------------------------------------------------------------------------------
  433. # tlp-rdw - Parameters for the radio device wizard
  434. # Possible devices: bluetooth, wifi, wwan.
  435. # Separate multiple radio devices with spaces.
  436. # Default: <none> (for all parameters below)
  437. # Radio devices to disable on connect.
  438. #DEVICES_TO_DISABLE_ON_LAN_CONNECT="wifi wwan"
  439. #DEVICES_TO_DISABLE_ON_WIFI_CONNECT="wwan"
  440. #DEVICES_TO_DISABLE_ON_WWAN_CONNECT="wifi"
  441. # Radio devices to enable on disconnect.
  442. #DEVICES_TO_ENABLE_ON_LAN_DISCONNECT="wifi wwan"
  443. #DEVICES_TO_ENABLE_ON_WIFI_DISCONNECT=""
  444. #DEVICES_TO_ENABLE_ON_WWAN_DISCONNECT=""
  445. # Radio devices to enable/disable when docked.
  446. #DEVICES_TO_ENABLE_ON_DOCK=""
  447. #DEVICES_TO_DISABLE_ON_DOCK=""
  448. # Radio devices to enable/disable when undocked.
  449. #DEVICES_TO_ENABLE_ON_UNDOCK="wifi"
  450. #DEVICES_TO_DISABLE_ON_UNDOCK=""