TLP 电源管理应用程序是否有 GUI?

hel*_*lle 6 gui power-management software-recommendation tlp

我想知道是否有人已经为出色的 TLP 电源管理应用程序编写了 GUI?

http://linrunner.de/en/tlp/tlp.html

edw*_*ksl 8

https://github.com/linrunner/TLP/issues/129#issuecomment-98478154来看,TLP 的主要作者推荐了TLPUI,这是一个用 Python 编写的 GTK GUI。请注意,这是测试版软件,因此会出现错误。

您首先需要tlp通过TLP PPA获得 0.9-1版本,tlp因为官方存储库中的版本仅为 0.8-1,而 GUI 应用程序至少需要 0.9 版:

sudo add-apt-repository ppa:linrunner/tlp
sudo apt-get update
sudo apt-get install tlp
Run Code Online (Sandbox Code Playgroud)

然后,根据 TLPUI 的 GitHub 存储库中的安装说明:

  1. https://github.com/d4nj1/TLPUI/archive/master.zip下载 repo 的 zip 文件

  2. 解压zip文件并运行 python3 tlpui.py

或者,您可以只使用git克隆存储库:

git clone https://github.com/d4nj1/TLPUI.git
cd TLPUI
python3 tlpui.py
Run Code Online (Sandbox Code Playgroud)

然后做git pullgit fetch之后git merge定期更新本地回购协议的副本。

  • 这里有一个 TLPUI 的 PPA:https://www.linuxuprising.com/2018/11/install-tlpui-in-ubuntu-or-linux-mint.html (2认同)
  • 存储库中的说明现在说使用 `python3 -m tlpui` 运行 gui。 (2认同)