[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-6597":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":16,"stars7d":17,"stars30d":18,"stars90d":16,"forks30d":16,"starsTrendScore":19,"compositeScore":20,"rankGlobal":10,"rankLanguage":10,"license":21,"archived":22,"fork":22,"defaultBranch":23,"hasWiki":24,"hasPages":24,"topics":25,"createdAt":10,"pushedAt":10,"updatedAt":33,"readmeContent":34,"aiSummary":35,"trendingCount":16,"starSnapshotCount":16,"syncStatus":19,"lastSyncTime":36,"discoverSource":37},6597,"picom","yshui\u002Fpicom","yshui","A lightweight compositor for X11 with animation support","https:\u002F\u002Fpicom.app\u002F",null,"C",4739,624,45,258,0,4,26,2,30.39,"Other",false,"next",true,[26,27,28,29,30,31,32],"compositor","compton","linux","x11","xcb","xcompmgr","xorg","2026-06-12 02:01:27","picom\n=====\n\n[![circleci](https:\u002F\u002Fcircleci.com\u002Fgh\u002Fyshui\u002Fpicom.svg?style=shield)](https:\u002F\u002Fcircleci.com\u002Fgh\u002Fyshui\u002Fpicom)\n[![codecov](https:\u002F\u002Fcodecov.io\u002Fgh\u002Fyshui\u002Fpicom\u002Fbranch\u002Fnext\u002Fgraph\u002Fbadge.svg?token=NRSegi0Gze)](https:\u002F\u002Fcodecov.io\u002Fgh\u002Fyshui\u002Fpicom)\n[![chat on discord](https:\u002F\u002Fimg.shields.io\u002Fdiscord\u002F1106224720833159198?logo=discord)](https:\u002F\u002Fdiscord.gg\u002FSY5JJzPgME)\n\n__picom__ is a compositor for X, and a [fork of Compton](History.md).\n\n**This is a development branch, bugs to be expected**\n\nYou can leave your feedback or thoughts in the [discussion tab](https:\u002F\u002Fgithub.com\u002Fyshui\u002Fpicom\u002Fdiscussions), or chat with other users on [discord](https:\u002F\u002Fdiscord.gg\u002FSY5JJzPgME)!\n\n## Change Log\n\nSee [Releases](https:\u002F\u002Fgithub.com\u002Fyshui\u002Fpicom\u002Freleases)\n\n## Build\n\n### Dependencies\n\nAssuming you already have all the usual building tools installed (e.g. gcc, python, meson, ninja, etc.), you still need:\n\n* libx11\n* libx11-xcb\n* xproto\n* xcb\n* xcb-util\n* xcb-damage\n* xcb-xfixes\n* xcb-shape\n* xcb-renderutil\n* xcb-render\n* xcb-randr\n* xcb-composite\n* xcb-image\n* xcb-present\n* xcb-glx\n* pixman\n* libconfig (>= 1.7)\n* libdbus (optional, disable with the `-Ddbus=false` meson configure flag)\n* libGL, libEGL, libepoxy (optional, disable with the `-Dopengl=false` meson configure flag)\n* libpcre2 (optional, disable with the `-Dregex=false` meson configure flag)\n* libev\n* uthash\n\nIf 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`.\n\nOn Debian based distributions (e.g. Ubuntu), the needed packages are\n\n```\nlibconfig-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\n```\n\nOn Fedora, the needed packages are\n\n```\ndbus-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\n```\n\nTo build the documents, you need `asciidoctor`\n\n### To build\n\n```bash\n$ meson setup --buildtype=release build\n$ ninja -C build\n```\n\nBuilt binary can be found in `build\u002Fsrc`\n\nIf you have libraries and\u002For headers installed at non-default location (e.g. under `\u002Fusr\u002Flocal\u002F`), you might need to tell meson about them, since meson doesn't look for dependencies there by default.\n\nYou can do that by setting the `CPPFLAGS` and `LDFLAGS` environment variables when running `meson`. Like this:\n\n```bash\n$ LDFLAGS=\"-L\u002Fpath\u002Fto\u002Flibraries\" CPPFLAGS=\"-I\u002Fpath\u002Fto\u002Fheaders\" meson setup --buildtype=release build\n```\n\nAs an example, on FreeBSD, you might have to run meson with:\n```bash\n$ LDFLAGS=\"-L\u002Fusr\u002Flocal\u002Flib\" CPPFLAGS=\"-I\u002Fusr\u002Flocal\u002Finclude\" meson setup --buildtype=release build\n$ ninja -C build\n```\n\n### To install\n\n``` bash\n$ ninja -C build install\n```\n\nDefault install prefix is `\u002Fusr\u002Flocal`, you can change it with `meson configure -Dprefix=\u003Cpath> build`\n\n## How to Contribute\n\nAll contributions are welcome!\n\nNew features you think should be included in picom, a fix for a bug you found - please open a PR!\n\nYou can take a look at the [Issues](https:\u002F\u002Fgithub.com\u002Fyshui\u002Fpicom\u002Fissues).\n\nContributions to the documents and wiki are also appreciated.\n\nEven 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.\n\n### Become a Collaborator\n\nBecoming 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.\n\nIf this sounds good to you, feel free to contact me.\n\n## Contributors\n\nSee [CONTRIBUTORS](CONTRIBUTORS)\n\nThe README for the [original Compton project](https:\u002F\u002Fgithub.com\u002Fchjj\u002Fcompton\u002F) can be found [here](History.md#Compton).\n\n## Licensing\n\npicom is free software, made available under the [MIT](LICENSES\u002FMIT) and [MPL-2.0](LICENSES\u002FMPL-2.0) software\nlicenses. See the individual source files for details.\n","picom 是一个轻量级的 X11 合成器，支持动画效果。它基于 C 语言编写，是 Compton 的一个分支，具备高效的窗口管理与渲染能力，能够显著提升 X11 桌面环境下的视觉体验。项目通过利用 XCB 和 libconfig 等库实现了对多种图形特效的支持，并且允许用户自定义配置以满足个性化需求。适用于需要增强 Linux 桌面美观度或优化显示性能的场景，尤其适合那些追求高效且功能丰富的桌面环境的开发者和高级用户。","2026-06-11 03:07:48","top_language"]