Files
QDiskInfo/README.md
2024-06-23 00:14:15 +03:00

878 B

QDiskInfo

CrystalDiskInfo alternative for Linux mockup The icon is a modified version of the KDE Partition Manager logo which is available under GPL-3.0+

Compiling and Installing

First you will need to clone the repository and cd inside

https://github.com/edisionnano/QDiskInfo.git && cd QDiskInfo

Then you must create a build directory and cd inside

mkdir build && cd build

After that use CMake to setup the project, Qt version can also be set to 5 (for example for Ubuntu)

cmake .. -DCMAKE_BUILD_TYPE:STRING=MinSizeRel -DQT_VERSION_MAJOR=6

And finally compile the project with all the threads

make -j$(nproc)

This will create a QDiskInfo binary on the build directory but you can also install it using

sudo make install