Check-in [fc2c85c944]
Overview
Comment:Updated the freecolor README (and changed version to 0.8.4) to note dependency on libstatgrab when non-Linux.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | 0.8.4
Files: files | file ages | folders
SHA1: fc2c85c944a9f47d53811a89607260d6d35c3aea
User & Date: rkeene on 2004-07-15 14:16:56
Original Comment: Added some packetbl patches to my text directory, don't know how long they'll be there. Updated the freecolor README (and changed version to 0.8.4) to note dependency on libstatgrab when non-Linux. Added stuff to the archive. Made cat in mooselinux smarter. Deleted binaries from the rutil_tcpcgi directory (grr!) and updated its FAQ Makearch got revamp'd a bit and got a Makefile and the `.sh' on the script's name went away; COPYING got changed to LICENSE elinks updated its history and cookies -- woo. Renamed the decolrify.sh script to decolorify.sh -- oops. Added a script that will take my .taclog and put something semi-public on the web. Updated my authorized_keys to include NRL. Centericq did some stuff -- who cares.
Other Links: manifest | tags
Context
2005-06-04
09:54
Updated Makefile to create the `bindir' if it doesn't exist. freecolor 0.8.5 check-in: 2d4b9986fd user: rkeene tags: trunk, 0.8.5
2004-07-15
14:16
Updated the freecolor README (and changed version to 0.8.4) to note dependency on libstatgrab when non-Linux. check-in: fc2c85c944 user: rkeene tags: trunk, 0.8.4
2004-03-27
00:02
Removed binaries and configured files, added and applied .cvsignore check-in: 06ed27c5bc user: rkeene tags: trunk
Changes

Modified README from [c719689ebf] to [93a3dc8cbd].


1
2
3
4
5



6
7
8
9
10
11
12
13

This is a VERY simple program to replace `free' because I wanted something
that had a little more meaning to it (percents), and then I wanted some
color.





To compile and install,

$ ./configure
$ make
$ make install


-- Roy Keene @@DATE@@ <freecolor@rkeene.org>
>
|
|
|

|
>
>
>
|
|
|
|
|

<

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

16
I. ABOUT
    This is a VERY simple program to replace `free' because I wanted something
    that had a little more meaning to it (percents), and then I wanted some
    color.

II. INSTALLATION
    1. REQUIREMENTS
          a. libstatgrab (version 0.10 is currently not tested.)
                - OR -
          b. Linux and the /proc filesystem mounted.
    2. INSTRUCTIONS
          $ ./configure
          $ make
          $ make install


-- Roy Keene @@DATE@@ <freecolor@rkeene.org>

Modified freecolor.c from [697a67cfec] to [061f79a4e2].

63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#include <stdlib.h>
#include <stdio.h>
#ifndef NO_GETOPT
#include <getopt.h>
#endif
#define BARLEN 35
#define HEADERLEN 14
#define VERSION "0.8.3"


extern char *optarg;
extern int optind, opterr, optopt;

void bargraph(float percent, float secondper, char marks[BARLEN+HEADERLEN],int usefull) {
  char percentone[BARLEN], percenttwo[BARLEN], remain[BARLEN];







|







63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#include <stdlib.h>
#include <stdio.h>
#ifndef NO_GETOPT
#include <getopt.h>
#endif
#define BARLEN 35
#define HEADERLEN 14
#define VERSION "0.8.4"


extern char *optarg;
extern int optind, opterr, optopt;

void bargraph(float percent, float secondper, char marks[BARLEN+HEADERLEN],int usefull) {
  char percentone[BARLEN], percenttwo[BARLEN], remain[BARLEN];