Ubuntu 16.10 with xfce. No tray icon

@Gautier_Avril: Apologies for not replying sooner. Regarding the script, this is what I meant:

from PySide.QtGui import QApplication, QIcon, QSystemTrayIcon
import sys, signal

app = QApplication(sys.argv)
QIcon.setThemeName('hicolor')
icon = QIcon.fromTheme('insync-normal')
tray = QSystemTrayIcon(icon)
tray.show()
signal.signal(signal.SIGINT, signal.SIG_DFL)

for path in QIcon.themeSearchPaths():
        print "%s/%s" % (path, QIcon.themeName())

sys.exit(app.exec_())

Please copy it to a file like /tmp/script.py then run it with /usr/lib/insync/py /tmp/script.py then paste the output here. You can then stop it with ctrl+c.

Additionally please try the test build for Ubuntu 17.04 available here: New Insync version: 1.3.15.

Concerning the python script. Here is the output :

/usr/share/ubuntu/icons/hicolor
/usr/local/share/icons/hicolor
/usr/share/icons/hicolor
/var/lib/snapd/desktop/icons/hicolor
:/icons/hicolor

Please note that the insync icon is present when I run the script (but I get an error when I click on it).

I’m on ubuntu 17.04 and I didn’t installed the test build yet.

OK,

Everything (including the icon) is working with the test build with ubuntu 17.04

Regards

@Gautier_Avril: Thanks for the feedback. Let us know if you encounter any more issues.