2006-07-13 10:03:56 +02:00
|
|
|
dwm - dynamic window manager
|
|
|
|
----------------------------
|
2006-08-01 12:32:33 +02:00
|
|
|
dwm is an extremely fast, small, and dynamic X11 window manager.
|
2006-07-11 18:59:09 +02:00
|
|
|
|
|
|
|
|
2006-07-10 16:38:18 +02:00
|
|
|
Requirements
|
|
|
|
------------
|
2006-07-13 09:32:22 +02:00
|
|
|
In order to build dwm you need the Xlib header files.
|
2006-07-10 16:38:18 +02:00
|
|
|
|
|
|
|
|
|
|
|
Installation
|
|
|
|
------------
|
2006-08-01 12:32:33 +02:00
|
|
|
Edit config.mk to match your local setup (dwm is installed into
|
|
|
|
the /usr/local namespace by default).
|
2006-07-10 16:38:18 +02:00
|
|
|
|
2006-07-13 09:32:22 +02:00
|
|
|
Afterwards enter the following command to build and install dwm (if
|
2006-07-10 16:38:18 +02:00
|
|
|
necessary as root):
|
|
|
|
|
|
|
|
make clean install
|
|
|
|
|
2006-08-01 13:59:13 +02:00
|
|
|
If you want to use a customized config.h, you can use the following
|
|
|
|
command for installing dwm:
|
|
|
|
|
|
|
|
make CONFIG=<your-config>.h clean install
|
|
|
|
|
2006-07-10 16:38:18 +02:00
|
|
|
|
2006-07-13 09:32:22 +02:00
|
|
|
Running dwm
|
2006-07-13 10:03:56 +02:00
|
|
|
-----------
|
2006-07-13 09:32:22 +02:00
|
|
|
Add the following line to your .xinitrc to start dwm using startx:
|
2006-07-10 16:38:18 +02:00
|
|
|
|
2006-07-13 09:32:22 +02:00
|
|
|
exec dwm
|
2006-07-10 16:38:18 +02:00
|
|
|
|
2006-07-13 09:32:22 +02:00
|
|
|
In order to connect dwm to a specific display, make sure that
|
2006-07-10 16:38:18 +02:00
|
|
|
the DISPLAY environment variable is set correctly, e.g.:
|
|
|
|
|
2006-07-13 09:32:22 +02:00
|
|
|
DISPLAY=foo.bar:1 exec dwm
|
2006-07-10 16:38:18 +02:00
|
|
|
|
2006-08-01 16:29:25 +02:00
|
|
|
(This will start dwm on display :1 of the host foo.bar.)
|
2006-07-10 16:38:18 +02:00
|
|
|
|
2006-08-01 12:32:33 +02:00
|
|
|
In order to display status info in the bar, you can do something
|
|
|
|
like this in your .xinitrc:
|
2006-07-21 09:59:11 +02:00
|
|
|
|
|
|
|
while true
|
|
|
|
do
|
|
|
|
echo `date` `uptime | sed 's/.*://; s/,//g'`
|
2006-08-01 12:32:33 +02:00
|
|
|
sleep 1
|
2006-07-21 11:48:28 +02:00
|
|
|
done | dwm
|
2006-07-21 09:59:11 +02:00
|
|
|
|
2006-08-01 12:32:33 +02:00
|
|
|
|
2006-07-10 16:38:18 +02:00
|
|
|
Configuration
|
|
|
|
-------------
|
2006-08-01 13:59:13 +02:00
|
|
|
The configuration of dwm is done by editing config.h.
|