From 6902adbb84c02b19185d68d353bfa417d5f981cf Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 5 Apr 2021 13:36:43 +0200 Subject: 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. --- Userland/Applications/SystemMonitor/ProcessModel.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'Userland/Applications/SystemMonitor/ProcessModel.h') 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, -- cgit v1.2.3