No description
Find a file
Vincent Bernat ff9ce9621d Revert "compton: switch back to GLX backend"
This reverts commit ec4236f347. The
problem is still here.
2014-09-26 10:46:42 +02:00
bin compton: kill compton before calling xrandr 2014-09-26 10:06:00 +02:00
icons theme: don't rely on an external theme 2012-07-31 06:59:26 +02:00
lib terminal: don't use env variable to give a name to GTK terminal 2014-09-23 20:49:21 +02:00
rc Revert "compton: switch back to GLX backend" 2014-09-26 10:46:42 +02:00
xkb keys: transform Ctrl_L into a Escape key for X1 2014-06-14 19:48:44 +02:00
.gitignore xsettings: use a customized xsettingsd file 2014-09-17 10:16:42 +02:00
rc.lua terminal: switch to my own custom terminal 2014-09-25 12:01:16 +02:00
README.md terminal: switch to my own custom terminal 2014-09-25 12:01:16 +02:00
requirements.txt terminal: switch to evilvte 2014-09-20 01:20:17 +02:00
xsession Revert "lock: use xss-lock as provided by the system" 2014-09-17 22:23:09 +02:00
xsettingsd xsettings: use xsettingsd 2014-09-17 10:12:14 +02:00

Vincent Bernat's awesome configuration

This is my awesome configuration. It does not exactly feature the same keybindings as the default configuration. I don't recommend using it by you can pick anything you need in it.

This configuration is for awesome 3.4. I did not update to 3.5 yet.

I rely on machine hostname for some configuration parts (see rc/start.lua) for the most important part.

Here some of the things you may be interested in:

  • It is modular. I am using config as a table to pass different things between "modules".

  • In rc/xrun.lua, there is a xrun function which runs a program only if it is not already running. Instead of relying on tools like ps, it looks at the list of awesome clients and at the list of connected clients with xwininfo. Seems reliable.

  • I use a light transparency effect to tell if a window has the focus or not. It needs a composite manager.

  • I use a Python script bin/build-wallpaper to build the wallpaper to be displayed. There is a random selection and it works with multihead setup. It seems that classic tools are now able to change the wallpaper per screen and therefore, the script may seem a bit useless but I keep it.

  • I am using xss-lock with i3lock as a screensaver. It relies on standard X screensaver handling (and therefore is easy for application to disable) and also supports systemd inhibitors. Nothing fancy but I reuse the wallpaper built above. A notification is sent 10 seconds before starting.

  • In rc/apparance.lua, you may be interested by the way I configure GTK2 and GTK3 to have an unified look. It works and it does not need gnome-control-center.

  • I have rebuilt my own implementation of the Quake console in lib/quake.lua. The common ones didn't like when awesome was restarted.

  • I am using notifications when changing volume or brightness. I am also using notifications to change xrandr setup. This is pretty cool.

  • Keybindings are "autodocumented". See lib/keydoc.lua to see how this works. The list of key bindings can be accessed with Mod4 + F1.

  • On the debug front, I am quite happy with dbg() in rc/debug.lua.

Also, I am using my custom terminal (vbeterm). You need to change that in rc.lua. You can also find the sources on GitHub.

Things in lib/ are meant to be reused. I am using my own loadrc() function to load modules and therefore, I prefix my modules with vbe/. Before reusing a module, you may want to change this. Another way to load them is to use:

require("lib/quake")
local quake = package.loaded["vbe/quake"]