1
0
Fork 0
mirror of https://github.com/yshui/picom.git synced 2025-11-06 22:54:14 -05:00
A lightweight compositor for X11
Find a file
Yuxuan Shui be577470d9
backend/gl/glx: fix assertion failure when glx context creation fails
Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
2025-11-01 13:29:14 +00:00
.circleci
.github github: update libconfig used for codeql 2025-06-22 05:28:02 +01:00
.well-known misc: add .well-known 2024-10-17 13:32:15 +01:00
assets
bin
data
dbus-examples
include api/backend: backend_blit_args.shader is now struct shader_info * 2025-08-23 04:08:21 +01:00
LICENSES
man man: Update minimum required OpenGL version 2025-10-30 01:04:15 +03:00
media Added 48x48px raster of initial Compton logo 2015-09-17 21:57:11 -04:00
meson
src backend/gl/glx: fix assertion failure when glx context creation fails 2025-11-01 13:29:14 +00:00
subprojects
tests
tools api/backend: bump backend version to 2.0 for v14 release 2025-08-18 04:06:23 +01:00
.clang-format
.clang-tidy clangd: silence math missing parentheses warning 2025-08-18 02:44:19 +01:00
.editorconfig
.gitignore gitignore: add subprojects/.wraplock 2025-10-29 19:31:59 +03:00
CHANGELOG.md
compton-default-fshader-win.glsl
compton-fake-transparency-fshader-win.glsl Feature: #183 custom window shader & #193 --no-fading-destroyed-argb 2014-05-16 15:18:17 +08:00
compton.desktop set .desktop files to NoDisplay=true 2020-12-14 14:54:33 +01:00
CONTRIBUTORS update contributors list 2025-10-31 17:51:48 +03:00
COPYING
desc.txt Misc: #49: Add CMake support 2012-10-03 13:34:54 +08:00
Doxyfile
flake.lock flake: update flake inputs 2025-08-14 18:29:03 +01:00
flake.nix flake: simplify llvm version management 2025-06-21 16:37:02 +01:00
History.md README: Move old historical info out of main README 2022-04-12 09:43:57 -04:00
LICENSE.spdx
meson.build
meson_options.txt core: remove xrescheck 2025-11-01 13:16:30 +03:00
package.nix flake: simplify llvm version management 2025-06-21 16:37:02 +01:00
picom-dbus.desktop
picom.desktop
picom.sample.conf
README.md readme: mention optional cmake and git dependencies 2025-08-18 16:03:16 +01:00

picom

circleci codecov chat on discord

picom is a compositor for X, and a fork of Compton.

This is a development branch, bugs to be expected

You can leave your feedback or thoughts in the discussion tab, or chat with other users on discord!

Change Log

See Releases

Build

Dependencies

Assuming you already have all the usual building tools installed (e.g. gcc, python, meson, ninja, etc.), you still need:

  • libx11
  • libx11-xcb
  • xproto
  • xcb
  • xcb-util
  • xcb-damage
  • xcb-xfixes
  • xcb-shape
  • xcb-renderutil
  • xcb-render
  • xcb-randr
  • xcb-composite
  • xcb-image
  • xcb-present
  • xcb-glx
  • pixman
  • libconfig (>= 1.7)
  • libdbus (optional, disable with the -Ddbus=false meson configure flag)
  • libGL, libEGL, libepoxy (optional, disable with the -Dopengl=false meson configure flag)
  • libpcre2 (optional, disable with the -Dregex=false meson configure flag)
  • libev
  • uthash

If libconfig >= 1.7 is not available on your system, meson will try to build it from git. In which case, you also need cmake, and git.

On Debian based distributions (e.g. Ubuntu), the needed packages are

libconfig-dev libdbus-1-dev libegl-dev libev-dev libgl-dev libepoxy-dev libpcre2-dev libpixman-1-dev libx11-xcb-dev libxcb1-dev libxcb-composite0-dev libxcb-damage0-dev libxcb-glx0-dev libxcb-image0-dev libxcb-present-dev libxcb-randr0-dev libxcb-render0-dev libxcb-render-util0-dev libxcb-shape0-dev libxcb-util-dev libxcb-xfixes0-dev meson ninja-build uthash-dev

On Fedora, the needed packages are

dbus-devel gcc git libconfig-devel libev-devel libX11-devel libX11-xcb libxcb-devel libGL-devel libEGL-devel libepoxy-devel meson pcre2-devel pixman-devel uthash-devel xcb-util-image-devel xcb-util-renderutil-devel xorg-x11-proto-devel xcb-util-devel

To build the documents, you need asciidoctor

To build

$ meson setup --buildtype=release build
$ ninja -C build

Built binary can be found in build/src

If you have libraries and/or headers installed at non-default location (e.g. under /usr/local/), you might need to tell meson about them, since meson doesn't look for dependencies there by default.

You can do that by setting the CPPFLAGS and LDFLAGS environment variables when running meson. Like this:

$ LDFLAGS="-L/path/to/libraries" CPPFLAGS="-I/path/to/headers" meson setup --buildtype=release build

As an example, on FreeBSD, you might have to run meson with:

$ LDFLAGS="-L/usr/local/lib" CPPFLAGS="-I/usr/local/include" meson setup --buildtype=release build
$ ninja -C build

To install

$ ninja -C build install

Default install prefix is /usr/local, you can change it with meson configure -Dprefix=<path> build

How to Contribute

All contributions are welcome!

New features you think should be included in picom, a fix for a bug you found - please open a PR!

You can take a look at the Issues.

Contributions to the documents and wiki are also appreciated.

Even if you don't want to add anything to picom, you are still helping by compiling and running this branch, and report any issue you can find.

Become a Collaborator

Becoming a collaborator of picom requires significant time commitment. You are expected to reply to issue reports, reviewing PRs, and sometimes fix bugs or implement new feature. You won't be able to push to the main branch directly, and all you code still has to go through code review.

If this sounds good to you, feel free to contact me.

Contributors

See CONTRIBUTORS

The README for the original Compton project can be found here.

Licensing

picom is free software, made available under the MIT and MPL-2.0 software licenses. See the individual source files for details.