2006-07-13 03:03:56 -05:00
|
|
|
dwm - dynamic window manager
|
2006-09-26 07:32:02 -05:00
|
|
|
============================
|
2006-08-21 00:31:15 -05:00
|
|
|
dwm is an extremely fast, small, and dynamic window manager for X.
|
2006-07-11 11:59:09 -05:00
|
|
|
|
|
|
|
|
2006-07-10 09:38:18 -05:00
|
|
|
Requirements
|
|
|
|
------------
|
2006-07-13 02:32:22 -05:00
|
|
|
In order to build dwm you need the Xlib header files.
|
2006-07-10 09:38:18 -05:00
|
|
|
|
|
|
|
|
|
|
|
Installation
|
|
|
|
------------
|
2006-08-01 05:32:33 -05:00
|
|
|
Edit config.mk to match your local setup (dwm is installed into
|
|
|
|
the /usr/local namespace by default).
|
2006-07-10 09:38:18 -05:00
|
|
|
|
2006-08-02 10:49:21 -05:00
|
|
|
Afterwards enter the following command to build and install dwm (if
|
2006-07-10 09:38:18 -05:00
|
|
|
necessary as root):
|
|
|
|
|
|
|
|
make clean install
|
|
|
|
|
2007-10-01 07:40:53 -05:00
|
|
|
If you are going to use the default bluegray color scheme it is highly
|
|
|
|
recommended to also install the bluegray files shipped in the dextra package.
|
|
|
|
|
2006-07-10 09:38:18 -05:00
|
|
|
|
2006-07-13 02:32:22 -05:00
|
|
|
Running dwm
|
2006-07-13 03:03:56 -05:00
|
|
|
-----------
|
2006-07-13 02:32:22 -05:00
|
|
|
Add the following line to your .xinitrc to start dwm using startx:
|
2006-07-10 09:38:18 -05:00
|
|
|
|
2006-07-13 02:32:22 -05:00
|
|
|
exec dwm
|
2006-07-10 09:38:18 -05:00
|
|
|
|
2006-07-13 02:32:22 -05:00
|
|
|
In order to connect dwm to a specific display, make sure that
|
2006-07-10 09:38:18 -05:00
|
|
|
the DISPLAY environment variable is set correctly, e.g.:
|
|
|
|
|
2006-07-13 02:32:22 -05:00
|
|
|
DISPLAY=foo.bar:1 exec dwm
|
2006-07-10 09:38:18 -05:00
|
|
|
|
2006-08-01 09:29:25 -05:00
|
|
|
(This will start dwm on display :1 of the host foo.bar.)
|
2006-07-10 09:38:18 -05:00
|
|
|
|
2006-08-01 05:32:33 -05:00
|
|
|
In order to display status info in the bar, you can do something
|
|
|
|
like this in your .xinitrc:
|
2006-07-21 02:59:11 -05:00
|
|
|
|
2011-06-13 23:51:21 -05:00
|
|
|
while xsetroot -name "`date` `uptime | sed 's/.*,//'`"
|
2006-07-21 02:59:11 -05:00
|
|
|
do
|
2011-07-20 13:56:10 -05:00
|
|
|
sleep 1
|
2008-12-13 14:20:26 -06:00
|
|
|
done &
|
2011-04-27 10:55:18 -05:00
|
|
|
exec dwm
|
2006-07-21 02:59:11 -05:00
|
|
|
|
2006-08-01 05:32:33 -05:00
|
|
|
|
2006-07-10 09:38:18 -05:00
|
|
|
Configuration
|
|
|
|
-------------
|
2006-08-03 03:58:29 -05:00
|
|
|
The configuration of dwm is done by creating a custom config.h
|
|
|
|
and (re)compiling the source code.
|