3

SeaFile Client automatically starts in Windows but not is Ubuntu How to add seafile entry into startup application so that it always starts automatically?

4 Answers4

2

You can also use GNOME Tweaks. You can install it with:

sudo apt install gnome-tweak-tool

Tweaks has a Startup Applications menu entry, where you can search for installed applications and add them to the list of startup applications.

IMG of Tweaks Application

la99er
  • 21
  • 1
2

To start Seafile when you login to KDE: Launch autostart

Select 'desktop file' then 'add program' on right.

Type 'seafile-applet' in the search box and press OK.

Press OK to confirm the addition

1

I am using Gnome desktop and the launch via the seafile destop file would not work. What worked for me: I opened the seafile.desktop (/usr/share/applications) file in an editor and checked out the exec line (seafile-applet). I tested to start seafile with typing 'seafile-applet' in the terminal, which worked fine. I then added this line in the command field of the dialog of the startup application. So basically very similar to the KDE version as described above.

user522051
  • 11
  • 1
1

In Ubuntu, a symlink in ~/.config/autostart works fine:

cd ~/.config/autostart/
ln -s /usr/share/applications/seafile.desktop 
JFL
  • 599