Find a file
2016-05-18 01:24:59 -04:00
build-tests
build-utils Travis: redirect/filter stderr for git-clone/git-push/curl (#911) 2016-05-16 18:54:19 +02:00
common xutil.h: Add defines for valid coordinates and sizes 2016-04-17 13:48:24 +02:00
docs wibox: Move the documentation to a shared file 2016-05-15 17:17:12 -04:00
icons
lib object: Add a dynamic property example 2016-05-18 01:23:53 -04:00
manpages
objects doc: for s, screen do -> for s in screen do 2016-05-15 23:44:09 -04:00
spec tests: Test gears.object optional features 2016-05-18 01:24:59 -04:00
tests object: Add a dynamic property example 2016-05-18 01:23:53 -04:00
themes xresources theme: Use a RecordingSurface for wallpaper 2016-04-30 09:36:50 +02:00
utils
.editorconfig
.gitignore
.luacheckrc
.luacov
.travis.yml Travis: Build Lua 5.3 with -DLUA_USE_APICHECK (#907) 2016-05-16 03:10:58 +02:00
awesome-version-internal.h
awesome.c Clean up static variables in event_handle 2016-04-09 15:44:54 +02:00
awesome.desktop
awesome.h
awesomeConfig.cmake doc: Add a system to share ldoc content across multiple files 2016-05-09 01:37:47 -04:00
awesomerc.lua awful.wibox: Rename to awful.wibar 2016-05-15 17:17:12 -04:00
banning.c
banning.h
CMakeLists.txt "make check": Support out-of-tree builds 2016-05-08 18:52:18 +02:00
color.c
color.h
config.h
dbus.c
dbus.h
draw.c
draw.h
event.c Fix mouse clicks on titlebars (#901) 2016-05-14 16:16:24 +02:00
event.h Stop restarting on RandR changes 2016-05-01 10:09:26 +02:00
ewmh.c Fix fallback for the window type 2016-05-14 14:10:27 +02:00
ewmh.h
globalconf.h Stop restarting on RandR changes 2016-05-01 10:09:26 +02:00
keygrabber.c
keygrabber.h
LICENSE
luaa.c Add range-checking to lots of arguments in the C code 2016-04-18 04:20:22 -04:00
luaa.h Fix integer overflow in overflow checking functions (#851) 2016-04-26 00:51:51 +02:00
Makefile
mouse.c doc: Add proper mouse documentation 2016-04-30 04:27:34 -04:00
mouse.h
mousegrabber.c doc: Add a missing '@' sign in mousegrabber documentation 2016-04-24 21:44:04 -04:00
mousegrabber.h
Packaging.cmake Packaging: Print some information about supported packages 2016-04-17 16:12:08 +02:00
property.c Fix fallback for the window type 2016-05-14 14:10:27 +02:00
property.h
README.md
root.c geometry: Use the relevant rounding functions instead of integers 2016-04-18 04:20:22 -04:00
selection.c
selection.h
spawn.c
spawn.h
stack.c
stack.h
strut.c geometry: Use the relevant rounding functions instead of integers 2016-04-18 04:20:22 -04:00
strut.h
systray.c geometry: Use the relevant rounding functions instead of integers 2016-04-18 04:20:22 -04:00
systray.h
xkb.c
xkb.h
xrdb.c
xrdb.h
xwindow.c
xwindow.h

Readme

About 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 either install via make install:

make install  # you might need root permissions

or by auto-generating a .deb or .rpm package, for easy removal later on:

make package

sudo dpkg -i awesome-x.y.z.deb
# or
sudo rpm -Uvh awesome-x.y.z.rpm

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, typically ~/.config/awesome/rc.lua.

An example configuration named awesomerc.lua.in is provided in the source.

Troubleshooting

On most systems any message printed by awesome (including warnings and errors) is written to ~/.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.

Debugging tips

You can call awesome with gdb like this:

DISPLAY=:2 gdb awesome

Then in gdb set any args and run it:

(gdb) set arg --replace
(gdb) run

Inside gdb you can use the following to print the current Lua stack traceback:

(gdb) print luaL_dostring(globalconf.L.real_L_dont_use_directly, "print(debug.traceback())")

Reporting issues

Please report any issues you may find on our bugtracker. You can submit pull requests on the github repository. Please read the contributing guide for any coding, documentation or patch guidelines.

Status

Build Status

Documentation

Online documentation is available at http://awesome.naquadah.org/doc/ for the stable branch and at http://awesomewm.github.io/apidoc/ for the master branch. It can be built using make ldoc.

License

The project is licensed under GNU General Publice License v2 or later. You can read it online at (v2 or v3).