Zotero SA freeze while PDF open. Linux Mint MATE.
Hi all,
I have two systems running Zotero stand alone with a connector to Chrome. The problem I'm having is that when I open a pdf from Zotero, the Zotero window freezes and is unresponsive until I close the pdf, at which point Zoteros wakes up.
I'm using MATE (a fork of Gnome 2) and can reproduce this 100% of the time on both systems, running either compiz or marco (fork of metacity). Pdf viewer is atril (fork of evince).
Debug ID: D826805119
Cheers,
Seth
I have two systems running Zotero stand alone with a connector to Chrome. The problem I'm having is that when I open a pdf from Zotero, the Zotero window freezes and is unresponsive until I close the pdf, at which point Zoteros wakes up.
I'm using MATE (a fork of Gnome 2) and can reproduce this 100% of the time on both systems, running either compiz or marco (fork of metacity). Pdf viewer is atril (fork of evince).
Debug ID: D826805119
Cheers,
Seth
Adam
I had the same problem (although I'm using Xournal instead of xdg-open). I wrote a tiny script that makes sure to always exit after opening my document. Here it is (mine launches Xournal for PDFs and xdg-open for other formats):
#!/bin/bash
if [ "$#" -eq "0" ]; then
echo no arguments passed, aborting 1>&2
exit
fi
case $1 in
*.pdf) xournal $1 & exit;;
*) xdg-open $1 & exit;;
esac
exit
What you need to do then is modify the extensions.zotero.fallbackLauncher.unix (or equivalent) key to point to this script instead of directly xdg-open. Seems to work very well.
By the way, I really think that something as crucial should be directly accessible within the settings.