all repos — dwm @ 5ed16faecb94b551ea00ea940e8d719211576de8

fork of suckless dynamic window manager

README (view raw)

 1gridwm
 2------
 3
 4gridwm is an extremly fast, small, and automatic X11 window manager.  It
 5arranges all windows in a grid.
 6
 7
 8Configuration
 9-------------
10You have to edit the source code for configuration, this WM is intended to
11provide sane defaults, if something doesn't fits your needs, edit config.h and
12maybe key.c. To change the status output edit that status variable definition
13in wm.c.
14
15
16Requirements
17------------
18In order to build gridwm you need the Xlib header files.
19
20
21Installation
22------------
23Edit config.mk to match your local setup. gridwm is installed into
24the /usr/local namespace by default.
25
26Afterwards enter the following command to build and install gridwm (if
27necessary as root):
28
29    make clean install
30
31
32Running gridwm
33--------------
34Add the following line to your .xinitrc to start gridwm using startx:
35
36    exec gridwm
37
38In order to connect gridwm to a specific display, make sure that
39the DISPLAY environment variable is set correctly, e.g.:
40
41    DISPLAY=foo.bar:1 exec gridwm
42
43This will start gridwm on display :1 of the host foo.bar.
44
45
46Configuration
47-------------
48The configuration of gridwm is done by customizing the config.h source file. To
49customize the key bindings edit key.c. To change the status output, edit the
50status command definition in wm.c.
51