summary refs log tree commit diff stats
path: root/compiler/canonicalizer.nim
Commit message (Expand)AuthorAgeFilesLines
* implement sizeof and alignof operator (manually squashed #5664) (#9356)Timothee Cour2018-10-141-1/+1
* deprecated unary '<'Andreas Rumpf2017-10-291-3/+3
* some work to make 'opt' a first class typeAndreas Rumpf2017-09-241-1/+1
* removed tyArrayConstr completely from the compiler; introduced tyAlias instea...Araq2016-11-141-1/+1
* some attempts to make symbolfiles work againAraq2016-08-131-6/+12
* SpellcheckFederico Ceratto2016-02-291-1/+1
* added 'sig' feature; removed tfShared support in the compilerAndreas Rumpf2016-02-281-1/+0
* Fix a few deprecation warningsdef2016-01-251-2/+2
* compiler: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-66/+66
* compiler_ropes: ropeToStr -> $Jacek Sieka2015-04-011-7/+7
* Fix typosFederico Ceratto2015-02-151-2/+2
* Happy new year!Guillaume Gelin2015-01-061-1/+1
* Nimrod renamed to NimAraq2014-08-281-2/+2
* implements strongSpaces parsing modeAraq2014-03-071-3/+3
* fixes #937Araq2014-03-051-0/+7
* some progress on the new name manglerAraq2014-02-271-130/+251
* added canonizerAraq2014-02-251-0/+288
agic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
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


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.