From 0f8d4023cf08f2af393fcb3d8f0a04d9b73c1c4a Mon Sep 17 00:00:00 2001 From: sabetts Date: Sat, 26 Aug 2000 05:45:40 +0000 Subject: initial checkin. --- README | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 README (limited to 'README') diff --git a/README b/README new file mode 100644 index 0000000..1eff421 --- /dev/null +++ b/README @@ -0,0 +1,47 @@ +Ratpoison - Say good-bye to the rodent +-------------------------------------- + +About +----- + +ratpoison is a simple Window Manager with no fat library dependencies, +no fancy graphics, no window decorations, and no flashy wank. It is +largely modelled after GNU Screen which has done wonders in virtual +terminal market. + +All interaction with the window manager is done through +keystrokes. ratpoison has a prefix map to minimize the key clobbering +that cripples EMACS and other quality pieces of software. + +You'll also be pleased to hear that there is NO ratpoison.conf to +configure. If you want to configure ratpoison, edit the source. + +Building +-------- + +ratpoison comes with a Makefile that should work in most cases on most +architectures. If you have trouble compiling you may have to edit it. + +The first thing to do is compile the beast by typing 'make': + +$ make +gcc -c -g -Wall -I/usr/X11R6/include -DDEBUG main.c -o main.o +gcc -c -g -Wall -I/usr/X11R6/include -DDEBUG events.c -o events.o +gcc -c -g -Wall -I/usr/X11R6/include -DDEBUG manage.c -o manage.o +gcc -c -g -Wall -I/usr/X11R6/include -DDEBUG list.c -o list.o +gcc -c -g -Wall -I/usr/X11R6/include -DDEBUG bar.c -o bar.o +gcc main.o events.o manage.o list.o bar.o -o ratpoison -g -Wall -I/usr/X11R6/include -L/usr/X11R6/lib -lX11 + + +if you want to install it, simply type 'make install' as a privileged user: + +# make install +cp ratpoison /usr/local/bin + +If you don't want ratpoison to install in /usr/local/bin, then edit +the Makefile. + +Using +----- + +See the info manual for more information. \ No newline at end of file -- cgit v1.2.3