87 lines
2.1 KiB
Plaintext
87 lines
2.1 KiB
Plaintext
awesomerc(5)
|
|
===========
|
|
|
|
NAME
|
|
----
|
|
|
|
awesomerc - Configuration file for the awesome window manager
|
|
|
|
SYNOPSIS
|
|
--------
|
|
None.
|
|
|
|
DESCRIPTION
|
|
-----------
|
|
The *awesomerc* file contains configuration informations for *awesome*. It can
|
|
be used to configure the behaviour and look of awesome in a variety of ways.
|
|
It can be assimilated as a Lua program/script run at startup by awesome.
|
|
Therefore, it should use the awesome Lua API described in the API section.
|
|
This file is read at startup.
|
|
|
|
AWESOME LUA API
|
|
---------------
|
|
|
|
Documentation for the Lua API can be found in the luadoc directory.
|
|
|
|
COLORS FORMAT
|
|
-------------
|
|
Colors format in *awesome* are either standard X color names
|
|
(blue, darkblue, lightred, etc) or hexadecimal formatted colors (#rrggbb).
|
|
By using hexadecimal format, you can also specifies an alpha channel:
|
|
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.
|
|
|
|
TEXT FORMAT
|
|
-----------
|
|
You can use and mix pango-markup and awesome-markup in text string.
|
|
Pango markup documentation can be found in the pango documentation at
|
|
http://library.gnome.org/devel/pango/stable/PangoMarkupFormat.html.
|
|
|
|
List of awesome markup and their attribute:
|
|
|
|
* bg
|
|
- color: background color
|
|
- image: background image
|
|
- align: background image alignment
|
|
- resize: resize background image to text size
|
|
* border
|
|
- color: border color
|
|
- width: border width
|
|
* margin
|
|
- left: left margin in pixel
|
|
- right: right margin in pixel
|
|
* text
|
|
- align: text alignment
|
|
- shadow: shadow color
|
|
- shadow_offset: shadow color offset in pixel
|
|
|
|
|
|
A pango-markup example: <span weight="bold" foreground="#336699">...</span>.
|
|
An awesome-markup example: <text align="right"/>.
|
|
|
|
WIDGETS
|
|
-------
|
|
The current list of available widget is:
|
|
|
|
- graph
|
|
- progressbar
|
|
- taglist
|
|
- tasklist
|
|
- textbox
|
|
- systray
|
|
|
|
Each widget as its own set of properties, described below, that can bet modified with the set()
|
|
method.
|
|
|
|
SEE ALSO
|
|
--------
|
|
awesome(1) awesome-client(1)
|
|
|
|
AUTHORS
|
|
-------
|
|
This man page was written by Julien Danjou <julien@danjou.info>.
|
|
|
|
WWW
|
|
---
|
|
http://awesome.naquadah.org
|