Re: Compton (X Compositor) crashed too many times. Its autorestart has been disabled
Reply #4 –
Looking at the relevant parts of the picom PKGBUILD:
backup=(etc/xdg/picom.conf)
# The config that comes with picom
install -Dm644 $pkgname/picom.sample.conf "$pkgdir/etc/xdg/picom.conf"
install -Dm644 $pkgname/picom.sample.conf "$pkgdir/usr/share/doc/picom/picom.conf.example"
it seems /etc/xdg/picom.conf is intended to be the system-wide configuration file, the "backup" field means new versions won't overwrite user modified ones, but rather be added alongside with a .pacnew extension. But presumably it's not getting read for some reason so you have to copy the file to your homedir instead, and that's probably what should be fixed - whether that means picom isn't looking in the right place or the PKGBUILD is putting the file in the wrong place I don't know as I only took a quick look at the PKGBUILD and not the picom source code.