about summary refs log tree commit diff stats
path: root/config.def.h
Commit message (Expand)AuthorAgeFilesLines
* Gottox' drawtext simplificationAnselm R Garbe2008-06-011-1/+1
* applied noviewprev.diff, fix.diff and unusedflags.diffAnselm R Garbe2008-06-011-1/+1
* removed Layout->updategeom, unnecessaryAnselm R Garbe2008-05-261-3/+3
* applied yiyus domax patch with slight modificationsAnselm R Garbe2008-05-261-36/+16
* s/int/uint/ in config.hAnselm R Garbe2008-05-221-38/+38
* setmfact argument was wrongAnselm R Garbe2008-05-221-2/+2
* applied Gottox bitmask + void *arg patchAnselm R Garbe2008-05-221-43/+44
* merged tile.c again into dwm.canselm@anselm12008-05-191-3/+1
* recent changes, introduced togglebar, changed some defines into variable decl...Anselm R Garbe2008-05-191-4/+9
* removed the <M> togglelayout callAnselm R Garbe2008-05-171-3/+2
* removed monocle for nowAnselm R Garbe2008-05-171-1/+0
* removed the exact focus mechanism of next/prev windowAnselm R Garbe2008-05-171-2/+0
* moved all tile()-related stuff into tile.c which is included from config.def....Anselm R Garbe2008-05-171-7/+7
* removed tileh, renamed tilev into tile again, removed counttiles, tilemasterAnselm R Garbe2008-05-171-1/+1
* removed Layout->isfloatingAnselm R Garbe2008-05-171-4/+4
* removed reapply() -- unnecessaryAnselm R Garbe2008-05-171-1/+0
* renamed setlayout into togglelayoutAnselm R Garbe2008-05-171-74/+73
* having monocle on Mod1-mAnselm R Garbe2008-05-111-0/+1
* removed Geom stuff, introduced updategeom() again, still view is somewhat bro...Anselm R Garbe2008-05-111-11/+1
* cleaned up config.def.hAnselm R Garbe2008-05-111-8/+2
* implemented exact focus next, if arg != NULL to focus{next,prev}Anselm R Garbe2008-05-111-0/+2
* applied JUCE patchAnselm R Garbe2008-05-061-0/+2
* applied yiyus fgeom patchAnselm R Garbe2008-04-271-1/+4
* geometry fix proposed by JukkaAnselm R Garbe2008-04-081-1/+1
* some cleanup changesAnselm R Garbe2008-04-031-2/+0
* uncommented dual layout in preparation of dwm 4.9anselm@anselm12008-04-021-2/+2
* applied Peter Hartlich's simplification patch of setmfact and his revival of ...anselm@anselm12008-04-021-1/+1
* revival of mfact and setmfactAnselm R Garbe2008-03-241-1/+4
* setlayout and setgeom are now togglable againAnselm R Garbe2008-03-241-14/+6
* geom indicator and layout indicator is only displayed if there are several ge...Anselm R Garbe2008-03-241-4/+1
* added sample of {grow,shrink}master to config.def.hAnselm R Garbe2008-03-171-0/+4
* geoms are now drawed in the status barAnselm R Garbe2008-03-171-4/+4
* removed the string-based setgeom approach, introduced a new Geom type instead...Anselm R Garbe2008-03-171-15/+13
* made the string-based setgeom workingAnselm R Garbe2008-03-151-2/+14
* some experimental state DO NOT USE THIS, I plan to have a nicer interface to ...Anselm R Garbe2008-03-141-3/+3
* some changes towards 4.9Anselm R Garbe2008-03-141-5/+8
* removed all defines of geoms, implemented setgeoms() instead, added config.an...Anselm R Garbe2008-03-131-34/+0
* changed config.def.hAnselm R Garbe2008-03-061-2/+2
* new stuffAnselm R Garbe2008-03-061-4/+6
* implemented setlayout in the way proposed on the ml, split tile() into two fu...Anselm R Garbe2008-03-061-17/+17
* changed config.def.hAnselm R Garbe2008-03-051-32/+9
* integrated the new -x -y -w toggles of dmenu into my setupAnselm R Garbe2008-03-051-1/+6
* implemented the stuff as I discussed on dwm@Anselm R Garbe2008-03-051-6/+55
* renamed maximise to monocle again.Anselm R Garbe2008-03-051-4/+2
* renamed MAXLEN into MAXTAGLEN (backward compliance)anselm@anselm12008-03-041-1/+1
* renamed monocle into maxmise, documented the keybindings in dwm(1)anselm@anselm12008-03-041-5/+7
* monocle goes mainstreamAnselm R Garbe2008-03-041-1/+3
* removed View cruft, now back to the rootsanselm@anselm12008-03-031-1/+0
* made tag names snappierAnselm R Garbe2008-02-291-1/+1
* removed initags -- we autoselect the first tag in each view insteadanselm@anselm12008-02-281-1/+0
>
           
           
                                                                  
 
            
 
                                                             

                                                        
                              
 
                                                        
 

                                                                
 

              
                                            
               
              
 
 

             

                                                              
dwm - dynamic window manager
============================
dwm is an extremely fast, small, and dynamic window manager for X.


Requirements
------------
In order to build dwm you need the Xlib header files.


Installation
------------
Edit config.mk to match your local setup (dwm is installed into
the /usr/local namespace by default).

Afterwards enter the following command to build and install dwm (if
necessary as root):

    make clean install

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.


Running dwm
-----------
Add the following line to your .xinitrc to start dwm using startx:

    exec dwm

In order to connect dwm to a specific display, make sure that
the DISPLAY environment variable is set correctly, e.g.:

    DISPLAY=foo.bar:1 exec dwm

(This will start dwm on display :1 of the host foo.bar.)

In order to display status info in the bar, you can do something
like this in your .xinitrc:

    while true
    do
        echo `date` `uptime | sed 's/.*,//'`
        sleep 1
    done | dwm


Configuration
-------------
The configuration of dwm is done by creating a custom config.h
and (re)compiling the source code.