Go to file
Julien Danjou 03e1b35d44 cosmetic 2007-10-12 13:19:32 +02:00
layouts remove display as arg of layouts 2007-10-11 23:35:45 +02:00
.gitignore add .gitignore for *.o and awesome binary 2007-10-02 18:45:59 +02:00
AUTHORS cosmetic: remove lines with empty spaces at end 2007-10-03 17:26:14 +02:00
LICENSE chance license to GPLv2 2007-09-12 14:29:51 +02:00
Makefile add common.h to dist target 2007-09-26 11:28:16 +02:00
README add cairo as requirement 2007-10-10 19:59:52 +02:00
awesome.1 update manpage 2007-09-18 23:22:39 +02:00
awesome.c cosmetic 2007-10-12 13:19:32 +02:00
awesome.doxygen set version to devel 2007-09-18 23:30:10 +02:00
awesome.h cosmetic: remove lines with empty spaces at end 2007-10-03 17:26:14 +02:00
awesomerc change escape to the right name 2007-10-10 23:00:59 +02:00
client.c remove snext from Client struct 2007-10-12 11:43:07 +02:00
client.h clients list is no more global 2007-10-11 21:50:32 +02:00
common.h remove display as arg of layouts 2007-10-11 23:35:45 +02:00
config.c move #define of config file name in config.c 2007-10-12 13:09:59 +02:00
config.h move #define of config file name in config.c 2007-10-12 13:09:59 +02:00
config.mk use Cairo for rendering square instead of Xlib 2007-10-10 19:59:14 +02:00
draw.c better compute for empty circle size 2007-10-11 17:09:38 +02:00
draw.h add drawcircle() function and use it for floating/max windows instead of drawrectangle 2007-10-11 17:06:55 +02:00
event.c new windows will be assigned to the current screen 2007-10-12 10:49:03 +02:00
event.h cosmetic: remove lines with empty spaces at end 2007-10-03 17:26:14 +02:00
layout.c use p_delete instead of XFree for our own pointers 2007-10-11 23:44:35 +02:00
layout.h bugfix: only catch first click to raise if we're floating 2007-10-11 11:33:40 +02:00
screen.c use p_delete instead of XFree for our own pointers 2007-10-11 23:44:35 +02:00
screen.h cosmetic: remove lines with empty spaces at end 2007-10-03 17:26:14 +02:00
statusbar.c use p_delete instead of XFree for our own pointers 2007-10-11 23:44:35 +02:00
statusbar.h set statusbar->height in initstatusbar() 2007-10-11 18:43:42 +02:00
tag.c remove Display as param for uicb 2007-10-11 23:32:29 +02:00
tag.h cosmetic: remove lines with empty spaces at end 2007-10-03 17:26:14 +02:00
util.c remove Display as param for uicb 2007-10-11 23:32:29 +02:00
util.h cosmetic: remove lines with empty spaces at end 2007-10-03 17:26:14 +02:00

README

awesome
=======
awesome is an extremely fast, small, and dynamic window manager for X.
It's based on dwm.

Requirements
------------
In order to build awesome you need the Xlib header files, libconfuse and cairo.

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

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

    make install

Running awesome
-----------
Add the following line to your .xinitrc to start awesome using startx
or to .xsession to start awesome using gdm/kdm/xdm...:

    exec awesome

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

    DISPLAY=foo.bar:1 exec awesome

(This will start awesome 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 | awesome


Configuration
-------------
The configuration of awesome is done by creating a ~/.awesomerc file.
An example is provided in the sources.