summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2019-09-17 20:15:22 +0200
committerDimitri Sokolyuk <demon@dim13.org>2019-09-17 20:15:22 +0200
commitdf7af4793b532963cff3d70c9a3b8b546a9eabc4 (patch)
treecfa01b769406eb079bed7faaed020c8af946f761
parent454a975d4e4da76fc2d4b7ff1bb5e557ead60e0e (diff)
Rename in/out to dn/upHEADmaster
-rw-r--r--netmet2.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/netmet2.c b/netmet2.c
index cc4e7b4..53aff12 100644
--- a/netmet2.c
+++ b/netmet2.c
@@ -141,11 +141,11 @@ initscreen(int n)
wmove(datap->plotbox, 0, 1);
waddch(datap->plotbox, '[');
wattron(datap->plotbox, COLOR_PAIR(1));
- waddstr(datap->plotbox, "in");
+ waddstr(datap->plotbox, "dn");
wattroff(datap->plotbox, COLOR_PAIR(1));
waddch(datap->plotbox, '/');
wattron(datap->plotbox, COLOR_PAIR(2));
- waddstr(datap->plotbox, "out");
+ waddstr(datap->plotbox, "up");
wattroff(datap->plotbox, COLOR_PAIR(2));
waddch(datap->plotbox, ']');
@@ -176,10 +176,10 @@ display(void)
int symin, symout;
SIMPLEQ_FOREACH(datap, &head, link) {
- mvwprintw2(datap->info, 0, 0, "in: ", (*datap->cur)[0]);
- mvwprintw2(datap->info, 1, 0, "imax:", datap->max[0]);
- mvwprintw2(datap->info, 2, 0, "out: ", (*datap->cur)[1]);
- mvwprintw2(datap->info, 3, 0, "omax:", datap->max[1]);
+ mvwprintw2(datap->info, 0, 0, "dn ", (*datap->cur)[0]);
+ mvwprintw2(datap->info, 1, 0, "dnmax", datap->max[0]);
+ mvwprintw2(datap->info, 2, 0, "up ", (*datap->cur)[1]);
+ mvwprintw2(datap->info, 3, 0, "upmax", datap->max[1]);
wnoutrefresh(datap->info);
symin = hascolors ? ' ' : 'I';