summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorsabetts <sabetts>2000-08-26 05:45:40 +0000
committersabetts <sabetts>2000-08-26 05:45:40 +0000
commit0f8d4023cf08f2af393fcb3d8f0a04d9b73c1c4a (patch)
tree0d28e3208f52d25a7adfeb17bf0c187dcd78d966 /README
parent2a3c661689c276a3e441139f316689d6172a8ebb (diff)
downloadratpoison-0f8d4023cf08f2af393fcb3d8f0a04d9b73c1c4a.zip
initial checkin.
Diffstat (limited to 'README')
-rw-r--r--README47
1 files changed, 47 insertions, 0 deletions
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