Lenovo Legion Toolkit (Linux Edition) is a production-grade unofficial alternative to Lenovo Vantage / Legion Toolkit for GNU/Linux. It brings deep hardware integration to your system, providing you with real-time telemetry, power management, thermal controls, and battery conservation tools directly from a modern GUI.
Designed natively for Linux, it operates independently of standard OS interfaces by communicating directly with the EC (Embedded Controller) via ACPI/sysfs through a secure, split-privilege D-Bus daemon.
Whether you run Wayland or X11, or use GNOME, KDE Plasma, Cinnamon, or i3, the toolkit scales natively across high-DPI displays.
- Advanced Power Management: Quickly toggle between Quiet, Balanced, and Performance thermal profiles (synced directly with the hardware EC and
power-profiles-daemon). - GPU Switching: Seamlessly manage Hybrid, Integrated, and Dedicated GPU modes via standard
supergfxctlAPIs. - Custom TDP Tuning (RyzenAdj): Override factory hardware power limits (STAPM, Fast, Slow limits in mW) natively from the GUI.
- Battery Conservation: Easily toggle Battery Conservation Mode to cap charging at 60-80% to vastly extend battery lifespan, and read deep raw battery analytics.
- System Hardware Controls: Configure Always-On USB, Flip-To-Start, Instant-Boot, and Fn-Lock natively.
- Real-time Telemetry: Hardware polling engine streams CPU/GPU Utilization, Temperatures, and Fan RPM directly into the Dashboard.
- Capability Engine: The GUI auto-adapts to your specific laptop. Missing hardware features (like RGB or specific GPU muxes) are gracefully detected and safely disabled.
The project employs a secure split-privilege architecture:
vantaged(System Daemon): Runs as root in the background. Safely executes privileged ACPI,/sys/class, andsupergfxctlhardware calls.vantage-gui(User GUI): Runs as your standard unprivileged user. A pristine PyQt6 interface that communicates with the daemon exclusively via standardD-BusIPC.
The application relies on core Python libraries and standard hardware packages. Please install the dependencies specific to your Linux Distribution before compiling.
sudo apt update
sudo apt install python3 python3-pip python3-dbus python3-pyqt6 supergfxctlsudo dnf install python3 python3-pip python3-dbus python3-pyqt6 supergfxctlsudo pacman -S python python-dbus python-pyqt6 supergfxctl(Optional) For advanced CPU tuning on AMD processors, ensure ryzenadj is installed in your system $PATH.
-
Clone the repository:
git clone https://github.com/nightcodex7/lenovo-vantage-unofficial-linux.git cd lenovo-vantage-unofficial-linux -
Install globally via Makefile:
sudo make install
This automatically registers the
lenovo-vantage.servicesystemd daemon, enables it, and creates the desktop entries. -
Launch the Application:
- Open your application launcher (Super/Windows key) and search for "Lenovo Vantage".
- Alternatively, you can launch the GUI directly from the terminal:
vantage-gui
Note on Display Servers: The GUI explicitly requests Wayland first (
QT_QPA_PLATFORM="wayland;xcb") to guarantee flawless high-DPI scaling and crisp text on modern GNOME/KDE Wayland sessions, while perfectly falling back to X11 on legacy environments.
To completely remove the daemon, application, and clear out /etc/lenovo-vantage configuration configs:
cd lenovo-vantage-unofficial-linux
sudo make uninstallContributions are welcome! If you encounter issues mapping specific ACPI commands on your specific Legion/IdeaPad/ThinkBook/other Lenovo devices, please open an Issue.
A massive thank you to LenovoLegionToolkit by Bartosz Cichecki. This project was heavily inspired by and majorly ported from their fantastic work on the Windows equivalent.