
OkularSlideShow
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
With this small script you can use Okular for one-document-slideshows. Okular will automatically go to the next page after a user-defined delay. But you can also pause the slideshow (using enter or space) or move to next/previous page manually using the arrow-keys.
Press q or x to quit the slide-show or simply close the window.
To start the slideshow, execute:
> OkularSlideShow.rb document delayInSeconds
The script is written in Ruby, you will need Ruby and the KDE4-binding.
You can also use it for reading eBooks or for watching presentations. It doesn't yet support multiple files. You need one file with several pages.
This application was an idea by tvpaker at KDE-Brainstorm.
11 years ago
v0.1:
-Status-Icon
-Play/Pause
-Next/Previous
-Quit
11 years ago
v0.1:
-Status-Icon
-Play/Pause
-Next/Previous
-Quit
tvpaker
10 years ago
Report
TheUserK
10 years ago
Report
TheUserK
11 years ago
http://forum.kde.org/viewtopic.php?f=83&t=63415#p85078
Or try the attachment.
I hope it will be applied to Okular.
Report
bitcrazy
11 years ago
Report
TheUserK
11 years ago
This is a screenshot:
[url=http://a.imagehost.org/view/0934/okularpresentation][img]http://a.imagehost.org/t/0934/okularpresentation.jpg[/img][/url]
Report
bitcrazy
11 years ago
It should first set "fit page".
I'll take a look at the code later.
m0nk
Report
bitcrazy
11 years ago
FILE=`kdialog --title "Select file" --getopenfilename $HOME/MYDocs *.pdf`
if [ $FILE = "" ]
then
exit
return 1
fi
SEC=`kdialog --inputbox 'Duration in sec' 5`
exec OkularSlideShow.rb $FILE $SEC
Save as okularslide.sh, optional set your initial path ($HOME/MyDocs) and a filter (*.pdf), make a menuentry and you're done
Report