Quantcast
Channel: Raspberry Pi Forums
Viewing all articles
Browse latest Browse all 3546

Raspberry Pi OS • HOWTO: Email Client Geary and Launches in Background on Startup (Raspberry Pi OS GNOME)

$
0
0
🗨️ Note: These instruction are written specifically for Raspberry Pi OS, not for Ubuntu.

I use Geary as my primary email client, which is built to work seamlessly within the GNOME desktop environment. One of its strengths is that it automatically integrates with GNOME Settings: Online Accounts. By simply adding an account in Online Accounts, Geary can immediately access and manage email without requiring additional configuration. This deep integration makes it incredibly user-friendly and efficient. It supports popular services like Gmail, Outlook, Hotmail, Live, Yahoo, and any provider using IMAP/SMTP.


Image
🗨️ Want to install GNOME on Raspberry Pi OS? See my guide here:
GUIDE: Install GNOME Ubuntu-like on Raspberry Pi OS Lite (NO SNAP)



If you use my command to configure the system, Geary will automatically start when you log into the GNOME desktop. This ensures you receive email notifications as pop-up alerts whenever a new email arrives, keeping you updated without needing to open the application manually. For me, this setup strikes the perfect balance between simplicity and functionality, offering everything I need without the complexity of heavier email clients.

To make Geary start automatically in the background, use the following command:

Code:

sudo apt install -y geary && \echo -e "[Desktop Entry]\nType=Application\nName=Geary Autostart\nIcon=org.gnome.Geary\nExec=geary --gapplication-service\nX-GNOME-Autostart-enabled=true" > ~/.config/autostart/Geary_Autostart.desktop && \chmod +x ~/.config/autostart/Geary_Autostart.desktop && gsettings set org.gnome.Geary run-in-background true
This will only work if you have set up an email account through GNOME Online Accounts.

If you no longer want Geary to run automatically in the background, you can disable it with this command:

Code:

gsettings reset org.gnome.Geary run-in-background && pkill -f geary && \rm -f ~/.config/autostart/Geary_Autostart.desktop

Statistics: Posted by Wobbo — Sun May 04, 2025 3:10 pm



Viewing all articles
Browse latest Browse all 3546

Trending Articles