blob: 854bb2e213b2e82b119c3a0e6ec787a8a00471bd (
plain)
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
|
# example config file for allin1
# border size and space between histograms in pixel
# normal 2, for compact display set to 1
border = 1
# background color
bgcolor = "gray10"
# ram monitor enabled
ram = 1
# colors for RAM histogram
ram_used = "red"
ram_buff = "yellow"
ram_share = "lightblue"
ram_cache = "brown"
# colors for swap histogram
swap_used = "red"
# battery control enabled
battery = 1
# colors for battery gauge
battnorm = "green3"
battlow = "red3"
# percent of battery below on is considered "low"
percent_low = 20
# ACPI support layer, /proc files for battery
# battery info
batt_acpi_info = "/proc/acpi/battery/BAT0/info"
# battery status
batt_acpi_status = "/proc/acpi/battery/BAT0/state"
# cpu monitor enabled
cpu = 1
# cpu graph vertical size in pixel
cpu_size = 18
# cpu monitor mode, 0 histogram or 1 graph
cpu_mode = 1
# colors for cpu load graph
cpu_user = "green"
cpu_nice = "orange"
cpu_sys = "red"
# ppp traffic report if != 0
ppp = 1
# icon type (0=modem)
pppicon = 0
# interface name
pppname = "ppp"
# ppp speed in kbit/sec
pppspeed = 115
# ppp scale, log if != 0, else linear
ppp_log = 0
# ppp activity leds
ppp_act = 1
# ppp colors
ppp_in_color = "red3"
ppp_out_color = "green3"
# ethernet traffic report if != 0
eth = 1
# icon type (1=nic, see man page)
ethicon = 1
# interface name
ethname = "eth0"
# ethernet speed in kbit/sec
ethspeed = 10000
# ethernet scale, log if != 0, else linear
eth_log = 1
# ethernet activity leds
eth_act = 1
# ethernet colors
eth_in_color = "red3"
eth_out_color = "green3"
# filesystem check colors
fsnorm = "green3"
fscrit = "red3"
# filesystem path
path1 = "/"
# filesystem % low limit
fslow1 = 20
# Seti@home support, progress bar
#seti = 1
# state.sah file complete pathname, relative to your home or absolute.
setipath = "seti/state.sah"
# color for progress bar
seticolor = "gold"
|