New Package: picom-manager

This is an extra tool to manage Picom which has many default configurations and fallbacks to XRender if GLX fails.
This commit is contained in:
KF-Art 2022-11-24 13:50:13 -05:00
parent 4082970329
commit 51d6178a71
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,5 @@
[Desktop Entry]
Exec=picom-manager -t
Name=Compositor
Type=Application
Version=1.0

View file

@ -0,0 +1,22 @@
# Template file for 'picom-manager'
pkgname=picom-manager
version=2022.11.24
revision=1
hostmakedepends="git"
repository="cereus-extra"
short_desc="Custom tool to manage Picom behavior on Cereus Linux"
maintainer="KF-Art <kevinfigueroart@protonmail.com>"
license="GPL-3.0-or-later"
homepage="https://github.com/CereusLinuxProject/picom-manager"
changelog="${homepage}/commits/main"
do_fetch() {
git clone ${homepage} ${wrksrc}
}
do_install() {
find picom.conf.d -exec vinstall {} 0644 "etc/default/picom.conf.d" \;
vinstall ${FILESDIR}/${pkgname}.desktop 0644 etc/xdg/autostart
vbin picom-manager
vlicense LICENSE
}