View Single Post
Old 11-02-2013, 07:42 AM  
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:	761
Size:	11.1 KB
ID:	114489   Click image for larger version

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

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

Name:	screenshot_2013_11_02T11_14_43+0000.png
Views:	799
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