Faster IT

Results 170 comments of Faster IT

https://sources.debian.org/src/htop/3.4.0-2/debian/patches/ for inspiration

If you build from git, you get a git tag (and some changes info, in case you have some) after the dash. Build outside of git trees if you want...

Press Ctrl-L. `htop` is just not updating all of the display all the time as the other tools do.

You could just `mesg n` the terminal where `htop` is running. Or do ``` while : ; do htop -n 300; done ``` I'll leave it as an exercise to...

@ShaiMagal: Have you tested the PR?

yes, trixie will be stable in ~3 months, so not worth to backport `htop`. It's easy enough to compile for people that want to participate in the development. And for...

@cgzones ping. Does this need to go into main or does this need some testing or ...?

You can filter for a user's processes only with: `htop -u username_goes_here`

Seems to be a `pkgsrc` issue. Building the git tip with `./autogen.sh && ./configure --enable-debug && make -j 8` works.

yes, the are hardcoded 5 digits at https://github.com/htop-dev/htop/blob/main/darwin/Platform.c#L216 That used to be correct but then is seems to be INT_MAX now. Did not find any docs. ```diff diff --git a/darwin/Platform.c...