Skip to content
awesome window manager
Branch: master
Clone or download
Elv13 keygrabber: Fix the key sequence recording. (#2758)
The origial implementation was broken and nobody noticed until now.

Fix #2757
Latest commit f03d547 Apr 25, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
build-utils Travis: apidoc: fix build URL (#2705) Feb 25, 2019
common luaclass: Allow Lua to listen to global signal connections. Apr 15, 2019
docs Merge pull request #2507 from Elv13/xmas_2k18_1 Apr 18, 2019
icons icons: remove invaders Sep 8, 2009
lib keygrabber: Fix the key sequence recording. (#2758) Apr 25, 2019
manpages manpages/awesome.1.de.txt: fix headings Jan 4, 2019
objects Make sure we always flush after xcb_ungrab_server() Feb 27, 2019
spec tests: Add capi.screen.connect_signal to the spec Apr 15, 2019
tests Slider new feature `bar_active_color` and examples Apr 24, 2019
themes themes/xresources/assets.lua: use raw=true with deprecation Oct 3, 2018
utils awesome-client: handle multiple args (#2551) Jan 10, 2019
.busted tests: busted: add config file, use --verbose by default (#2076) Oct 22, 2017
.editorconfig Add an EditorConfig file Dec 12, 2015
.gitignore luacheck: enable cache (#2004) Aug 20, 2017
.luacheckrc Move selection API under the "selection" global Feb 26, 2019
.luacov Travis: codecov: use -f with luacov output (#2563) Jan 10, 2019
.mergify.yml ci: mergify: update for Travis, remove Codacy (#2627) Jan 29, 2019
.travis.yml .travis.yml: Install libxcb-errors in one of the builds Mar 3, 2019
AutoOption.cmake CMake: Add "AUTO" state for WITH_DBUS and GENERATE_MANPAGES Feb 19, 2019
CMakeLists.txt Start a selection transfer object Feb 11, 2019
ISSUE_TEMPLATE.md Add an ISSUE_TEMPLATE.md file (#997) Jul 9, 2016
LICENSE chance license to GPLv2 Sep 12, 2007
Makefile Minor: typos, Makefile aesthetics (#2690) Feb 22, 2019
Packaging.cmake Packaging.cmake: cache CPACK_GENERATOR (#1924) Jul 20, 2017
README.md Add README.md symlink Feb 28, 2015
awesome-version-internal.h Add a vim modeline to all C source Dec 12, 2015
awesome.c Use xcb-errors library if it is available Mar 3, 2019
awesome.desktop Remove deprecated Encoding key from awesome.desktop (#1394) Jan 13, 2017
awesome.h remove encoding=utf-8 from modelines Sep 11, 2011
awesomeConfig.cmake Use xcb-errors library if it is available Mar 3, 2019
awesomerc.lua rc.lua: Use the new screen requests instead of connect_for_each_screen Apr 15, 2019
banning.c Fix recursive enterleave ignore (#1747) Apr 21, 2017
banning.h
color.c Merge pull request #2207 from psychon/alpha_borders Apr 22, 2018
color.h Correctly convert colors with alpha to a Lua string Mar 3, 2018
config.h Use xcb-errors library if it is available Mar 3, 2019
dbus.c Use signal_array_getbyname() where appropriate Jan 24, 2018
dbus.h remove encoding=utf-8 from modelines Sep 11, 2011
draw.c Add awesome.pixbuf_to_surface Jan 18, 2018
draw.h Add awesome.pixbuf_to_surface Jan 18, 2018
event.c Use xcb-errors library if it is available Mar 3, 2019
event.h XKB update: Use an idle source Feb 18, 2019
ewmh.c Set _NET_WM_DESKTOP for sticky windows specially (#2653) Feb 16, 2019
ewmh.h C code: save all instead of just one client icons Mar 7, 2017
globalconf.h Use xcb-errors library if it is available Mar 3, 2019
keygrabber.c keygrabber: Refactor to be an object instead of a function. Aug 6, 2018
keygrabber.h Clean up header includes Mar 30, 2014
luaa.c Merge pull request #2643 from psychon/selection_ownership Feb 26, 2019
luaa.h Migrate a bit away from luaL_register(). Feb 16, 2019
mouse.c Reduce code duplication with luaA_*_call_handler (#2321) Jul 25, 2018
mouse.h Revert "Support more than 5 mouse buttons" (FS#1082) Mar 29, 2013
mousegrabber.c Remove @Release @AWESOME_VERSION@ everywhere (#1157) Oct 9, 2016
mousegrabber.h Revert "Support more than 5 mouse buttons" (FS#1082) Mar 29, 2013
property.c Merge pull request #2643 from psychon/selection_ownership Feb 26, 2019
property.h Add support for motif wm hints Aug 3, 2018
root.c Make sure we always flush after xcb_ungrab_server() Feb 27, 2019
selection.c Deprecate selection() Feb 26, 2019
selection.h Move setup of selection() to selection.c Feb 16, 2019
spawn.c Minor: typos, Makefile aesthetics (#2690) Feb 22, 2019
spawn.h Handle SIGCHLD ourselves instead of through GLib Aug 21, 2018
stack.c doc: fix warnings from doxygen Feb 14, 2015
stack.h Clean up header includes Mar 30, 2014
strut.c geometry: Use the relevant rounding functions instead of integers Apr 18, 2016
strut.h remove encoding=utf-8 from modelines Sep 11, 2011
systray.c Make alpha work on window borders Mar 3, 2018
systray.h Remove unused argument to systray_request_handle() May 29, 2016
xkb.c XKB update: Use an idle source Feb 18, 2019
xkb.h XKB update: Use an idle source Feb 18, 2019
xrdb.c
xrdb.h Add a vim modeline to all C source Dec 12, 2015
xwindow.c xwindow_translate_for_gravity: Change instead of set argument Aug 17, 2018
xwindow.h Set WM_CLASS and WM_NAME on all our windows (#551) Nov 19, 2015

README.md

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

NOTE: Awesome uses cmake to build. In case you want to pass arguments to cmake, please use the CMAKE_ARGS environment variable. For instance:

CMAKE_ARGS="-DCMAKE_INSTALL_PREFIX=/opt/awesome" make

Installing current git master as a package receipts

Arch Linux AUR

sudo pacman -S --needed base-devel git
git clone https://aur.archlinux.org/awesome-git.git
cd awesome-git
makepkg -fsri

Debian-based

sudo apt build-dep awesome
git clone https://github.com/awesomewm/awesome
cd awesome
make package
sudo apt install *.deb

Build dependencies

Awesome has the following dependencies (besides a more-or-less standard POSIX environment):

Additionally, the following optional dependencies exist:

  • DBus for DBus integration and the awesome-client utility
  • asciidoctor for generating man pages
  • gzip for compressing man pages
  • ldoc >= 1.4.5 for generating the documentation
  • busted for running unit tests
  • luacheck for static code analysis
  • LuaCov for collecting code coverage information
  • libexecinfo on systems where libc does not provide backtrace_symbols() to generate slightly better backtraces on crashes
  • Xephyr or Xvfb for running integration tests
  • GTK+ >= 3.10 for ./themes/gtk/
  • xcb-errors for pretty-printing of X11 errors

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

Asking questions

IRC

You can join us in the #awesome channel on the OFTC IRC network.

IRC Webchat

Stack Overflow

You can ask questions on Stack Overflow.

Reddit

We also have a awesome subreddit where you can share your work and ask questions.

Reporting issues

Please report any issues you may find on our bugtracker.

Contributing code

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

License

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

You can’t perform that action at this time.