Wiki » History » Version 11
Arnaud Fontaine, 02/10/2010 05:19 PM
1 | 11 | Arnaud Fontaine | {{toc}} |
---|---|---|---|
2 | 1 | Arnaud Fontaine | |
3 | 11 | Arnaud Fontaine | _A compositing manager is a piece of software running along with the window manager and where each graphical program outputs into a separate and independent off-screen buffer that can be manipulated before being shown in order to enhance user experience. Unlike a compositing window manager, a compositing manager does not manage windows but simply implements visual effects such as windows translucency, drop shadows, fading..._ |
4 | 1 | Arnaud Fontaine | |
5 | 11 | Arnaud Fontaine | h1. Overview |
6 | 1 | Arnaud Fontaine | |
7 | 11 | Arnaud Fontaine | Unagi is a modular compositing manager which *aims to be efficient, lightweight and responsive*. It is currently written in C programming language and based on "XCB library":http://xcb.freedesktop.org client library. *Any existing window manager can be used* as long as it implements properly "EWMH":http://standards.freedesktop.org/wm-spec/wm-spec-latest.html and "ICCCM":http://tronche.com/gui/x/icccm/ specifications (or at least parts of it which are needed), which is generally the case nowadays. |
8 | 1 | Arnaud Fontaine | |
9 | 11 | Arnaud Fontaine | This project also *aims to provide a functional and stable software to improve window manager usability from an end-user point of view* (for instance windows translucency, application-switcher using live thumbnails instead of plain icons, "Exposé":http://en.wikipedia.org/wiki/Expos%C3%A9_%28Mac_OS_X%29...), therefore it does not intend at all to provide useless eye-candy effects. |
10 | 1 | Arnaud Fontaine | |
11 | 11 | Arnaud Fontaine | Unagi relies on a *modular architecture* as the code is split up in three parts: *core code*, *rendering backends* (only one backend relying on Render X extension has been implemented so far) and *effect plugins*. Thus, it provides a small and fast compositing manager from a codebase and footprint point of view, besides allowing to easily write other rendering backend which would work better on certain hardware. It also tries to take advantage of the asynchronous XCB model to be able to be used through a network. |
12 | 1 | Arnaud Fontaine | |
13 | 11 | Arnaud Fontaine | h1. Status |
14 | 10 | Arnaud Fontaine | |
15 | 11 | Arnaud Fontaine | * Core code, rendering and visual effects seem stable |
16 | * One rendering backend, based on Render X extension) has been implemented so far |
||
17 | * Two plugins have been implemented, namely _Opacity_ and _Exposé_ |
||
18 | |||
19 | h1. Shortcomings |
||
20 | |||
21 | 10 | Arnaud Fontaine | * Early stage of development |
22 | * Tested almost only with Awesome Window Manager |
||
23 | * Performance issues which will be addressed in the next release though |
||
24 | |||
25 | h1. Contribute |
||
26 | |||
27 | If you wish to contribute, you can find further information in document:"Master thesis: Writing an X compositing manager" and general information about "XCB":http://xcb.freedesktop.org in document:"Bachelor thesis: Porting a window manager from Xlib to XCB". You can also have a look at the documentation generated from the source code available "there":https://projects.mini-dweeb.org/embedded/unagi. |
||
28 | |||
29 | h1. Screenshots |
||
30 | 1 | Arnaud Fontaine | |
31 | Here are some screenshots of Unagi running with Awesome Window Manager. |
||
32 | 10 | Arnaud Fontaine | |
33 | 5 | Arnaud Fontaine | h2. Opacity plugin |
34 | 1 | Arnaud Fontaine | |
35 | 4 | Arnaud Fontaine | !opacity-enabled.png! |
36 | 1 | Arnaud Fontaine | |
37 | 10 | Arnaud Fontaine | h2. Expose plugin |
38 | 3 | Arnaud Fontaine | |
39 | 10 | Arnaud Fontaine | h3. Expose plugin before being enabled |
40 | 1 | Arnaud Fontaine | |
41 | 9 | Arnaud Fontaine | !expose-disabled.png! |
42 | 6 | Arnaud Fontaine | |
43 | 11 | Arnaud Fontaine | h3. Expose plugin when enabled |
44 | 6 | Arnaud Fontaine | |
45 | 9 | Arnaud Fontaine | !expose-enabled.png! |