diff options
author | Andreas Kling <kling@serenityos.org> | 2021-04-05 13:36:43 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-05 13:40:25 +0200 |
commit | 6902adbb84c02b19185d68d353bfa417d5f981cf (patch) | |
tree | b1dec15ef41c806da9589287ccbc5cee7d73fe26 /Userland/Applications/SystemMonitor/ProcessModel.h | |
parent | 52de9b175376f11676e2ea2d32207332f5923069 (diff) | |
download | serenity-6902adbb84c02b19185d68d353bfa417d5f981cf.zip |
SystemMonitor: Only show the most important process stats by default
You can still enable additional columns via the context menu, and this
gives us a much more focused default interface.
Diffstat (limited to 'Userland/Applications/SystemMonitor/ProcessModel.h')
-rw-r--r-- | Userland/Applications/SystemMonitor/ProcessModel.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Userland/Applications/SystemMonitor/ProcessModel.h b/Userland/Applications/SystemMonitor/ProcessModel.h index 1c664c4dec..d303eff7a5 100644 --- a/Userland/Applications/SystemMonitor/ProcessModel.h +++ b/Userland/Applications/SystemMonitor/ProcessModel.h @@ -39,25 +39,25 @@ class ProcessModel final : public GUI::Model { public: enum Column { Icon = 0, + PID, Name, CPU, - Processor, State, - Priority, User, - PID, - TID, - PPID, - PGID, - SID, Virtual, - Physical, DirtyPrivate, + Pledge, + Physical, CleanInode, PurgeableVolatile, PurgeableNonvolatile, Veil, - Pledge, + Processor, + Priority, + TID, + PPID, + PGID, + SID, Syscalls, InodeFaults, ZeroFaults, |