Re: Plasma notifications overidden by xfce daemon.
Reply #1 –
By looking in the package xfce4-notifyd I can see it installs
/etc/xdg/autostart/xfce4-notifyd
/etc/xdg/autostart is the location for system wide autostart.
So if you want to prevent that you need to remove this file.
You then want to have an autostart running
exec /usr/lib/xfce4/notifyd/xfce4-notifyd
In the relevant users autostart.
You could probably just use the file /etc/xdg/autostart/xfce4-notifyd in ~/.config/autostart
Of marginal interest is /etc/xdg/autostart/xfce4-notifyd contain systemd cruft
Exec=sh -c "systemctl --user start xfce4-notifyd.service 2>/dev/null || exec /usr/lib/xfce4/notifyd/xfce4-notifyd"
So it tries to start a systemd user service and when that fails it runs /usr/lib/xfce4/notifyd/xfce4-notifyd
The problem you will have is anytime the package xfce4-notifyd is updated the file /etc/xdg/autostart/xfce4-notifyd will need deleting again.
Other than the package being changed not to install /etc/xdg/autostart/xfce4-notifyd another option is to add it to to /etc/pacman.conf 'IgnorePkg'. You'll get a warning when it gets ignored. Then just update it specifically and delete the file straight after