2011-11-05 02:52:05 +08:00
|
|
|
# Compton
|
|
|
|
|
|
|
|
__Compton__ is a compositor for X, and a fork of __xcompmgr-dana__.
|
|
|
|
|
|
|
|
I was frustrated by the low amount of standalone lightweight compositors.
|
|
|
|
Compton was forked from Dana Jansens' fork of xcompmgr and refactored. I fixed
|
|
|
|
whatever bug I found, and added features I wanted. Things seem stable, but don't
|
|
|
|
quote me on it. I will most likely be actively working on this until I get the
|
|
|
|
features I want. This is also a learning experience for me. That is, I'm
|
|
|
|
partially doing this out of a desire to learn Xlib.
|
|
|
|
|
|
|
|
## Changes from xcompmgr:
|
|
|
|
|
|
|
|
* __inactive window transparency__ (specified with `-i`)
|
2011-11-06 11:33:50 +08:00
|
|
|
* __titlebar/frame transparency__ (specified with `-e`)
|
2011-11-07 09:29:23 +08:00
|
|
|
* menu transparency (thanks to Dana)
|
2011-11-05 02:52:05 +08:00
|
|
|
* shadows are now enabled for argb windows, e.g. terminals with transparency
|
|
|
|
* removed serverside shadows (and simple compositing) to clean the code,
|
|
|
|
the only option that remains is clientside shadows
|
|
|
|
|
2011-11-06 11:33:50 +08:00
|
|
|
The above features give compton a feature set similar to the xfce compositor.
|
|
|
|
|
|
|
|
Compton has only been tested with openbox so far, but frame transparency
|
|
|
|
should work with any window manager that properly sets `_NET_FRAME_EXTENTS`.
|
|
|
|
|
2011-11-05 02:52:05 +08:00
|
|
|
## Fixes from the original xcompmgr:
|
|
|
|
|
|
|
|
* fixed a segfault when opening certain window types
|
|
|
|
* fixed a memory leak caused by not freeing up shadows (from the freedesktop
|
|
|
|
repo)
|
|
|
|
|
|
|
|
## Building
|
|
|
|
|
2011-11-07 12:03:18 +08:00
|
|
|
The same dependencies as xcompmgr.
|
2011-11-05 02:52:05 +08:00
|
|
|
|
|
|
|
### Dependencies:
|
|
|
|
|
|
|
|
* libx11
|
|
|
|
* libxcomposite
|
|
|
|
* libxdamage
|
|
|
|
* libxfixes
|
|
|
|
* libxrender
|
2011-11-07 12:03:18 +08:00
|
|
|
* pkg-config
|
|
|
|
* make
|
2011-11-05 02:52:05 +08:00
|
|
|
|
|
|
|
To build, make sure you have the above dependencies:
|
|
|
|
|
|
|
|
``` bash
|
|
|
|
$ make
|
2011-11-07 08:20:45 +08:00
|
|
|
$ make install
|
2011-11-05 02:52:05 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
``` bash
|
2011-11-07 08:20:45 +08:00
|
|
|
$ compton -cC -t -5 -l -5 -r 5 -o 0.4 \
|
2011-11-06 11:33:50 +08:00
|
|
|
-fF -I 0.065 -O 0.065 -D 6 -m 0.8 -i 0.6 -e 0.6 &
|
2011-11-05 02:52:05 +08:00
|
|
|
|
2011-11-07 08:20:45 +08:00
|
|
|
$ compton -cC -t -5 -l -5 -r 5 -o 0.4 -i 0.6 -e 0.6 &
|
2011-11-05 02:52:05 +08:00
|
|
|
```
|
2011-11-07 12:03:18 +08:00
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
|
|
xcompmgr has gotten around. As far as I can tell, the lineage for this
|
|
|
|
particular tree is something like:
|
|
|
|
|
|
|
|
* Keith Packard (original author)
|
|
|
|
* Matthew Hawn
|
|
|
|
* ...
|
|
|
|
* Dana Jansens
|
|
|
|
* Myself
|
|
|
|
|
|
|
|
Not counting the tens of people who forked it in between.
|
|
|
|
|
|
|
|
See LICENSE for more info.
|