2008-02-28 12:36:17 +01:00
|
|
|
awesomerc(5)
|
2007-12-15 05:08:44 +01:00
|
|
|
===========
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
|
|
|
|
2008-05-26 15:25:40 +02:00
|
|
|
awesomerc - Configuration file for the awesome window manager
|
2007-12-15 05:08:44 +01:00
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2009-08-30 06:21:54 +02:00
|
|
|
*awesome* looks for a configuration file in this order:
|
2008-08-15 12:47:06 +02:00
|
|
|
|
|
|
|
* $XDG_CONFIG_HOME/awesome/rc.lua
|
|
|
|
* $HOME/.config/awesome/rc.lua
|
|
|
|
* XDG_CONFIG_DIRS/awesome/rc.lua
|
2008-01-08 16:33:22 +01:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2009-08-30 06:21:54 +02:00
|
|
|
The *rc.lua* file contains configuration information for *awesome*. It can
|
|
|
|
be used to configure the behavior and look of awesome in a variety of ways.
|
2008-11-17 20:36:00 +01:00
|
|
|
It can be assimilated as a Lua program/script run at startup by *awesome*.
|
2008-05-26 15:25:40 +02:00
|
|
|
Therefore, it should use the awesome Lua API described in the API section.
|
|
|
|
This file is read at startup.
|
2008-01-08 16:33:22 +01:00
|
|
|
|
2008-05-26 15:25:40 +02:00
|
|
|
AWESOME LUA API
|
|
|
|
---------------
|
2008-06-23 18:33:52 +02:00
|
|
|
Documentation for the Lua API can be found in the luadoc directory.
|
2007-12-24 09:49:50 +01:00
|
|
|
|
2008-05-30 13:00:52 +02:00
|
|
|
COLORS FORMAT
|
|
|
|
-------------
|
2009-08-30 06:21:54 +02:00
|
|
|
The color format in *awesome* is either a standard X color name
|
|
|
|
(blue, darkblue, lightred, etc) or a hexadecimal formatted color (#rrggbb
|
2008-08-15 12:47:06 +02:00
|
|
|
or #rrggbbaa).
|
2009-08-30 06:21:54 +02:00
|
|
|
By using the hexadecimal format, you can also specify an alpha channel:
|
2008-05-30 13:00:52 +02:00
|
|
|
that means that #00ff00 will draw pure green, but #00ff00aa will set the
|
|
|
|
alpha channel to `aa' and will blend the green with the color under it.
|
|
|
|
|
2008-06-12 22:04:52 +02:00
|
|
|
TEXT FORMAT
|
|
|
|
-----------
|
2009-08-30 06:21:54 +02:00
|
|
|
You can use Pango markup in a text string.
|
|
|
|
This allows formating the text rendered inside widgets.
|
2008-08-21 13:56:54 +02:00
|
|
|
Pango markup documentation can be found in the Pango documentation at
|
2008-07-09 10:43:23 +02:00
|
|
|
http://library.gnome.org/devel/pango/stable/PangoMarkupFormat.html.
|
|
|
|
|
2008-08-21 13:56:54 +02:00
|
|
|
A Pango markup example: <span weight="bold" foreground="#336699">...</span>.
|
2008-06-11 09:56:19 +02:00
|
|
|
|
2007-12-15 05:08:44 +01:00
|
|
|
SEE ALSO
|
|
|
|
--------
|
2008-05-20 15:39:47 +02:00
|
|
|
awesome(1) awesome-client(1)
|
2007-12-15 05:08:44 +01:00
|
|
|
|
|
|
|
AUTHORS
|
|
|
|
-------
|
2008-08-15 12:47:06 +02:00
|
|
|
Written by Julien Danjou <julien@danjou.info>.
|
2008-03-09 23:28:56 +01:00
|
|
|
|
2007-12-15 05:08:44 +01:00
|
|
|
WWW
|
|
|
|
---
|
2016-12-21 02:03:03 +01:00
|
|
|
https://awesomewm.org
|