FBReader

From Openmoko

(Difference between revisions)
Jump to: navigation, search
(Simple hack to fit the screen)
 
(7 intermediate revisions by 5 users not shown)
Line 1: Line 1:
__TOC__
+
[http://www.fbreader.org/ FBReader] is an e-book reader program. It can display txt, fb2, html and various other formats (see [http://www.fbreader.org/about.php http://www.fbreader.org/about.php] for more details).
  
[http://www.fbreader.org/ FBReader] is a e-book reader program. It can work with txt, fb2, html and other various formats formats ([http://www.fbreader.org/about.php more details]).
+
== FBReader on Debian with XFCE ==
  
== FBReader on [[debian]] with XFCE ==
+
Installing under [[Debian]] is quite simple:
  
Using debian installation is quite simple:
+
<pre>
 +
# apt-get install fbreader
 +
</pre>
  
# apt-get install fbreader
+
After that it will appear in XFCE menu (if you use [http://www.xfce.org/ XFCE] of course).
  
After that it will be appeared in XFCE menu (if you use XFCE, of cource).
+
== Simple hack to fit the screen ==
  
== Simple hack to fit on screen ==
+
Launching program causes it to exceed Neo screen, making it will useless to read books. That's because packing layout of toolbar that is too long. To fix this, we can disable some unnecessary buttons. Save current configuration of your toolbar, then edit:
  
Launching program cause to fit the window more, than screen. So, it will be some useless to read books. It is proceed because packing layout of toolbar, that too long. To fix this problem, we can disable some of unnecessary buttons on it. First, copy old configuration of your toolbar, then edit:
+
<pre>
 +
# cp /usr/share/FBReader/default/toolbar.xml /usr/share/FBReader/default/toolbar.xml.orig
 +
# vi /usr/share/FBReader/default/toolbar.xml
 +
</pre>
  
# cp /usr/share/FBReader/default/toolbar.xml /usr/share/FBReader/default/toolbar.xml.orig
+
My suggestion is to edit configuration file like this:
# vi /usr/share/FBReader/default/toolbar.xml
+
  
My suggestion to edit this file like this:
+
<pre>
 +
<?xml version="1.0" encoding="UTF-8"?>
 +
<toolbar>
 +
<menuButton id="showLibrary"/>
 +
<button id="addBook"/>
 +
<separator/>
 +
<button id="toc"/>
 +
<separator/>
 +
<button id="search"/>
 +
<button id="findPrevious"/>
 +
<button id="findNext"/>
 +
<separator/>
 +
<button id="preferences"/>
 +
<button id="rotate"/>
 +
</toolbar>
 +
</pre>
  
<?xml version="1.0" encoding="UTF-8"?>
+
After that FBReader should fit the screen.
<toolbar>
+
        <button id="showLibrary"/>
+
        <button id="addBook"/>
+
        <separator/>
+
        <button id="toc"/>
+
        <separator/>
+
        <button id="search"/>
+
        <button id="findPrevious"/>
+
        <button id="findNext"/>
+
        <separator/>
+
        <button id="preferences"/>
+
        <button id="rotate"/>
+
</toolbar>
+
 
+
After that, FBReader will fit on screen.
+
  
 
{|
 
{|
Line 41: Line 45:
 
[[Image:library.png|300px]]
 
[[Image:library.png|300px]]
 
|}
 
|}
[[category:Applications]]
+
 
 +
<onlyinclude>
 +
{{ApplicationBox|
 +
Name=[[FBReader]]|
 +
Description=E-book reader program (TXT, FB2, HTML and more)|
 +
Screenshot=Read-book.png|
 +
Homepage=http://www.fbreader.org|
 +
TestedOn=Debian|
 +
PackageName=fbreader
 +
}}
 +
</onlyinclude>
 +
 
 +
== FBReader on OM2008.* ==
 +
 
 +
To install, simply run:
 +
 
 +
<pre>
 +
# opkg install http://www.opkg.org/packages/0_fbreader_0.8.2a-r7+elleopatches_om-gta02.ipk
 +
</pre>
 +
 
 +
[[Image:FBReader-OpenMoko.png|300px]]
 +
 
 +
[[Category:Office Applications]]

Latest revision as of 11:23, 7 January 2010

FBReader is an e-book reader program. It can display txt, fb2, html and various other formats (see http://www.fbreader.org/about.php for more details).

[edit] FBReader on Debian with XFCE

Installing under Debian is quite simple:

# apt-get install fbreader

After that it will appear in XFCE menu (if you use XFCE of course).

[edit] Simple hack to fit the screen

Launching program causes it to exceed Neo screen, making it will useless to read books. That's because packing layout of toolbar that is too long. To fix this, we can disable some unnecessary buttons. Save current configuration of your toolbar, then edit:

# cp /usr/share/FBReader/default/toolbar.xml /usr/share/FBReader/default/toolbar.xml.orig
# vi /usr/share/FBReader/default/toolbar.xml

My suggestion is to edit configuration file like this:

<?xml version="1.0" encoding="UTF-8"?>
<toolbar>
 <menuButton id="showLibrary"/>
 <button id="addBook"/>
 <separator/>
 <button id="toc"/>
 <separator/>
 <button id="search"/>
 <button id="findPrevious"/>
 <button id="findNext"/>
 <separator/>
 <button id="preferences"/>
 <button id="rotate"/>
</toolbar>

After that FBReader should fit the screen.

Read-book.png | Library.png


Read-book.png FBReader

E-book reader program (TXT, FB2, HTML and more)


Homepage: http://www.fbreader.org
Package: fbreader
Tested on: Debian



[edit] FBReader on OM2008.*

To install, simply run:

# opkg install http://www.opkg.org/packages/0_fbreader_0.8.2a-r7+elleopatches_om-gta02.ipk

FBReader-OpenMoko.png

Personal tools

Contents


FBReader is a e-book reader program. It can work with txt, fb2, html and other various formats formats (more details).

FBReader on debian with XFCE

Using debian installation is quite simple:

# apt-get install fbreader

After that it will be appeared in XFCE menu (if you use XFCE, of cource).

Simple hack to fit on screen

Launching program cause to fit the window more, than screen. So, it will be some useless to read books. It is proceed because packing layout of toolbar, that too long. To fix this problem, we can disable some of unnecessary buttons on it. First, copy old configuration of your toolbar, then edit:

# cp /usr/share/FBReader/default/toolbar.xml /usr/share/FBReader/default/toolbar.xml.orig
# vi /usr/share/FBReader/default/toolbar.xml

My suggestion to edit this file like this:

<?xml version="1.0" encoding="UTF-8"?>
<toolbar>
       <button id="showLibrary"/>
       <button id="addBook"/>
       <separator/>
       <button id="toc"/>
       <separator/>
       <button id="search"/>
       <button id="findPrevious"/>
       <button id="findNext"/>
       <separator/>
       <button id="preferences"/>
       <button id="rotate"/>
</toolbar>

After that, FBReader will fit on screen.

Read-book.png | Library.png