vote up 1 vote down star

Hi everyone!
I have a wxPython application and I'm using Evince to display the reports it generates. Since I'd like to delete every report after the user has closed the corresponding Evince instance, my application uses a thread that does a subprocess.call() to invoke Evince, and then removes the report when the subprocess terminates.
This works fine as long as the user looks at just one report at a time, because if he opens one report and then another (without closing the previous one) the previous Evince instance gets "recycled" to show the new report, so subprocess.call() returns immediately and the file gets deleted too soon.
Is there a way to force Evince to use a new instance every time?

(Xubuntu 8.10)

flag

This is a rather specialized area of questioning. You just might want to contact the Evince developers themselves. live.gnome.org/Evince/Contact – supercheetah Apr 18 at 6:18
Yes I agree, I posted on that ML too.. I was hoping that the "Stack overflow effect" would come up with an answer in a matter of minutes as usual :D Thanks for your hint anyway! – Joril Apr 18 at 12:10

2 Answers

vote up 1 vote down check

Wouter Bolsterlee suggests:

dbus-launch --exit-with-session evince file://...

link|flag
I just found out that this way the process keeps running even when you close evince.. :/ (Tried with Ubuntu 9.04 and 8.10) I ended up using epdfview instead of evince, works nicely and with fewer problems :) – Joril May 26 at 7:14
vote up 0 vote down

You can't do that with evince. Try suggesting that to the developers as a new feature.

link|flag
Someone tried that already, but they told him it was against the design principles of Gnome :/ mail.gnome.org/archives/evince-list/… – Joril Apr 20 at 7:07
That's one of the reasons I prefer KDE - the Gnome people care more about their design principles than their users – PiedPiper Apr 20 at 8:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.