


Graphic Apps by yogin 164 comments
One comment: make it 'autohide' in fullscreen mode (F11). - Mar 31 2005

Graphic Apps by yogin 164 comments

Graphic Apps by yogin 164 comments

Graphic Apps by yogin 164 comments
And I didn't find any other problems so you can start enjoying the weekend. Or perhaps if you're bored add some features like the pagecounter :D.
Thanks again. - Jan 23 2005

Graphic Apps by yogin 164 comments
And found another small problem: When you check scrollbars under 'view' they show (left and bottom). But when I close qcomicbook and open it again they don't show though scrollbars is still checked. I have to uncheck/check scrollbars to see them again.
I don't know if this is a bug or if it is suppose to be like this. The bookmark shows fine but when I click it qcomicbook doesn't go to that page. Is the bookmark just a reminder or should it be able to switch to the selected page?
Thanks for the good work. - Jan 22 2005

Graphic Apps by yogin 164 comments
When I make a bookmark it looks fine. When I close qcomicbook and open the same archive the bookmark doesn work. The line (name of archive + pagenumbr) is cut in 4 piece with a different pagenumber begind it. So if the name of the archive is Rogue (2005).cbr, the bookmarke becomes /home/my name/folder/Rogue(2005).cbr [12]. After closing and opening it is /home/my name/folder[1], and, rogue[7], and, 2005[0] etcetc.
Other than that it is great litlle program. - Jan 22 2005

Graphic Apps by yogin 164 comments
#! /bin/bash
regexp='.*\(imggif.php?i=/upload/d[0-9]\{1,4\}.gif\).*'
main_url="http://www.foksuk.nl/"
img_url=$(wget -qO - $main_url | sed -n "s@$regexp@$main_url\1@p")
imgname=~/Cartoon_van_de_dag.gif
wget -qO $imgname "$img_url"
echo -n "$imgname" # outputs the path to the comic image, that will be enough for comics
*credits go to Aru (mandrakeusers.org) who has a solution for every problem :)* - Dec 30 2004
#!/usr/bin/perl
use strict;
use warnings;
our $url = 'http://www.foksuk.nl';
our $prefix = 'http://www.foksuk.nl/';
our $attr_value = '';
our $attr_name = '';
our $regex = 'd\d+\.(gif|jpg)';
$0=~m|^(.*/).*?$|;
require $1.'komics.pm';
It works, the comic is downloaded to /tmp/kde-xxxx/ but then is given the extension php instead of gif. (url=http://www.foksuk.nl/imggif.php?i=/upload/d686.gif file=komics1aFwAeb.php) So I guess komics looks till imggif.php and not further when it places the file in /tmp/kde-xxxx.
Kuickshow, the app I use to view, doesn't do php. Kview does, but not in komics.
Thanks for your time :)
- Dec 30 2004
For people who like the Dutch comic Dirk Jan, use this script:
#! /bin/bash
url="http://www.rotterdamsdagblad.nl/dirkjan/"
ar_day=(zaterdag maandag dinsdag woensdag donderdag vrijdag zaterdag)
printf "${url}${ar_day[$(date +'%w')]}.jpg\n"
*Made possible with help from Papaschtroumpf and Aru* - Dec 29 2004