As i read many PDFs at the same time, i would like to find a solution for Okular to remember the opened files and reopen them, when the Program gets restarted.
This small skript writes the current open document paths to a file:
#!/usr/bin/bash
file="/home/johndoe/.okular_docs"
oku=$(qdbus | grep -i okular)
[ -e $file ] && rm $file
while read line
do
echo $(qdbus $oku $line org.kde.okular.currentDocument) >> $file
done <<< $(qdbus $oku | grep -E "^/okular[0-9]*$")
Obviously it has to be executed before closing the program or every time i open a new document in okular. Any ideas how to accomplish that?
Then I could change the okular command to xargs -rd'\n' okular < .okular_docs
and eventually it would open the last 'session' again.