Home
Softono

Nvidia System Monitor Qt

Open source MIT C++
178
Stars
23
Forks
5
Issues
4
Watchers
1 year
Last Commit

 About Nvidia System Monitor Qt

Task Manager for Linux for Nvidia graphics cards

Platforms

Web Self-hosted Linux

Languages

C++

Links

Need Help Installing Nvidia System Monitor Qt?

We provide expert installation service for this software. Our team will install, configure, and secure Nvidia System Monitor Qt on your server. plans start at just $30.

Nvidia System Monitor Qt

View on GitHub

nvidia-system-monitor

icon

Task Manager for Linux for Nvidia graphics cards

Codacy Badge

preview

Packages

Dependencies

  1. Qt 5.11+
  2. nvidia-smi
  3. which
  4. cmake (make dependence)

Building

ArchLinux

You can install nvidia-system-monitor-qt directly from AUR
To launch type qnvsm or just click on the .desktop file

Other

mkdir build
cmake -DCMAKE_BUILD_TYPE=Release -B build -G "Unix Makefiles"
cmake --build build --target qnvsm -- -j 4

You can specify icon path by passing CMake argument IconPath, for example:

mkdir build
cmake -DCMAKE_BUILD_TYPE=Release -DIconPath=/usr/share/icons/hicolor/512x512/apps/nvidia-system-monitor-qt.png -B build -G "Unix Makefiles"
cmake --build build --target qnvsm -- -j 4

To launch type build/qnvsm

The option -j describes the number of parallel processes for the build. In this case make will try to use 4 cores for the build.