Quote:
Originally Posted by Markismus
After the last line in usersettings.txt I've added:
Code:
ksmGeometryValuesN=748x1014+5+5
ksmGeometryValuesS=748x1014+5+5
ksmGeometryValuesE=1014x748+5+5
ksmGeometryValuesW=1014x748+5+5
After rebooting it didn't result in any change.
Looking at the koreader code
Code:
-- Kobo Aura H2O:
local KoboDahlia = Kobo:new{
model = "Kobo_dahlia",
...
...
-- bezel:
viewport = Geom:new{x=0, y=10, w=1080, h=1430},
I would assume that values would become:
Code:
ksmGeometryValuesS= 1080x1420+5+5
Is this correct?
|
Well, adding the following to the files did it, thank you.
Code:
ksmGeometryValuesN=1080x1430+0+5
ksmGeometryValuesS=1080x1430+0+5
ksmGeometryValuesE=1430x1080+0+5
ksmGeometryValuesW=1430x1080+0+5
(Be sure there is no space after the =)