Meine basic top config.

Die Config

Um nicht immer mit h die Help durchzulesen:

top
z: enable colors
E: set RAM to GB in header
e: set RAM to MB in list
V: tree view
t: cpu graphic
m: ram graphic
1/4: display cores, but split into 2 rows
c: display full command
B: make bold
x: display sort field
y: disable current process
move sort to mem

:W to write these configs

Alias for the win

Meist habe ich einen topu Alias, die mir nur die Prozesse des aktuellen Users anzeigt:

alias topu='top -u $(whoami)'

# or as a fish function
function topu --wraps='top -u $(whoami)' --description 'alias topu=top -u $(whoami)'
  top -u $(whoami) $argv
end