Find a file
Tomi Belan 7575f64993 awful.autofocus: fix multiple screens autofocus
There might be multiple screens with visible windows. When closing the
last window of the current screen, try to focus them as well.

If no window has focus and yet some windows are visible (e.g. on another
screen), awesome misbehaves: it uses sloppy keyboard focus (as is the X11
default), but doesn't refresh their border colors or tasklists etc.

Signed-off-by: Tomi Belan <tomi.belan@gmail.com>
Signed-off-by: Julien Danjou <julien@danjou.info>
2009-11-16 15:14:55 +01:00
build-tests awesomeConfig: test for execinfo.h/backtrace() 2009-10-27 09:33:08 +01:00
build-utils readd proper C API documentation 2009-08-21 15:30:48 +02:00
common util: mark strhash with nonnull 2009-11-09 20:43:18 +01:00
icons icons: remove invaders 2009-09-08 13:29:25 +02:00
lib awful.autofocus: fix multiple screens autofocus 2009-11-16 15:14:55 +01:00
luadoc client: remove redraw() 2009-11-09 13:02:45 +01:00
manpages client: remove redraw() 2009-11-09 13:02:45 +01:00
objects Wibox: Check if a window exists before changing it 2009-11-16 15:12:46 +01:00
themes themes: added mouse finder and tooltips 2009-09-13 14:38:59 +02:00
utils Grammar/spelling corrections in comments and docs. 2009-08-31 10:39:36 +02:00
.gitignore
AUTHORS update Arnaud commit years 2009-08-24 11:13:59 +02:00
awesome-version-internal.h.in
awesome.c spawn: disable signalfd in libev 2009-11-14 09:55:29 +01:00
awesome.desktop
awesome.doxygen.in awesome.doxygen: doxygen configuration fixes. 2009-09-04 18:18:03 +02:00
awesome.h
awesomeConfig.cmake build: add -rdynamic to CFLAGS 2009-11-08 21:04:28 +01:00
awesomerc.lua.in client: remove redraw() 2009-11-09 13:02:45 +01:00
banning.c window: rename to xwindow 2009-10-20 20:42:05 +02:00
banning.h Re-add lazy banning 2009-09-28 14:04:59 +02:00
BUGS
CMakeLists.txt image: move into objects 2009-10-27 12:16:36 +01:00
color.c structs: rename to globalconf 2009-09-07 17:23:01 +02:00
color.h
config.h.in
dbus.c dbus: check that interface is not NULL (FS#667) 2009-11-09 20:49:37 +01:00
dbus.h
draw.c graph, progressbar: remove 2009-10-20 20:42:04 +02:00
draw.h image: move into objects 2009-10-27 12:16:36 +01:00
event.c wibox: make sure no garbage is painted to the screen 2009-11-08 10:32:43 +01:00
event.h wibox: move into objects 2009-10-20 20:42:05 +02:00
ewmh.c image: remove bad usage of globalconf.L 2009-11-10 10:48:23 +01:00
ewmh.h structs: rename to globalconf 2009-09-07 17:23:01 +02:00
font.c font: remove draw_ prefix in names 2009-10-27 12:16:22 +01:00
font.h font: remove draw_ prefix in names 2009-10-27 12:16:22 +01:00
globalconf.h globalconf: move conffile out 2009-11-10 10:48:58 +01:00
keygrabber.c key: move into objects 2009-10-20 20:42:05 +02:00
keygrabber.h
LICENSE
luaa.c luaa: dump backtrace on panic 2009-11-16 11:26:32 +01:00
luaa.h luaa: luaA_next is static 2009-11-09 21:28:37 +01:00
Makefile
mouse.c mouse: coords() get silent parameter 2009-11-06 11:05:07 +01:00
mouse.h
mousegrabber.c structs: rename to globalconf 2009-09-07 17:23:01 +02:00
mousegrabber.h
PATCHES PATCHES: add more rules 2009-09-02 10:36:13 +02:00
property.c globalconf: move prophs out 2009-11-09 21:28:30 +01:00
property.h structs: rename to globalconf 2009-09-07 17:23:01 +02:00
README Grammar/spelling corrections in comments and docs. 2009-08-31 10:39:36 +02:00
root.c window: rename to xwindow 2009-10-20 20:42:05 +02:00
screen.c titlebar: remove 2009-10-20 20:42:05 +02:00
screen.h Re-add lazy banning 2009-09-28 14:04:59 +02:00
selection.c Grammar/spelling corrections in comments and docs. 2009-08-31 10:39:36 +02:00
selection.h
spawn.c spawn: disable signalfd in libev 2009-11-14 09:55:29 +01:00
spawn.h spawn: remove useless proto 2009-11-16 11:26:00 +01:00
stack.c client: move into objects 2009-10-20 20:42:05 +02:00
stack.h structs: rename to globalconf 2009-09-07 17:23:01 +02:00
strut.c Fix doxygen generation warnings 2009-08-26 09:15:57 +02:00
strut.h strut: import strut_has_value() 2009-08-28 17:45:18 +02:00
STYLE STYLE: add prefix rule 2009-08-21 15:30:48 +02:00
systray.c window: rename to xwindow 2009-10-20 20:42:05 +02:00
systray.h
xwindow.c xwindow: check that window exists before setting opacity 2009-10-27 12:16:53 +01:00
xwindow.h xwindow: remove useless proto 2009-11-10 12:00:08 +01:00

awesome
=======
awesome is a highly configurable, next generation framework window manager for X.

Building and installation
-------------------------
After extracting the dist tarball, run:

  make

This will create a build directory, run cmake in it and build awesome.

After building is finished, you can install:

  make install # you might need root permissions

Running awesome
---------------
You can directly select awesome from your display manager. If not, you can
add the following line to your .xinitrc to start awesome using startx
or to .xsession to start awesome using your display manager:

    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.)

Configuration
-------------
The configuration of awesome is done by creating a $XDG_CONFIG_HOME/awesome/rc.lua file.
An example configuration named "awesomerc.lua.in" is provided in the source.

Troubleshooting
---------------
In most systems any message printed by awesome (including warnings and errors)
are written to $HOME/.xsession-errors.

If awesome does not start or the configuration file is not producing the desired
results the user should examine this file to gain insight into the problem.