diff options
author | reinelt <> | 2004-06-17 10:58:58 +0000 |
---|---|---|
committer | reinelt <> | 2004-06-17 10:58:58 +0000 |
commit | e2fbd653b47bcd69d8adf571374af8eb923ea6eb (patch) | |
tree | c437d771677be04dbbe947dd9040e681d5aade03 /lcd4linux.c | |
parent | a43b08b32bebb2bb48da9fe4e130c4f4067b3c41 (diff) | |
download | lcd4linux-e2fbd653b47bcd69d8adf571374af8eb923ea6eb.tar.gz |
[lcd4linux @ 2004-06-17 10:58:57 by reinelt]
changed plugin_netdev to use the new fast hash model
Diffstat (limited to '')
-rw-r--r-- | lcd4linux.conf.sample | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lcd4linux.conf.sample b/lcd4linux.conf.sample index 8028435..c1adc4a 100644 --- a/lcd4linux.conf.sample +++ b/lcd4linux.conf.sample @@ -256,7 +256,7 @@ Widget DiskBar { Widget Eth0 { class 'Text' - expression (netdev('eth0.Rx.bytes', 500)+netdev('eth0.Tx.bytes', 500))/1024 + expression (netdev('eth0', 'Rx_bytes', 500)+netdev('eth0', 'Tx_bytes', 500))/1024 prefix 'eth0' postfix ' ' width 10 @@ -267,8 +267,8 @@ Widget Eth0 { Widget Eth0Bar { class 'Bar' - expression netdev('eth0.Rx.bytes', 500) - expression2 netdev('eth0.Tx.bytes', 500) + expression netdev('eth0', 'Rx_bytes', 500) + expression2 netdev('eth0', 'Tx_bytes', 500) length 14 direction 'E' update tack |