Fluidstat is a minimalist, WIP terminal app that displays used ressources info.
To display your CPUs load, cd
in the project and run
python3 plot.py -cpu
To display your ram usage, cd
in the project and run
python3 plot.py -ram
To display your battery percentage, cd
in the project and run
python3 plot.py -btry
Important
This is only available when you have a battery.
If you wish to have FluidStat available as a global command in your Linux terminal, you can follow these steps:
-
You need to access the
bin/
folder located at the root of your system (~/bin
) -
Once your are there, create a new file:
sudo touch FluidStat
You need sudo as you are in the system files
-
You then have to add this content to it:
python3 /../../home/USER/PATH_TO_PROJECT/FluidStat/plot.py $1
Where
USER
is your Linux username andPATH_TO_PROJECT
the path to where you installed the projectYou may need to use
sudo vim FluidStat
orsudo nano FluidStat
-
Give the autorisation to execute the file:
sudo chmod +x FluidStat
-
You should now be able to launch the command from anywhere:
FluidStat -cpu FluidStat -ram FluidStat -btry
Important
This project is WIP, the initial idea was to built a full desktop app using fbs
, PySide6
, ...
As current state can tell, this is only a funny little project on which I don't plan on working anymore. The code is therefore really simple and basic.