Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > More E-Book Readers > iRex > iRex Developer's Corner

Notices

Reply
 
Thread Tools Search this Thread
Old 07-19-2006, 10:11 AM   #31
arivero
Guru
arivero knows what time it isarivero knows what time it isarivero knows what time it isarivero knows what time it isarivero knows what time it isarivero knows what time it isarivero knows what time it isarivero knows what time it isarivero knows what time it isarivero knows what time it isarivero knows what time it is
 
arivero's Avatar
 
Posts: 607
Karma: 2157
Join Date: Oct 2005
Device: NCR3125, Nokia 770,...
Quote:
Originally Posted by Kristoffer
Hehe, yeah, it's working, no more guessing neccessary
Screen gets updated in the specified period...
Ok, it is working . Do you get zoom controls? Take a view to man xpdf somewhere ; even if zoom can not be controled from the screen, we should be able to control it from the ssh console by launching in -remote mode.

Ahh, my machine is in the lot to be shipped tomorrow.
arivero is offline   Reply With Quote
Old 07-19-2006, 10:12 AM   #32
ali
Addict
ali doesn't litterali doesn't litter
 
ali's Avatar
 
Posts: 302
Karma: 116
Join Date: May 2006
Device: Iliad, dude!
Quote:
Originally Posted by CommanderROR
That way people like me (programming Noobs...) can play around with stuff without damaging their system...^^
Nah, it just means you can brick your Iliad without the need to type weird command lines first.
ali is offline   Reply With Quote
Old 07-19-2006, 10:33 AM   #33
tribble
iLiad Maniac
tribble knows what time it istribble knows what time it istribble knows what time it istribble knows what time it istribble knows what time it istribble knows what time it istribble knows what time it istribble knows what time it istribble knows what time it istribble knows what time it istribble knows what time it is
 
tribble's Avatar
 
Posts: 1,382
Karma: 2369
Join Date: Apr 2006
Location: Germany
Device: Bookeen Opus (i love that thing) and iPad (what an irony)
Quote:
Originally Posted by arivero
Do you get zoom controls?
Tried to use the -z parameter, but i didnt see any change.
tribble is offline   Reply With Quote
Old 07-19-2006, 10:43 AM   #34
DHer
Addict
DHer doesn't litterDHer doesn't litter
 
Posts: 261
Karma: 156
Join Date: Jul 2006
Device: iliad
what happens if you don't start it in -fullscreen mode?

and, second, did someone already do a "modprobe hid" and "modprobe keybdev" for usb keyboards?
DHer is offline   Reply With Quote
Old 07-19-2006, 10:45 AM   #35
arivero
Guru
arivero knows what time it isarivero knows what time it isarivero knows what time it isarivero knows what time it isarivero knows what time it isarivero knows what time it isarivero knows what time it isarivero knows what time it isarivero knows what time it isarivero knows what time it isarivero knows what time it is
 
arivero's Avatar
 
Posts: 607
Karma: 2157
Join Date: Oct 2005
Device: NCR3125, Nokia 770,...
Quote:
Originally Posted by DHer
what happens if you don't start it in -fullscreen mode?

and, second, did someone already do a "modprobe hid" and "modprobe keybdev" for usb keyboards?
Not there, the hid module :-(
arivero is offline   Reply With Quote
Old 07-19-2006, 10:50 AM   #36
tribble
iLiad Maniac
tribble knows what time it istribble knows what time it istribble knows what time it istribble knows what time it istribble knows what time it istribble knows what time it istribble knows what time it istribble knows what time it istribble knows what time it istribble knows what time it istribble knows what time it is
 
tribble's Avatar
 
Posts: 1,382
Karma: 2369
Join Date: Apr 2006
Location: Germany
Device: Bookeen Opus (i love that thing) and iPad (what an irony)
Quote:
Originally Posted by DHer
what happens if you don't start it in -fullscreen mode?

didnt use -fullscreen, is there a config file for xpdf where that parameter coud be set?

And is there a way to get xpdf to open a certain page?
tribble is offline   Reply With Quote
Old 07-19-2006, 11:01 AM   #37
Tscherno
iLiad Geek
Tscherno began at the beginning.
 
Tscherno's Avatar
 
Posts: 110
Karma: 10
Join Date: Jul 2006
Location: Regensburg / Germany
Device: iLiad #505; Sony T1, Amazon Paperwhite first Gen & sec is coming!
http://linux.math.tifr.res.in/manuals/man/xpdf.html

xpdf [options] [PDF-file [page]]
Tscherno is offline   Reply With Quote
Old 07-20-2006, 01:19 PM   #38
ali
Addict
ali doesn't litterali doesn't litter
 
ali's Avatar
 
Posts: 302
Karma: 116
Join Date: May 2006
Device: Iliad, dude!
This shell script should patch er_registry such that afterwards .sh scripts can be executed from the gui. As my Iliad is disconnected, I'd like someone to try it out. (Somebody who knows what he's doing! This may brick your Iliad! Double-check your gui doesn't break, or patch /home/root/start.sh so you can login without gui afterwards.)

Code:
#!/bin/sh

REGFILE=/mnt/settings/er_registry.txt
BACKUP=$REGFILE.backup

if /bin/grep -q 'SHELL' $REGFILE
then
  echo "Already patched -- doing nothing"
  exit 1
fi

cp -a $REGFILE $BACKUP
sed 's/\(^uaIDList=.*$\)/\1;SHELL/g' $BACKUP > $REGFILE
cat >>$REGFILE <<EOF
[SHELL]
category=viewer
arguments=<FILENAME>
exec=/bin/sh -c
xResourceName=moomoo
channel=77
extensions=SH;sh
EOF
ali is offline   Reply With Quote
Old 07-21-2006, 01:32 AM   #39
Tscherno
iLiad Geek
Tscherno began at the beginning.
 
Tscherno's Avatar
 
Posts: 110
Karma: 10
Join Date: Jul 2006
Location: Regensburg / Germany
Device: iLiad #505; Sony T1, Amazon Paperwhite first Gen & sec is coming!
Could someone post the Exec-PDF again in this thread, please?
Tscherno is offline   Reply With Quote
Old 07-21-2006, 04:28 AM   #40
arivero
Guru
arivero knows what time it isarivero knows what time it isarivero knows what time it isarivero knows what time it isarivero knows what time it isarivero knows what time it isarivero knows what time it isarivero knows what time it isarivero knows what time it isarivero knows what time it isarivero knows what time it is
 
arivero's Avatar
 
Posts: 607
Karma: 2157
Join Date: Oct 2005
Device: NCR3125, Nokia 770,...
Quote:
Originally Posted by Tscherno
Could someone post the Exec-PDF again in this thread, please?
The last version (pdflatex from antartica) appeared here
https://www.mobileread.com/forums/sho...&postcount=250

The first version of the pdf idea appears in post 201 of the thread, and then in posts 234-237-241-244 it is developed.

It will evolve more, I'd bet. I miss icons .

Note that ali has created a thread to post "release" versions for end users, named "Hacks for Users".

Last edited by arivero; 07-21-2006 at 05:07 AM.
arivero is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
PRS-500 Reader Internals 2.0 (pics!) lint Sony Reader Dev Corner 60 11-18-2013 08:25 AM
Kindle DX Internals revilo Amazon Kindle 0 06-15-2009 04:50 AM
Kindle 2 Internals JSWolf Amazon Kindle 19 02-27-2009 02:45 PM
PRS-500 Reader internals igorsk Sony Reader Dev Corner 108 04-17-2008 05:04 PM
PRS-500 Connect internals igorsk Sony Reader Dev Corner 1 10-12-2006 04:50 AM


All times are GMT -4. The time now is 12:59 AM.


MobileRead.com is a privately owned, operated and funded community.