summaryrefslogtreecommitdiff
path: root/src/status/netif.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/status/netif.c')
-rw-r--r--src/status/netif.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/status/netif.c b/src/status/netif.c
index 3c0fef0..e760b4c 100644
--- a/src/status/netif.c
+++ b/src/status/netif.c
@@ -44,7 +44,7 @@ void status_netif(GlobalData *g, char *ifname)
/* Is the interface up? */
if (access(ifpath, F_OK)) {
- //s.color = "grey";
+ //s.color = "#BEBEBE"; // grey
return;
}
@@ -53,9 +53,9 @@ void status_netif(GlobalData *g, char *ifname)
stlen = fileRead(stline, sizeof(stline), ifpath);
if (stlen > 0) {
if (stline[0] == '1') {
- s.color = "yellow";
+ s.color = "#FFFF00"; // yellow
} else {
- //s.color = "red";
+ //s.color = "#FF0000"; // red
return;
}
} else {