Blinky 0.8 - a GTK1 network usage monitor
============================
Copyright (C) 2006, Lior Tubi <lior2b@gmail.com>

This Blinky release is based on a work by Benjamin Miller <bmiller@users.sf.net>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License (see "LICENSE" file).
============================

--- Compile command used ---
(!) For debbuging:

gcc -g -O2 -Wall -I/usr/include/gtk-1.2 -I/usr/include/glib-1.2 -I/usr/lib/glib/include \
-I/usr/X11R6/include -L/usr/lib-L/usr/X11R6/lib -lgtk -lgdk -rdynamic -lgmodule \
-lglib -ldl -lXi -lXext -lX11 -lm -combine blinky.c interface.c usage-proc.c util.c -o ../bin/blinky


(!) For production:

gcc -O2 -I/usr/include/gtk-1.2 -I/usr/include/glib-1.2 -I/usr/lib/glib/include \
-I/usr/X11R6/include -L/usr/lib -L/usr/X11R6/lib -lgtk -lgdk -rdynamic -lgmodule \
-lglib -ldl -lXi -lXext -lX11 -lm -combine blinky.c interface.c usage-proc.c util.c -o ../bin/blinky

============================

--- Options ---
(!) You can specify a list of interfaces to hide in ~/.blinky
	in CSV (Comma Separated Values) format, for exapmle:

		ath0,eth0,ppp0

	(*) Note: This option can be set from within blinky too.


(!) You can specify a background color as a command line argument, examples:

		$ blinky -bg "red"
		$ blinky -bg "LightSteelBlue"
		$ blinky -bg "#FFCCCC"

(!) Executing blinky with -v or --version as a command
	line argument will output the installed version, e.g.:

		$ blinky -v
		Blinky v0.8 by Lior Tubi <lior2b@gmail.com> 
		$ blinky --version
		Blinky v0.8 by Lior Tubi <lior2b@gmail.com> 

============================
