Can it be done? I don't want to use Evolution's calendar... I want to keep using Thunderbird... I have to add some addons (like lightning) first right?
My goal is to have some calendar-like on thunderbird and replace the one of Evolution.
Can it be done? I don't want to use Evolution's calendar... I want to keep using Thunderbird... I have to add some addons (like lightning) first right?
My goal is to have some calendar-like on thunderbird and replace the one of Evolution.
OK, I found how to do this at How to change gnome-shell calendar default application
Just execute this in a terminal!!
gsettings set org.gnome.desktop.default-applications.office.calendar exec thunderbird
I have tested it and it works!! (it's not exaclty what I wanted but it's a start)
Go to System->Preferences->Preferred Applications.
On the first tab, change the Mail Reader settings.
UPDATE
If you don't have your email client in the drop down menu. You got to specify it manually in the Command field. For example, /usr/bin/thunderbird "%s"
UPDATE
It does not seem to actually solve the problem, although it should. Perhaps it's a bug. The second answer is actually working.
Thunderbird can be set as default calendar application by opening the file:
$HOME/.local/share/applications/mimeapps.list* in a text-editor such as GEdit and adding the line:
text/calendar=thunderbird.desktop
to the [Default Applications] section.
You may or may not need to add that same line to the [Added Associations] section too.
*To find and open this file, press the button combo Ctrlh in your /home folder, and look for .local, then find the file, right-click it and select "Open with...", or just double-click. After adding the line, press Ctrlq, answer YES when asked to save"
Works in OpenSuse/Gnome 3.8-3.10
Adding this line to the .local/share/applications/mimeapps.list worked in Arch with Gnome3.
[Default Applications] text/calendar=userapp-Thunderbird-NXJNAX.desktop
The easiest thing to do is the following:
cd /usr/bin
ln -s ./thunderbird evolution
That creates a symbolic link that mapps the application call "evolution" to "thunderbird".
Because the Gnome Calendar Extensions starts evolution -c calendar, the link will start thunderbird (which ignores the -c parameter). That should work everywhere.