1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00

htop: add field M_VIRT and TTY as alias

`M_SIZE` has renamed to `M_VIRT` in https://github.com/htop-dev/htop/issues/325
`TTY_NR` has renamed to `TTY` in https://github.com/htop-dev/htop/pull/572
This commit is contained in:
n0099 2025-08-03 02:29:11 +00:00 committed by Austin Horstman
parent a26e907ca1
commit 1d7abbd545

View file

@ -30,6 +30,7 @@ let
PPID = 3; PPID = 3;
PGRP = 4; PGRP = 4;
SESSION = 5; SESSION = 5;
TTY = 6;
TTY_NR = 6; TTY_NR = 6;
TPGID = 7; TPGID = 7;
MINFLT = 9; MINFLT = 9;
@ -44,6 +45,7 @@ let
NICE = 18; NICE = 18;
STARTTIME = 20; STARTTIME = 20;
PROCESSOR = 37; PROCESSOR = 37;
M_VIRT = 38;
M_SIZE = 38; M_SIZE = 38;
M_RESIDENT = 39; M_RESIDENT = 39;
M_SHARE = 40; M_SHARE = 40;