author | Anselm R. Garbe <garbeam@wmii.de> |
Mon, 17 Jul 2006 10:00:55 +0200 | |
changeset 85 | 0a6472e22039 |
parent 42 | 040a7074d23c |
child 87 | e8a23f20097e |
permissions | -rw-r--r-- |
37 | 1 |
dwm - dynamic window manager |
2 |
---------------------------- |
|
0 | 3 |
|
34 | 4 |
dwm is an extremly fast, small, and dynamic X11 window manager. |
17 | 5 |
|
6 |
||
0 | 7 |
Requirements |
8 |
------------ |
|
34 | 9 |
In order to build dwm you need the Xlib header files. |
0 | 10 |
|
11 |
||
12 |
Installation |
|
13 |
------------ |
|
34 | 14 |
Edit config.mk to match your local setup. dwm is installed into |
0 | 15 |
the /usr/local namespace by default. |
16 |
||
34 | 17 |
Afterwards enter the following command to build and install dwm (if |
0 | 18 |
necessary as root): |
19 |
||
20 |
make clean install |
|
21 |
||
22 |
||
34 | 23 |
Running dwm |
37 | 24 |
----------- |
34 | 25 |
Add the following line to your .xinitrc to start dwm using startx: |
0 | 26 |
|
34 | 27 |
exec dwm |
0 | 28 |
|
34 | 29 |
In order to connect dwm to a specific display, make sure that |
0 | 30 |
the DISPLAY environment variable is set correctly, e.g.: |
31 |
||
34 | 32 |
DISPLAY=foo.bar:1 exec dwm |
0 | 33 |
|
34 | 34 |
This will start dwm on display :1 of the host foo.bar. |
0 | 35 |
|
36 |
||
37 |
Configuration |
|
38 |
------------- |
|
34 | 39 |
The configuration of dwm is done by customizing the wm.h source file. To |
42
040a7074d23c
added dev.c instead of kb.c
Anselm R. Garbe <garbeam@wmii.de>
parents:
37
diff
changeset
|
40 |
customize the key bindings edit dev.c. |