From 211312ceb21413ee1d3eed15ff4f619809739b13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20Grondek?= Date: Wed, 20 Sep 2023 23:41:30 +0200 Subject: [PATCH] Add thunderbird to autostart --- .xsessionrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.xsessionrc b/.xsessionrc index 5afde3a..9d45c37 100755 --- a/.xsessionrc +++ b/.xsessionrc @@ -34,6 +34,11 @@ function start_desktop_applications() { nextcloud --background & fi + # Thunderbird email client + if command -v thunderbird &> /dev/null ; then + thunderbird & + fi + # Blue light filter app if command -v redshift &> /dev/null ; then redshift -c ${HOME}/.config/redshift.conf &