/etc/procmeterrc is in procmeter3 3.5d-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 | ##
## The information about the library of modules.
##
[library]
# The location of the modules
path=/usr/lib/X11/ProcMeter3/modules
##
## The outputs to start (formatted as <module>.<output>[-g|-t|-b])
## Run 'procmeter3 --help' to get a full list of available modules.
##
[startup]
order=ProcMeter.Version-t \
Date_Time.Time_HM-t Date_Time.Date_DM-t \
Statistics.CPU-b \
Memory.Mem_Avail-g
##
## The global default resources, mainly X-Windows resources
##
[resources]
# The outputs, black on almost-white (for Xaw3d white does not work well).
foreground = black
background = grey80
# The text output, a large-medium size font.
text-font = 8x13
# The graph output, a solid graph with at least 5 grid lines in grey.
graph-solid = yes
grid-min = 5
grid-foreground = grey40
# The labels on the graphs, black in a small size font below the data.
label-font = 5x7
label-foreground = black
label-position = bottom
# The menu items, black on white in a small-medium size font (These are not used for GTK version).
menu-foreground = black
menu-background = grey80
menu-font = 7x13
##
## The resources for the ProcMeter Version output.
##
[ProcMeter.Version]
# A smaller font than normal with no label.
text-font = 6x10
label-position = none
# More information about procmeter3
run = XTerm(procmeter3 -h | less)
##
## The resources for the 'Statistics' module.
##
[Statistics]
[Statistics.CPU]
# The minimum number of grid lines, they are 20% each.
grid-min = 5
##
## The resources for the 'Processes' module.
##
[Processes]
# A more detailed look at the processes.
run = XTerm(top)
##
## The resources for the 'Memory' module.
##
[Memory]
# More information about memory usage.
run = XTermWait(free)
##
## The resources for the 'Date and Time' module
##
[Date_Time]
# No label for these since they are obvious
label-position = none
# A different clock.
run = Shell(xclock)
[Date_Time.Uptime_DHM]
# This one needs a label because otherwise it is not obvious.
label-position = bottom
##
## The resources for the 'Network' module
##
[Network]
# To pick up extra devices not automatically recognised.
#options=ppp0 slip0
# Information about the network devices
run = XTermWait(ifconfig -a)
##
## The resources for the 'DiskUsage' module
##
[DiskUsage]
# The minimum number of grid lines, they are 20% each.
grid-min = 5
# Information about the disks
run = XTermWait(df)
##
## The resources for the 'Stat-Intr' module
##
[Stat-Intr]
# To limit the number of interrupts that are processed.
#options=30
##
## The resources for the 'LogFile' module
##
[LogFile]
# Files to monitor
#options=/var/adm/messages /var/log/syslog
|