20
You have to copy the /etc/xdg/autostart/org.gnome.Evolution-alarm-notify.desktop file to your home folder by
mkdir -p ~/.config/autostart/
cp /etc/xdg/autostart/org.gnome.Evolution-alarm-notify.desktop ~/.config/autostart/
sed -i "s/NoDisplay=true/NoDisplay=false/" ~/.config/autostart/org.gnome.Evolution-alarm-notify.desktop
and then disable its launch, either from gnome-session-properties (Startup Applications), or by adding a line with Hidden=true to the file. If you are using MATE, then use mate-session-properties instead of gnome-session-properties
Also disable its systemd user services:
systemctl --user mask evolution-addressbook-factory.service
systemctl --user mask evolution-calendar-factory.service
systemctl --user mask evolution-source-registry....
20
You have to copy the /etc/xdg/autostart/org.gnome.Evolution-alarm-notify.desktop file to your home folder by
mkdir -p ~/.config/autostart/
cp /etc/xdg/autostart/org.gnome.Evolution-alarm-notify.desktop ~/.config/autostart/
sed -i "s/NoDisplay=true/NoDisplay=false/" ~/.config/autostart/org.gnome.Evolution-alarm-notify.desktop
and then disable its launch, either from gnome-session-properties (Startup Applications), or by adding a line with Hidden=true to the file. If you are using MATE, then use mate-session-properties instead of gnome-session-properties
Also disable its systemd user services:
systemctl --user mask evolution-addressbook-factory.service
systemctl --user mask evolution-calendar-factory.service
systemctl --user mask evolution-source-registry.service
systemctl --user mask evolution-user-prompter.service
and then reboot.
6939 silver badges14 bronze badges
answered Feb 20, 2021 at 8:10
104k36 gold badges278 silver badges463 bronze badges
7