Skip to content

QuickFetch - quick system info tool that promotes hackability

License

Notifications You must be signed in to change notification settings

jakub-swiniarski/quickfetch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

QuickFetch - quick system info tool

Logo

Logo

Screenshots

image image

How to install?

Prerequisites

  • gcc
  • make

Compile & install

Run this with root privileges:

make install

How to run?

Use this command:

qf

How to uninstall?

Go inside the cloned repository and run this with root privileges:

make uninstall

Configuration

You can configure QuickFetch by editing the source code.

How to setup CPU temperature detection?

Find the CPU thermal zone

cat /sys/class/thermal/thermal_zone*/type

Look for x86_pkg_temp (this is your CPU thermal zone).

Example

Counting from 0, x86_pkg_temp is 9th on the list.
Edit config.h:

static const char *cpu_temp = "/sys/class/thermal/thermal_zone9/temp";

Recompile & reinstall to see the changes.