In KDE5 there that app System Activity ( System Activity - KDE UserBase Wiki ). It was an alternative to plasma-systemmonitor. And I definitely liked it better! 100 times better, I loved it !
It was faster, it was more customizable, had better features (for me) and it even looked better (IMHO)!
During upgrade to KDE5 it has disappeared from my system. Is there a way to get it (using KDE6)???
I was searching for it, but so far no joy
They decided to keep just the System Monitor, so System Activity (a.k.a. KSysGuard) wasnât ported to Qt6.
If you are comfortable compiling programs, Iâve been using this port:
Be sure to clone, or download, the kf6 branch (which is the one linked above).
I really tried sticking with System Monitor, but it doesnât seem to list all processes, as I asked this other day on another thread:
Also, the newer one resets previous customizations on the process list every time you try to edit it, for example to add a new column, and I canât make column reordering work.
I loved this too! i liked to be able to hover the mouse over things in the list and it would show me a pop up with the directory along with other clues to what app it is associated with, very fast pop up tooâŚId hit the ctrl + escape keys, and it would be on my screen ready to use, and then the little search filter box right at the topâŚfast and easy to narrowed things downâŚgoing to miss this featureâŚ
Thank you for your response Rodrigo!
Iâd love to compile it, standard make && make install doesnât do the trick. Could you please provide a command for this code?
Iâve tried cmake . but itâs apparently not what I should do.
I tried to make a step-by-step script, with comments.
The dependencies are for openSUSE, if you are using a different distro, the package names might be different. But the script below might give you a good start.
Also, CMake will fail on a missing dependency, and its error message will also give you a good hint.
Hope it helps =)
# on debian/ubuntu based systems this would be
# the same as installing the "build-essentials" package
# it provides basic compilation packages like gcc, git, etc.
sudo zypper install --type pattern devel_basis
# cmake and KDE's extra cmake modules
sudo zypper install \
cmake \
kf6-extra-cmake-modules
# required QT6 dependencies
sudo zypper install \
qt6-core-devel \
qt6-widgets-devel \
qt6-test-devel \
qt6-xml-devel \
qt6-gui-devel
# required KDE dependencies
sudo zypper install \
libksysguard6-devel \
kf6-kconfig-devel \
kf6-kcoreaddons-devel \
kf6-kdbusaddons-devel \
kf6-kdoctools-devel \
kf6-ki18n-devel \
kf6-kiconthemes-devel \
kf6-kitemviews-devel \
kf6-kio-devel \
kf6-knewstuff-core-devel \
kf6-knewstuff-devel \
kf6-kauth-devel \
kf6-knotifications-devel \
kf6-kwindowsystem-devel \
kf6-kconfigwidgets-devel \
kf6-kglobalaccel-devel \
kf6-kxmlgui-devel
# optional dependencies
sudo zypper install \
qt6-webenginewidgets-devel \
qt6-webchannel-devel \
zlib-devel \
libnl3-devel \
libpcap-devel \
libcap-devel \
libsensors4-devel
# clone the code, note the kf6 branch, you can also download the tarball
# or zip file
git clone --branch=kf6 https://github.com/zvova7890/ksysguard6.git
# the git clone command will create a directory named the same as the repo
# let's move into this directory
cd ksysguard6
# a common practice is to create a build directory
# to hold compilation artifacts...
mkdir build
# ... and then, let's move into the build directory
cd build
# prepare
cmake -DCMAKE_BUILD_TYPE=Release ..
# compile
make
# install
sudo make install
Thank you a lot Rodrigo. Iâm using KDE Neon distribution (Ubuntu-based).
After some modifications and research regarding missing packages, Iâve gone that far:
Unfortunately, it seems that there are packages, that are nowhere to be found as DEB, so I would have to again build them from sources, aaand⌠I feel it would be dependency hell ;-(
E: canât find libksysguard6-dev â searched e.g. ââksysguard6â debâ but in vain. Similar situation with the rest: