<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>flatpak Archives - Linux Windows and android Tutorials</title>
	<atom:link href="https://www.osradar.com/tag/flatpak/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.osradar.com</link>
	<description>tutorials and news and Seurity</description>
	<lastBuildDate>Thu, 02 Sep 2021 14:34:41 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.8.12</generator>
	<item>
		<title>Install Spotify on Debian 11</title>
		<link>https://www.osradar.com/install-spotify-desktop-debian/</link>
					<comments>https://www.osradar.com/install-spotify-desktop-debian/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Thu, 02 Sep 2021 17:03:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[bullseye]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[flatpak]]></category>
		<category><![CDATA[spotify]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=31975</guid>

					<description><![CDATA[<p>Hello, friends. For people who like music, one of the first things we do when we first install any Linux distribution is to install Spotify. So, in this post, I will show you how to do it in two fairly simple ways. Spotify is an online music service that allows us through a monthly fee [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-spotify-desktop-debian/">Install Spotify on Debian 11</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Hello, friends. For people who like music, one of the first things we do when we first install any Linux distribution is to install Spotify. So, in this post, I will show you how to do it in two fairly simple ways.</p>



<p><a href="https://www.spotify.com" target="_blank" rel="noreferrer noopener">Spotify </a>is an online music service that allows us through a monthly fee to enjoy the huge catalog it has. It has applications for almost all operating systems including our beloved Debian 11 And I&#8217;m not kidding when I say that this is one of the first things many of us do when installing a new distribution.</p>



<p>Spotify&#8217;s clean Spotify application is quite good. It allows us to browse through the entire application catalog quickly and easily. Also, we can play music, add favorites, and do everything that the web version allows us.</p>



<p>Oh, in case I forgot, with Spotify, we will also have at our disposal many podcasts of all possible topics. So let&#8217;s go for it.</p>



<h2>Install Spotify on Debian 11</h2>



<p>For Debian 11 we have several installation methods that we can take advantage of. One of them is through APT. For this, we add the Spotify repository and from there the installation.</p>



<p>On the other hand, we have the Flatpak package that allows us to isolate it from the system and this method not only works for Debian 11 but any distribution.</p>



<p>Let&#8217;s start.</p>



<h3>Installing Spotify using the repository</h3>



<p>In this process, we need to add the repository to our system. To do this, open a terminal and first update Debian</p>



<pre class="wp-block-preformatted">sudo apt update<br>sudo apt upgrade</pre>



<p>Now download and add the GPG key from the repository to the system.</p>



<pre class="wp-block-preformatted">curl -sS https://download.spotify.com/debian/pubkey_0D811D58.gpg | sudo apt-key add -</pre>



<p>Next, add the Spotify repository to the system</p>



<pre class="wp-block-preformatted">echo "deb http://repository.spotify.com stable non-free" | sudo tee /etc/apt/sources.list.d/spotify.list</pre>



<p>Now, refresh APT</p>



<pre class="wp-block-preformatted">sudo apt update</pre>



<p>And install Spotify by running:</p>



<pre class="wp-block-preformatted">sudo apt install spotify-client</pre>



<p>After the installation is finished you can run it from the main menu.</p>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="536" src="https://www.osradar.com/wp-content/uploads/2021/08/1-14-1024x536.png" alt="1.- Install Spotify on Debian 11" class="wp-image-32025" srcset="https://www.osradar.com/wp-content/uploads/2021/08/1-14-1024x536.png 1024w, https://www.osradar.com/wp-content/uploads/2021/08/1-14-300x157.png 300w, https://www.osradar.com/wp-content/uploads/2021/08/1-14-768x402.png 768w, https://www.osradar.com/wp-content/uploads/2021/08/1-14-696x364.png 696w, https://www.osradar.com/wp-content/uploads/2021/08/1-14-1068x559.png 1068w, https://www.osradar.com/wp-content/uploads/2021/08/1-14.png 1350w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>1.- Install Spotify on Debian 11</figcaption></figure>



<h3>Install Spotify on Debian 11 via Flatpak</h3>



<p>The second method is to use the super reliable Flatpak. So, first, install it on the system</p>



<pre class="wp-block-preformatted">sudo apt install flatpak</pre>



<p>Now add the <a href="https://flathub.org/apps/details/com.spotify.Client" target="_blank" rel="noreferrer noopener">Flathub repository</a> which is where the Spotify package is hosted.</p>



<pre class="wp-block-preformatted">sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo</pre>



<p>And then install Spotify</p>



<pre class="wp-block-preformatted">sudo flatpak install flathub com.spotify.Client</pre>



<p>Finally, run it from the main menu.</p>



<h2>Conclusion</h2>



<p>In this post, you learned how to install Spotify on Debian 11. This way you can now have it on your system and enjoy the service.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-spotify-desktop-debian/">Install Spotify on Debian 11</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-spotify-desktop-debian/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to install Chromium using Flatpak?</title>
		<link>https://www.osradar.com/install-chromium-using-flatpak/</link>
					<comments>https://www.osradar.com/install-chromium-using-flatpak/#respond</comments>
		
		<dc:creator><![CDATA[angeloma]]></dc:creator>
		<pubDate>Fri, 11 Dec 2020 03:43:00 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[chormium]]></category>
		<category><![CDATA[flatpak]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=26624</guid>

					<description><![CDATA[<p>Chromium is a fairly robust alternative to proprietary solutions such as Google Chome. But it is not far from the controversy since Ubuntu in its last LTS version decided not to package it as DEB but as Snap. So now you will learn how to install Chromium using Flatpak on many Linux distributions. We already [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-chromium-using-flatpak/">How to install Chromium using Flatpak?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Chromium is a fairly robust alternative to proprietary solutions such as Google Chome. But it is not far from the controversy since Ubuntu in its last LTS version decided not to package it as DEB but as Snap. So now you will learn how to install Chromium using Flatpak on many Linux distributions.</p>



<p>We already know that Flatpak is a fantastic technology and is widely used by many distributions like Debian, Linux Mint, OpenSUSE or Fedora. Therefore it is a very good installation method if you don&#8217;t use Linux Mint or if you don&#8217;t like Snap.</p>



<h2>Briefly, what is Chromium?</h2>



<p><a href="https://www.chromium.org/" target="_blank" rel="noreferrer noopener">Chromium</a> is an open-source browser project that aims to build a safer, faster, and more stable way for all users to experience the web. In case you didn’t know, Chromium is the basis of the well-known Google Chrome and they share many features. They only differ in the support of proprietary multimedia files and small things more.</p>



<p>The problem came when Ubuntu 20.04 included Chromium in <a href="https://www.osradar.com/install-spotify-using-snap/" target="_blank" rel="noreferrer noopener">Snap</a> format. This forced users to use Snap if they wanted Chromium.</p>



<p>Now, this has changed because the Linux Mint team has packaged Chromium in DEB form so it is now easier to do.</p>



<p>Let’s get started.</p>



<h2>Install Chromium using Flatpak</h2>



<p>One of the first things we have to do is make sure we have Flatpak in our system.</p>



<p>If you use <a href="https://www.osradar.com/tag/ubuntu" target="_blank" rel="noreferrer noopener">Ubuntu</a> 20.04 or <a href="https://www.osradar.com/tag/debian" target="_blank" rel="noreferrer noopener">Debian 10</a>, run this command to install Flatpak</p>



<pre class="wp-block-preformatted">sudo apt install flatpak</pre>



<p>For Ubuntu 18.04, add a repository to have a recent version of Flatpak:</p>



<pre class="wp-block-preformatted">sudo add-apt-repository ppa:alexlarsson/flatpak<br>sudo apt update<br>sudo apt install flatpak</pre>



<p>In the case of Fedora, you don&#8217;t have to do anything because Flatpak is already installed and configured by default in the distribution.</p>



<p>If you use OpenSUSE everything comes down to this command:</p>



<pre class="wp-block-preformatted">sudo zypper install flatpak</pre>



<p>On the other hand, if your operating system is Arch Linux or one of its derivatives, you have to execute the following command:</p>



<pre class="wp-block-preformatted">sudo pacman -S flatpak</pre>



<p>Now what I want to do is to add the Flathub repository which is the biggest Flatpak application repository there is.</p>



<pre class="wp-block-preformatted">flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo</pre>



<p>And later, to carry out the installation with the following command:</p>



<pre class="wp-block-preformatted">flatpak install flathub org.chromium.Chromium</pre>



<p>Then you can run it from the main menu or by executing this command:</p>



<pre class="wp-block-preformatted">flatpak run org.chromium.Chromium</pre>



<figure class="wp-block-image size-large"><img loading="lazy" width="1024" height="575" src="https://www.osradar.com/wp-content/uploads/2020/12/1-2-1024x575.png" alt="1.- Chromium using Flatpak running" class="wp-image-26631" srcset="https://www.osradar.com/wp-content/uploads/2020/12/1-2-1024x575.png 1024w, https://www.osradar.com/wp-content/uploads/2020/12/1-2-300x168.png 300w, https://www.osradar.com/wp-content/uploads/2020/12/1-2-768x431.png 768w, https://www.osradar.com/wp-content/uploads/2020/12/1-2-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2020/12/1-2-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2020/12/1-2.png 1366w" sizes="(max-width: 1024px) 100vw, 1024px" /><figcaption>1.- Chromium using Flatpak running</figcaption></figure>



<p>And voilà…</p>



<h2>Conclusion</h2>



<p>Google Chrome is the most popular browser out there but there is always an alternative to the giant and this is run by Firefox and Chromium. The latter is quite similar and in fact is the root of the project.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/install-chromium-using-flatpak/">How to install Chromium using Flatpak?</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/install-chromium-using-flatpak/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Looking for an e-book reader for GNU/LINUX? Bookworn is here</title>
		<link>https://www.osradar.com/looking-for-an-e-book-reader-for-gnu-linux-bookworn-is-here/</link>
					<comments>https://www.osradar.com/looking-for-an-e-book-reader-for-gnu-linux-bookworn-is-here/#respond</comments>
		
		<dc:creator><![CDATA[Mel]]></dc:creator>
		<pubDate>Tue, 12 Jun 2018 10:12:54 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[ebooks]]></category>
		<category><![CDATA[flatpak]]></category>
		<category><![CDATA[Tutorial]]></category>
		<guid isPermaLink="false">https://www.osradar.com/?p=3896</guid>

					<description><![CDATA[<p>There are still people who like to read e-books from their pc because they are comfortable with it because the font size can be bigger, or simply because they want to. Within GNU/LINUX we have a veteran program like Calibre that has already positioned itself as a reference in the field of e-books, but is [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/looking-for-an-e-book-reader-for-gnu-linux-bookworn-is-here/">Looking for an e-book reader for GNU/LINUX? Bookworn is here</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>There are still people who like to read e-books from their pc because they are comfortable with it because the font size can be bigger, or simply because they want to.</p>
<p>Within GNU/LINUX we have a veteran program like Calibre that has already positioned itself as a reference in the field of e-books, but is not properly an Epubs reader.</p>
<h3>Simplicity to read E-book</h3>
<p>Simplicity is in fashion, that paradigm of clean interfaces but without removing functionality, I like it. <strong>Bookworm</strong> also joins this model of graphical interfaces, introducing itself like &#8221; A simple, focused eBook reader &#8220;. It was originally intended to be used only in Elementary OS but due to community contributions, its use was extended to other distributions.</p>
<p>Some of its features are:</p>
<ul>
<li>Supports the following formats: Epub, Pdf, MOBI, cbr and cbz.</li>
<li>Toggle between a grid view and a list view for the library.</li>
<li>Filtering using the search bar in the library view</li>
<li>Full screen mode is supported</li>
<li>Multiple pages of the book can be bookmarked</li>
<li>Three reading profiles of light, sepia and dark</li>
<li>Possibility to customize the font size</li>
</ul>
<h3>Installing Bookworm is easy thanks to Flatpak</h3>
<p>Bookworn is an open source project and therefore we can install it from its sources, as well as from your Github website, but <strong>we can install it on any GNU/LINUX distribution</strong> that supports flatpak.</p>
<p>In order not to make the matter complicated, we can say that Flatpak is a technology that allows applications to run in a kind of sandbox isolating it from the system in general. The main advantage of this is that you can install a program with all its dependencies on any GNU/LINUX distribution that supports Flatpak. Then our first step will be to install flatpak:</p>
<p>Debian, Ubuntu or derivates:</p>
<p><strong>           sudo apt install flatpak</strong></p>
<p>Arch Linux and derivates</p>
<p><strong>          sudo pacman -S flatpak</strong></p>
<p>Solus OS:</p>
<p><strong>          sudo eopkg install flatpak xdg-desktop-portal-gtk</strong></p>
<p>And OpenSuse:</p>
<p><strong>         sudo zypper in flatpak</strong></p>
<p>Note: Some distributions like Fedora and Linux Mint, Flatpak is already installed.</p>
<p><figure id="attachment_3904" aria-describedby="caption-attachment-3904" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3904" src="https://www.osradar.com/wp-content/uploads/2018/06/1-5.png" alt="1.- Installing Flatpak" width="1366" height="707" srcset="https://www.osradar.com/wp-content/uploads/2018/06/1-5.png 1366w, https://www.osradar.com/wp-content/uploads/2018/06/1-5-300x155.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/1-5-768x397.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/1-5-1024x530.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/1-5-696x360.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/1-5-1068x553.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/1-5-811x420.png 811w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-3904" class="wp-caption-text">1.- Installing Flatpak</figcaption></figure></p>
<p>Once installed flatpak, proceed to install it with the command (Not root user):</p>
<p><strong>           flatpak install &#8211;from https://flathub.org/repo/appstream/com.github.babluboy.bookworm.flatpakref</strong></p>
<p><figure id="attachment_3905" aria-describedby="caption-attachment-3905" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3905" src="https://www.osradar.com/wp-content/uploads/2018/06/2-6.png" alt="2.-Installing Bookworm" width="1366" height="707" srcset="https://www.osradar.com/wp-content/uploads/2018/06/2-6.png 1366w, https://www.osradar.com/wp-content/uploads/2018/06/2-6-300x155.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/2-6-768x397.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/2-6-1024x530.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/2-6-696x360.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/2-6-1068x553.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/2-6-811x420.png 811w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-3905" class="wp-caption-text">2.-Installing Bookworm</figcaption></figure></p>
<p><figure id="attachment_3906" aria-describedby="caption-attachment-3906" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3906" src="https://www.osradar.com/wp-content/uploads/2018/06/3-6.png" alt="3.- Installing Bookworm" width="1366" height="707" srcset="https://www.osradar.com/wp-content/uploads/2018/06/3-6.png 1366w, https://www.osradar.com/wp-content/uploads/2018/06/3-6-300x155.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/3-6-768x397.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/3-6-1024x530.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/3-6-696x360.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/3-6-1068x553.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/3-6-811x420.png 811w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-3906" class="wp-caption-text">3.- Installing Bookworm</figcaption></figure></p>
<p>During the download and installation of Bookworm, the super user password will be requested several times.</p>
<p>Once the process is finished, we can run it from our applications menu.</p>
<p><figure id="attachment_3907" aria-describedby="caption-attachment-3907" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3907" src="https://www.osradar.com/wp-content/uploads/2018/06/4-5.png" alt="4.- Bookworm" width="1366" height="741" srcset="https://www.osradar.com/wp-content/uploads/2018/06/4-5.png 1366w, https://www.osradar.com/wp-content/uploads/2018/06/4-5-300x163.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/4-5-768x417.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/4-5-1024x555.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/4-5-696x378.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/4-5-1068x579.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/4-5-774x420.png 774w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-3907" class="wp-caption-text">4.- Bookworm</figcaption></figure></p>
<p>As we can see, since we don&#8217;t have an e-book in our home folder, the program asks us to add some. After adding some that I had available, it looks like this:</p>
<p><figure id="attachment_3908" aria-describedby="caption-attachment-3908" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3908" src="https://www.osradar.com/wp-content/uploads/2018/06/5-6.png" alt="5.- Added books" width="1366" height="741" srcset="https://www.osradar.com/wp-content/uploads/2018/06/5-6.png 1366w, https://www.osradar.com/wp-content/uploads/2018/06/5-6-300x163.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/5-6-768x417.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/5-6-1024x555.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/5-6-696x378.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/5-6-1068x579.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/5-6-774x420.png 774w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-3908" class="wp-caption-text">5.- Added books</figcaption></figure></p>
<p>We can also change the view of our library</p>
<p><figure id="attachment_3909" aria-describedby="caption-attachment-3909" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3909" src="https://www.osradar.com/wp-content/uploads/2018/06/6-6.png" alt="6.- List of books" width="1366" height="741" srcset="https://www.osradar.com/wp-content/uploads/2018/06/6-6.png 1366w, https://www.osradar.com/wp-content/uploads/2018/06/6-6-300x163.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/6-6-768x417.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/6-6-1024x555.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/6-6-696x378.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/6-6-1068x579.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/6-6-774x420.png 774w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-3909" class="wp-caption-text">6.- List of books</figcaption></figure></p>
<p>Here the options window, highlighting the possibility of switching to night mode and the font.</p>
<p><figure id="attachment_3910" aria-describedby="caption-attachment-3910" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3910" src="https://www.osradar.com/wp-content/uploads/2018/06/7-4.png" alt="7.- Settings" width="1366" height="768" srcset="https://www.osradar.com/wp-content/uploads/2018/06/7-4.png 1366w, https://www.osradar.com/wp-content/uploads/2018/06/7-4-300x169.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/7-4-768x432.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/7-4-1024x576.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/7-4-696x391.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/7-4-1068x600.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/7-4-747x420.png 747w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-3910" class="wp-caption-text">7.- Settings</figcaption></figure></p>
<p>When you click on one of the e-books, it immediately displays its content.</p>
<p><figure id="attachment_3911" aria-describedby="caption-attachment-3911" style="width: 1366px" class="wp-caption alignnone"><img loading="lazy" class="size-full wp-image-3911" src="https://www.osradar.com/wp-content/uploads/2018/06/8-5.png" alt="8.- Displaying content" width="1366" height="741" srcset="https://www.osradar.com/wp-content/uploads/2018/06/8-5.png 1366w, https://www.osradar.com/wp-content/uploads/2018/06/8-5-300x163.png 300w, https://www.osradar.com/wp-content/uploads/2018/06/8-5-768x417.png 768w, https://www.osradar.com/wp-content/uploads/2018/06/8-5-1024x555.png 1024w, https://www.osradar.com/wp-content/uploads/2018/06/8-5-696x378.png 696w, https://www.osradar.com/wp-content/uploads/2018/06/8-5-1068x579.png 1068w, https://www.osradar.com/wp-content/uploads/2018/06/8-5-774x420.png 774w" sizes="(max-width: 1366px) 100vw, 1366px" /><figcaption id="caption-attachment-3911" class="wp-caption-text">8.- Displaying content</figcaption></figure></p>
<p>Reading is very important, so much so that it is a fundamental process of learning and thanks to the Internet we can obtain many works in a few clicks and at a reasonable price; but a suitable program would be needed to be able to enjoy reading. Bookworm emerges as a valid and simple alternative to read comfortably from our e-books.</p>
<p>The post <a rel="nofollow" href="https://www.osradar.com/looking-for-an-e-book-reader-for-gnu-linux-bookworn-is-here/">Looking for an e-book reader for GNU/LINUX? Bookworn is here</a> appeared first on <a rel="nofollow" href="https://www.osradar.com">Linux  Windows and android  Tutorials</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.osradar.com/looking-for-an-e-book-reader-for-gnu-linux-bookworn-is-here/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
