Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Amazon Kindle > Kindle Developer's Corner

Notices

Reply
 
Thread Tools Search this Thread
Old 02-28-2013, 10:46 AM   #1
statethatiamin
Avid Reader
statethatiamin is not intimidated by interfenestral monkeys.statethatiamin is not intimidated by interfenestral monkeys.statethatiamin is not intimidated by interfenestral monkeys.statethatiamin is not intimidated by interfenestral monkeys.statethatiamin is not intimidated by interfenestral monkeys.statethatiamin is not intimidated by interfenestral monkeys.statethatiamin is not intimidated by interfenestral monkeys.statethatiamin is not intimidated by interfenestral monkeys.statethatiamin is not intimidated by interfenestral monkeys.statethatiamin is not intimidated by interfenestral monkeys.statethatiamin is not intimidated by interfenestral monkeys.
 
statethatiamin's Avatar
 
Posts: 27
Karma: 26644
Join Date: Jan 2011
Location: Bronx, NY
Device: Kindle 3
Removed percent from book progress bar

Hi all,

Lately I've been reading a really long book and I found the percentage read field really distracting because, in the back of my head, I would count the number of page turns it took for the percent to increment and start doing math instead of reading. ANYWAY, I tried the progress bar remover hack for some reason it didn't work so well for me, and I realized that I don't mind the progress bar, just the percent. I made a really gross hack to remove it and I thought I share it so other people can use it. Also, if you have suggestions for improvements, that would be greatly appreciated.

What I did:
1) Made a folder called "percrem" in /mnt/us/
2) In that folder, made percrem.sh. That's the script that does the work. Mind the permissions. It's nice to put the script there so you can tweak it from the mounted kindle instead of ssh-ing in and traversing the filesystem.

Code:
#!/bin/sh

while :; do
  # write whitespace directly over the percent
  eips 0 38 "      "
  # sleep for a tenth of a second
  usleep 100000
done
3) created /etc/init.d/percrem. Here's the code I used:

Code:
#!/bin/sh
# /etc/init.d/percrem
case "$1" in
  start)
    echo "Starting progrem"
    /mnt/us/percrem/percrem.sh &
    ;;
  stop)
    echo "Stopping progrem"
    killall percrem.sh
    ;;
  *)
    echo "Usage: /etc/init.d/percrem {start|stop}"
    exit 1
    ;;
esac
exit 0
4) Symbolically linked the init.d entry to rc5.d/ directory
ln -s /etc/init.d/percrem /etc/rc5.d/S97percrem

5) Restarted (init 6)

==

I find the it works great for me. What it does is constantly write whitespace to that area. Unfortunately it does this all the time, not just while you a reading a book. If you want the script to wait unit the kindle is done starting up, you can add "usleep 60000000" to the script in /mnt/us/percrem. The refresh speed hasn't really been an issue for me, but I'd always like to make it faster

Anyway, if the percentage read is something that bothers you, you may want to try this hack, especially as I improve it. As always, ideas for improvements are very welcome!
statethatiamin is offline   Reply With Quote
Old 11-02-2013, 07:42 AM   #2
sinan
Enthusiast
sinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of it
 
sinan's Avatar
 
Posts: 23
Karma: 66956
Join Date: Feb 2010
Location: Conn. USA
Device: Kindle 3, Kindle PW
Hide Progress Bar on Kindle Paperwhite

Here is a Kual extension to remove progress bar on Kindle PW 1 which is quite easy to adapt for other Kindles also.

It is not a perfect solution, basically what it does is to draw white rectangle over progress bar, but still works.

[moderator deleted attachment - please see below]

How to install:
1. You need to install Kual
https://www.mobileread.com/forums/sho...d.php?t=203326
2. Extract the content of the zip into extensions folder on Kindle's main directory.

Spoiler:
Code:
#!/bin/sh
  echo "Stopping hideProgressBar"
  # draw black rectangle over the percent to remove traces of information
  eips -d l=000,w=758,h=48 [-x 0 -y 977 -w 0]
  while :; do
  # draw white rectangle directly over the progress bar periodically
  eips -d l=FFF,w=758,h=48 [-x 0 -y 977 -w 0]
  eips -d l=FFF,w=758,h=48 [-x 0 -y 977 -w 0]
  usleep 1000
done
Attached Thumbnails
Click image for larger version

Name:	screenshot_2013_11_02T11_14_00+0000.png
Views:	712
Size:	11.1 KB
ID:	114489   Click image for larger version

Name:	screenshot_2013_11_02T11_14_05+0000.png
Views:	593
Size:	12.1 KB
ID:	114490   Click image for larger version

Name:	screenshot_2013_11_02T11_14_38+0000.png
Views:	880
Size:	42.9 KB
ID:	114491   Click image for larger version

Name:	screenshot_2013_11_02T11_14_43+0000.png
Views:	750
Size:	38.9 KB
ID:	114492  

Last edited by twobob; 11-04-2013 at 02:24 PM. Reason: crashes Non-PW devices it is errantly used on
sinan is offline   Reply With Quote
Advert
Old 11-04-2013, 02:01 PM   #3
twobob
( ͡° ͜ʖ ͡°){ʇlnɐɟ ƃǝs}Tır
twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.
 
twobob's Avatar
 
Posts: 6,586
Karma: 6299991
Join Date: Jun 2012
Location: uti gratia usura (Yao ying da ying; Mo ying da yieng)
Device: PW-WIFI|K5-3G+WIFI| K4|K3-3G|DXG|K2| Rooted Nook Touch
Moderately Passive remover.

or alternately:
(since this thread is not exclusively for the PW and that script will crash older devices)

Code:
#!/bin/sh

PLATFORM="$(cat /sys/devices/platform/mxc_epdc_fb/graphics/fb0/modes)"

echo $PLATFORM

if [ -z "$PLATFORM"  ]; then
	# it's probably something ancient
	

	if [ ! -e /proc/fiveway_wake   ] ; then

	echo "k2 or something detected"

		echo "" > /var/log/messages; tail -f /var/log/messages 2>/dev/null | \
		awk '/.*PageAction*./ || /.*acxmgrd*./ || /.*NextPage*./ || /.*Reader*./ {system("/mnt/us/extensions/hideProgressBar/bin/wiperk2.sh &")}  '
		exit 0


		else
	echo "k3 or k4 or something detected"

		echo "" > /var/log/messages; tail -f /var/log/messages 2>/dev/null | \
		awk '/.*PageAction*./ || /.*acxmgrd*./ || /.*NextPage*./ || /.*Reader*./ {system("/mnt/us/extensions/hideProgressBar/bin/wiperk4.sh &")}  '
		exit 0

	fi

fi

if [ -n "$PLATFORM"  ]; then
	if [ "$PLATFORM" != "${PLATFORM/758/}" ]; then

	echo "PW detected"

	echo "" > /var/log/messages; tail -F /var/log/messages 2>/dev/null | exec /usr/bin/parselog | \
	awk '/.*PageTurnAction*./ || /.*JunoExecutionManager*./  {system("eips -d l=FFF,w=758,h=48 -x 0 -y 977")}  '

	else
	# it's something else, probably older

	echo "Non-PW detected"

	echo "" > /var/log/messages; tail -F /var/log/messages 2>/dev/null | exec /usr/bin/parselog | \
	awk '/.*PageAction*./ || /.*acxmgrd*./ {system("eips -d l=FFF,w=600,h=40 -x 0 -y 760 ")}  '

	fi
fi

Last edited by twobob; 11-04-2013 at 07:47 PM. Reason: Added startup use-case for older and newer devices.
twobob is offline   Reply With Quote
Old 11-04-2013, 02:55 PM   #4
sinan
Enthusiast
sinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of it
 
sinan's Avatar
 
Posts: 23
Karma: 66956
Join Date: Feb 2010
Location: Conn. USA
Device: Kindle 3, Kindle PW
Unfortunately attached version does not work on Kindle PW (v. 5.3.4).
sinan is offline   Reply With Quote
Old 11-04-2013, 03:19 PM   #5
twobob
( ͡° ͜ʖ ͡°){ʇlnɐɟ ƃǝs}Tır
twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.
 
twobob's Avatar
 
Posts: 6,586
Karma: 6299991
Join Date: Jun 2012
Location: uti gratia usura (Yao ying da ying; Mo ying da yieng)
Device: PW-WIFI|K5-3G+WIFI| K4|K3-3G|DXG|K2| Rooted Nook Touch
err yeah. There was an error.

it's PageTurnAction not PageAction on a PW. fixed it now. check the script in the version you have:

(tested now on 5.3.6)

Also: read this https://www.mobileread.com/forums/sho...0&postcount=22

Last edited by twobob; 11-04-2013 at 03:23 PM.
twobob is offline   Reply With Quote
Advert
Old 11-04-2013, 03:38 PM   #6
sinan
Enthusiast
sinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of it
 
sinan's Avatar
 
Posts: 23
Karma: 66956
Join Date: Feb 2010
Location: Conn. USA
Device: Kindle 3, Kindle PW
It is working. Thank you.

Last edited by sinan; 11-04-2013 at 03:49 PM.
sinan is offline   Reply With Quote
Old 11-04-2013, 03:49 PM   #7
twobob
( ͡° ͜ʖ ͡°){ʇlnɐɟ ƃǝs}Tır
twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.
 
twobob's Avatar
 
Posts: 6,586
Karma: 6299991
Join Date: Jun 2012
Location: uti gratia usura (Yao ying da ying; Mo ying da yieng)
Device: PW-WIFI|K5-3G+WIFI| K4|K3-3G|DXG|K2| Rooted Nook Touch
well - you could do me a favour then

what does

showlog -f | grep Page

output on yours when you click a page turn?

also - this wont work on the FIRST page you load. just when you TURN a page...
(since it greps for the Page*Turn log entries)

I get:

Quote:
.. cvm[10993]: I ContentPanel:UserActionInfo: PageTurnAction=NextPage:
.. cvm[10993]: I ContentPanel:UserActionInfo: PageTurnAction=PreviousPage:
On a PW 5.3.6...

Last edited by twobob; 11-04-2013 at 03:51 PM.
twobob is offline   Reply With Quote
Old 11-04-2013, 04:06 PM   #8
twobob
( ͡° ͜ʖ ͡°){ʇlnɐɟ ƃǝs}Tır
twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.
 
twobob's Avatar
 
Posts: 6,586
Karma: 6299991
Join Date: Jun 2012
Location: uti gratia usura (Yao ying da ying; Mo ying da yieng)
Device: PW-WIFI|K5-3G+WIFI| K4|K3-3G|DXG|K2| Rooted Nook Touch
actually here is an even better test:

run this via ssh:

Code:
echo "" > /var/log/messages; tail -F /var/log/messages 2>/dev/null | exec /usr/bin/parselog | awk '/.*PageTurnAction*./ || /.*JunoExecutionManager*./  {system("echo matched; eips -d l=FFF,w=758,h=48 -x 0 -y 977")}  '
This should ALSO match the "startup" use-case now.

simply match up the value of /.*PageTurnAction*./ to the output of showlog -f | grep Page and the matches are spat out on the STDOUT so you can see when it is working...

(The first-time open use-case will harmlessly match about 5 times...)

Last edited by twobob; 11-04-2013 at 04:30 PM. Reason: made it easier to copy
twobob is offline   Reply With Quote
Old 11-04-2013, 04:13 PM   #9
sinan
Enthusiast
sinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of it
 
sinan's Avatar
 
Posts: 23
Karma: 66956
Join Date: Feb 2010
Location: Conn. USA
Device: Kindle 3, Kindle PW
Could you give me some time? I will run the test as soon as possible but right now I have some errands to attend to.

Last edited by sinan; 11-04-2013 at 04:16 PM.
sinan is offline   Reply With Quote
Old 11-04-2013, 04:31 PM   #10
twobob
( ͡° ͜ʖ ͡°){ʇlnɐɟ ƃǝs}Tır
twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.
 
twobob's Avatar
 
Posts: 6,586
Karma: 6299991
Join Date: Jun 2012
Location: uti gratia usura (Yao ying da ying; Mo ying da yieng)
Device: PW-WIFI|K5-3G+WIFI| K4|K3-3G|DXG|K2| Rooted Nook Touch
sure.

If anyone else is finding this doesnt work - please pipe up now.

I'll add the 1st time open use-case to the attachment for now.

EDIT:

ah - I see you edited your post to state it IS working now. bonus. I'll stop derping.

also... I noted that on page backs very occasionally the page back will take SO LONG to render that it will actually miss the overwrite. meh. shove a ulseep in or live with it.

Last edited by twobob; 11-04-2013 at 04:52 PM.
twobob is offline   Reply With Quote
Old 11-04-2013, 05:18 PM   #11
sinan
Enthusiast
sinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of it
 
sinan's Avatar
 
Posts: 23
Karma: 66956
Join Date: Feb 2010
Location: Conn. USA
Device: Kindle 3, Kindle PW
I don't know if I am doing this right but here is the result for

Code:
echo "" > /var/log/messages; tail -F /var/log/messages 2>/dev/null | exec /usr/bin/parselog | awk '/.*PageTurnAction*./ || /.*JunoExecutionManager*./  {system("echo matched; eips -d l=FFF,w=758,h=48 -x 0 -y 977")}  '
Spoiler:

Code:
131105:000018 Xorg: I GestureEngine:perfScenario::Sending button 1 down 1383602418.677745
131105:000018 cvm[1476]: I ReadingTimerController:Information::NextPage,Verdict:Processed,PageStartPos:MobiPosition: 118570,IntervalTime:527,IntervalWords:106,IntervalWPM:12068.31119544592,ScreenStart:MobiPosition: 117452,ScreenEnd:MobiPosition: 118569,Interval%:0.0034611296854616946,TotalTime:1630833,TotalWords:35398,TotalWPM:4893.62934221199,Total%:1.301710114121222,BookInfoKnownWords:41008,BookInfoKnown%:1.5013339447892469,LogDataReturnCode:106,GlobalWPM:4575.337913019471,GlobalTime:1630833,GlobalWords:97346,CurrentPos:MobiPosition: 118570,EndPos:MobiPosition: 322660,PosLeft:204090,%Left:0.6323920837116199,CurrentPagePosDiff:1194,TimeForPage:1,PosPassed:false,NewTimeLeft:180,OldTimeLeft:792,TimeLeftInBookString:3 mins left in book,TimeLeftInSectionString:Learning reading speed...;
131105:000018 root: perfScenario CVM received X11 ButtonPress button=1 time=1383602418.700312
131105:000018 cvm[1476]: I def:print::perfScenario CVM posting MouseEvent[MousePressed] time=1383602418700
131105:000018 cvm[1476]: I def:print::
131105:000018 Xorg: I GestureEngine:perfScenario::Sending button 5 down 1383602418.796273
131105:000018 Xorg: I GestureEngine:perfScenario::Sending button 5 up 1383602418.796405
131105:000018 cvm[1476]: I def:print::perfScenario CVM posting MouseEvent[MousePressed] time=1383602418802
131105:000018 cvm[1476]: I def:print::
131105:000018 cvm[1476]: I def:print::perfScenario CVM POINTER_CLICKED-gen btn=5  -> radius=0.0 time=1383602418802
131105:000018 cvm[1476]: I def:print::
131105:000018 cvm[1476]: I def:print::perfScenario CVM posting MouseEvent[MouseRelease] time=1383602418803
131105:000018 cvm[1476]: I def:print::
131105:000018 cvm[1476]: I def:print::perfScenario CVM posting MouseEvent[MouseClicked] time=1383602418803
131105:000018 cvm[1476]: I def:print::
131105:000018 root: perfScenario CVM received X11 ButtonPress button=5 time=1383602418.802140
131105:000018 root: perfScenario CVM received X11 ButtonRelease button=5 time=1383602418.802710
131105:000018 cvm[1476]: I ContentPanel:Information::Swipe West action start - swipe detected at java.awt.Point[x=424,y=656]
131105:000018 cvm[1476]: I ContentPanel:UserActionInfo:PageTurnAction=NextPage:
131105:000018 Xorg: I GestureEngine:perfScenario::Sending button 1 up 1383602418.952464
131105:000018 root: perfScenario CVM received X11 ButtonRelease button=1 time=1383602418.980799
131105:000018 cvm[1476]: I def:print::perfScenario CVM posting MouseEvent[MouseRelease] time=1383602418980
131105:000018 cvm[1476]: I def:print::
131105:000019 cvm[1476]: I ReadingTimerController:Information::NextPage,Verdict:Processed,PageStartPos:MobiPosition: 119765,IntervalTime:402,IntervalWords:96,IntervalWPM:14328.358208955222,ScreenStart:MobiPosition: 118570,ScreenEnd:MobiPosition: 119764,Interval%:0.0036997214363843067,TotalTime:1631235,TotalWords:35494,TotalWPM:4986.283497258797,Total%:1.3054098355576063,BookInfoKnownWords:41104,BookInfoKnown%:1.5050336662256312,LogDataReturnCode:96,GlobalWPM:4575.337913019471,GlobalTime:1631235,GlobalWords:97442,CurrentPos:MobiPosition: 119765,EndPos:MobiPosition: 322660,PosLeft:202895,%Left:0.6286892636810679,CurrentPagePosDiff:1201,TimeForPage:1,PosPassed:false,NewTimeLeft:180,OldTimeLeft:785,TimeLeftInBookString:3 mins left in book,TimeLeftInSectionString:Learning reading speed...;
131105:000019 Xorg: I GestureEngine:perfScenario::Sending button 1 down 1383602419.245270
131105:000019 cvm[1476]: I def:print::perfScenario CVM posting MouseEvent[MousePressed] time=1383602419288
131105:000019 cvm[1476]: I def:print::
131105:000019 root: perfScenario CVM received X11 ButtonPress button=1 time=1383602419.287519
131105:000019 Xorg: I GestureEngine:perfScenario::Sending button 5 down 1383602419.324939
131105:000019 Xorg: I GestureEngine:perfScenario::Sending button 5 up 1383602419.325364
131105:000019 root: perfScenario CVM received X11 ButtonPress button=5 time=1383602419.340616
131105:000019 root: perfScenario CVM received X11 ButtonRelease button=5 time=1383602419.341183
131105:000019 cvm[1476]: I def:print::perfScenario CVM posting MouseEvent[MousePressed] time=1383602419340
131105:000019 cvm[1476]: I def:print::


and for showlog -f | grep Page I got

Spoiler:

Code:
31105:000018 Xorg: I GestureEngine:perfScenario::Sending button 1 down 1383602418.677745
131105:000018 cvm[1476]: I ReadingTimerController:Information::NextPage,Verdict:Processed,PageStartPos:MobiPosition: 118570,IntervalTime:527,IntervalWords:106,IntervalWPM:12068.31119544592,ScreenStart:MobiPosition: 117452,ScreenEnd:MobiPosition: 118569,Interval%:0.0034611296854616946,TotalTime:1630833,TotalWords:35398,TotalWPM:4893.62934221199,Total%:1.301710114121222,BookInfoKnownWords:41008,BookInfoKnown%:1.5013339447892469,LogDataReturnCode:106,GlobalWPM:4575.337913019471,GlobalTime:1630833,GlobalWords:97346,CurrentPos:MobiPosition: 118570,EndPos:MobiPosition: 322660,PosLeft:204090,%Left:0.6323920837116199,CurrentPagePosDiff:1194,TimeForPage:1,PosPassed:false,NewTimeLeft:180,OldTimeLeft:792,TimeLeftInBookString:3 mins left in book,TimeLeftInSectionString:Learning reading speed...;
131105:000018 root: perfScenario CVM received X11 ButtonPress button=1 time=1383602418.700312
131105:000018 cvm[1476]: I def:print::perfScenario CVM posting MouseEvent[MousePressed] time=1383602418700
131105:000018 cvm[1476]: I def:print::
131105:000018 Xorg: I GestureEngine:perfScenario::Sending button 5 down 1383602418.796273
131105:000018 Xorg: I GestureEngine:perfScenario::Sending button 5 up 1383602418.796405
131105:000018 cvm[1476]: I def:print::perfScenario CVM posting MouseEvent[MousePressed] time=1383602418802
131105:000018 cvm[1476]: I def:print::
131105:000018 cvm[1476]: I def:print::perfScenario CVM POINTER_CLICKED-gen btn=5  -> radius=0.0 time=1383602418802
131105:000018 cvm[1476]: I def:print::
131105:000018 cvm[1476]: I def:print::perfScenario CVM posting MouseEvent[MouseRelease] time=1383602418803
131105:000018 cvm[1476]: I def:print::
131105:000018 cvm[1476]: I def:print::perfScenario CVM posting MouseEvent[MouseClicked] time=1383602418803
131105:000018 cvm[1476]: I def:print::
131105:000018 root: perfScenario CVM received X11 ButtonPress button=5 time=1383602418.802140
131105:000018 root: perfScenario CVM received X11 ButtonRelease button=5 time=1383602418.802710
131105:000018 cvm[1476]: I ContentPanel:Information::Swipe West action start - swipe detected at java.awt.Point[x=424,y=656]
131105:000018 cvm[1476]: I ContentPanel:UserActionInfo:PageTurnAction=NextPage:
131105:000018 Xorg: I GestureEngine:perfScenario::Sending button 1 up 1383602418.952464
131105:000018 root: perfScenario CVM received X11 ButtonRelease button=1 time=1383602418.980799
131105:000018 cvm[1476]: I def:print::perfScenario CVM posting MouseEvent[MouseRelease] time=1383602418980
131105:000018 cvm[1476]: I def:print::
131105:000019 cvm[1476]: I ReadingTimerController:Information::NextPage,Verdict:Processed,PageStartPos:MobiPosition: 119765,IntervalTime:402,IntervalWords:96,IntervalWPM:14328.358208955222,ScreenStart:MobiPosition: 118570,ScreenEnd:MobiPosition: 119764,Interval%:0.0036997214363843067,TotalTime:1631235,TotalWords:35494,TotalWPM:4986.283497258797,Total%:1.3054098355576063,BookInfoKnownWords:41104,BookInfoKnown%:1.5050336662256312,LogDataReturnCode:96,GlobalWPM:4575.337913019471,GlobalTime:1631235,GlobalWords:97442,CurrentPos:MobiPosition: 119765,EndPos:MobiPosition: 322660,PosLeft:202895,%Left:0.6286892636810679,CurrentPagePosDiff:1201,TimeForPage:1,PosPassed:false,NewTimeLeft:180,OldTimeLeft:785,TimeLeftInBookString:3 mins left in book,TimeLeftInSectionString:Learning reading speed...;
131105:000019 Xorg: I GestureEngine:perfScenario::Sending button 1 down 1383602419.245270
131105:000019 cvm[1476]: I def:print::perfScenario CVM posting MouseEvent[MousePressed] time=1383602419288
131105:000019 cvm[1476]: I def:print::
sinan is offline   Reply With Quote
Old 11-04-2013, 05:22 PM   #12
twobob
( ͡° ͜ʖ ͡°){ʇlnɐɟ ƃǝs}Tır
twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.twobob ought to be getting tired of karma fortunes by now.
 
twobob's Avatar
 
Posts: 6,586
Karma: 6299991
Join Date: Jun 2012
Location: uti gratia usura (Yao ying da ying; Mo ying da yieng)
Device: PW-WIFI|K5-3G+WIFI| K4|K3-3G|DXG|K2| Rooted Nook Touch
errrr... I dont see how "grep Page" can return any results that don't contain the word Page?

and the other one should say like:

Quote:
matched
matched
matched
and nothing else?

hmm.. mondo weirdness?

ah well as long as the thing is now working for you...
twobob is offline   Reply With Quote
Old 11-04-2013, 05:36 PM   #13
sinan
Enthusiast
sinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of itsinan has read War And Peace ... all of it
 
sinan's Avatar
 
Posts: 23
Karma: 66956
Join Date: Feb 2010
Location: Conn. USA
Device: Kindle 3, Kindle PW
No problem. Thank you.

Can't wait to get rid of progressbar once and for all.
sinan is offline   Reply With Quote
Old 11-04-2013, 05:51 PM   #14
knc1
Going Viral
knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.
 
knc1's Avatar
 
Posts: 17,212
Karma: 18210809
Join Date: Feb 2012
Location: Central Texas
Device: No K1, PW2, KV, KOA
Quote:
Originally Posted by twobob View Post
errrr... I dont see how "grep Page" can return any results that don't contain the word Page?

and the other one should say like:


and nothing else?

hmm.. mondo weirdness?

ah well as long as the thing is now working for you...
Probably did not enter the pipe symbol.
Code:
Capital \
on a normal keyboard
knc1 is offline   Reply With Quote
Old 02-08-2015, 07:07 AM   #15
Kenneth_irl
Addict
Kenneth_irl makes transoceanic flights without the assistance of an airplaneKenneth_irl makes transoceanic flights without the assistance of an airplaneKenneth_irl makes transoceanic flights without the assistance of an airplaneKenneth_irl makes transoceanic flights without the assistance of an airplaneKenneth_irl makes transoceanic flights without the assistance of an airplaneKenneth_irl makes transoceanic flights without the assistance of an airplaneKenneth_irl makes transoceanic flights without the assistance of an airplaneKenneth_irl makes transoceanic flights without the assistance of an airplaneKenneth_irl makes transoceanic flights without the assistance of an airplaneKenneth_irl makes transoceanic flights without the assistance of an airplaneKenneth_irl makes transoceanic flights without the assistance of an airplane
 
Kenneth_irl's Avatar
 
Posts: 212
Karma: 55934
Join Date: Jan 2011
Location: Denmark
Device: Kindle 3 + Paperwhite 7th gen
Sorry to bump this old bird, but this was the most relevant thread on the matter that I could find. Maybe I should have made a new 'what should I buy' thread and linked to this thread instead, but this will be at least somewhat relevant, but not totally.

So, I'm looking to buy a new e-reader and hiding any progress information is one of my highest priorities. While others like to know where in the book that they're at and when the book will end, I like not knowing such spoiling information. I recommend that people should try reading a book while not knowing how long that it is or when it'll end - because it can make for a much more interesting read. This is a strength for the e-reader, well, it could have been.

Anyhow, right now I'm using my Kindle 3 and the 'kindle-progress-bar-remover' put together by 'muness' (others share credits), but after finding this thread I realised that it might be possible to also acquire a PW2 and achieve the same goal. However, I have to ask a few questions before making the purchase to be sure.

1) Will the script @ #3 work on a jailbroken PW2 with firmware 5.4.5? (I strongly assume it will work)

2) What is the quarks of the script @ #3? (the hack on my Kindle 3 removes the progress bar after each page refresh, so it's visible for a half a second (not an issue, I just don't look at it). There's also some ghosting left behind and therefore the progress bar is actually not 100% hidden if you look carefully (an actual shortcoming for me).

3) (somehow off topic question) Is there any other non-Kindle e-reader that has an native option (or at least through access to root) to hide the progress information?

If I crossed the line here then I'll be sure to delete this post and follow an alternative suggestion for how to go about posting it. Thank you.

Last edited by Kenneth_irl; 02-08-2015 at 07:10 AM.
Kenneth_irl is offline   Reply With Quote
Reply

Tags
percentage, progress bar, removal, remove


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Classic Hide Reading Progress Bar grapaslingo Barnes & Noble NOOK 2 05-16-2012 05:54 PM
No Progress bar on the Touch... grizedale Amazon Kindle 13 09-29-2011 05:02 PM
Understanding the progress bar wanderr Amazon Kindle 3 03-12-2011 02:06 PM
Classic Progress bar is wonky in Softroot 2.4.1 bearymore Nook Developer's Corner 7 07-29-2010 06:55 AM
Progress bar problem orlincho Bookeen 4 07-03-2008 09:45 AM


All times are GMT -4. The time now is 08:54 PM.


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