<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>in ♥️ with linux</title>
    <link>https://inlovewithlinux.com/</link>
    <description>After 20 years with macOS, I returned to Linux &lt;span&gt;many&lt;/span&gt; days ago, including &lt;strong&gt;some&lt;/strong&gt; days without hopping  on openSUSE.</description>
    <pubDate>Thu, 28 May 2026 00:53:28 +0200</pubDate>
    <item>
      <title>Unify GTK3 and GTK4 - Firefox</title>
      <link>https://inlovewithlinux.com/unify-gtk3-and-gtk4-firefox</link>
      <description>&lt;![CDATA[Small disclaimer: Since I&#39;m using Debian Stable, I&#39;m still on GNOME 48. Some of my issues might already be fixed in the latest version...&#xA;&#xA;Personally, I think libadwaita&#39;s design language is the best thing that could happen to a UI. Kind of like Apple back in the day. I just love the look of GTK4 and Adwaita.&#xA;&#xA;adw-gtk3&#xA;&#xA;Since many great apps still use GTK3, adw-gtk3 is a good theme to make those apps look more similar to GTK4.&#xA;It doesn’t quite work because GTK3 only has rounded corners at the top of the window, while GTK4 has all corners rounded. You could tweak it to match, but it wouldn’t make sense since GTK3 apps often have a status bar at the bottom of the window.&#xA;&#xA;Geany in stock Gtk3&#xA;&#xA;Geany in adw-gtk3&#xA;&#xA;I just installed the gtk-3.0 files, because I have no need for tweaking GTK4.&#xA;&#xA;tweaking Firefox (or Librewolf)&#xA;&#xA;Firefox (or in my case, Librewolf) also still uses GTK3 but can have rounded corners at the bottom as well.&#xA;You just need to enable it via about:config.&#xA;Just set widget.gtk.rounded-bottom-corners.enabled to true.&#xA;&#xA;Firefox in stock GTK3&#xA;&#xA;Firefox in adw-gtk3&#xA;&#xA;fixing glitches&#xA;&#xA;Since adw-gtk3 isn’t designed with this in mind (round corners in the bottom), we still need to do a bit of manual tweaking to avoid display issues.&#xA;&#xA;corner glitch&#xA;&#xA;I also have a scaling glitch. On my laptop with 125% UI scaling, Firefox looks good, but on my desktop with 150%, I unfortunately often get a display glitch when moving the window. A dark line appears at the top of the window. This, as mentioned, is under GNOME 48 and only happens with Firefox/Librewolf on my setup (but maybe on yours too).&#xA;&#xA;The solution is both complicated and simple at the same time:&#xA;&#xA;Firefox gets its own GTK theme, which modifies adw-gtk3.&#xA;&#xA;The theme add border-radius and disables the 1px border that causes the glitch.&#xA;&#xA;The &#34;theme&#34; uses a gtk.css file, and for me, it&#39;s located in ~/.local/share/themes/gtk-3.0/.&#xA;&#xA;It assumes that adw-gtk3 is also in ~/.local/share/themes. Otherwise, the path needs to be adjusted.&#xA;&#xA;@import url(&#34;../../adw-gtk3/gtk-3.0/gtk.css&#34;);&#xA;decoration {&#xA;  border-radius: 15px;&#xA;  box-shadow:&#xA;    0 3px 8px 0 rgba(0, 0, 0, 0.3),&#xA;    0 0 0 0 @headerbarbgcolor;&#xA;}&#xA;&#xA;Now we just need to start Firefox individually with this theme. That works with&#xA;&#xA;env GTKTHEME=rounded firefox&#xA;&#xA;For a permanent fix, we copy the relevant .desktop file from /usr/share/applications/ to ~/.local/share/applications/ an adjust the Exec entries to&#xA;&#xA;Exec=env GTKTHEME=rounded /usr/lib/firefox-esr/firefox-esr %u&#xA;&#xA;For Librewolf, of course, the corresponding launcher needs to be adjusted.&#xA;&#xA;Firefox fixed]]&gt;</description>
      <content:encoded><![CDATA[<p><strong>Small disclaimer:</strong> Since I&#39;m using Debian Stable, I&#39;m still on GNOME 48. Some of my issues might already be fixed in the latest version...</p>

<p>Personally, I think libadwaita&#39;s design language is the best thing that could happen to a UI. Kind of like Apple back in the day. I just love the look of GTK4 and Adwaita.</p>

<h2 id="adw-gtk3">adw-gtk3</h2>

<p>Since many great apps still use GTK3, <a href="https://github.com/lassekongo83/adw-gtk3">adw-gtk3</a> is a good theme to make those apps look more similar to GTK4.
It doesn’t quite work because GTK3 only has rounded corners at the top of the window, while GTK4 has all corners rounded. You could tweak it to match, but it wouldn’t make sense since GTK3 apps often have a status bar at the bottom of the window.</p>

<p><img src="/posts/260525/geany1-min.png" alt="Geany in stock Gtk3"></p>

<p><img src="/posts/260525/geany2-min.png" alt="Geany in adw-gtk3"></p>

<p>I just installed the gtk-3.0 files, because I have no need for tweaking GTK4.</p>

<h2 id="tweaking-firefox-or-librewolf">tweaking Firefox (or Librewolf)</h2>

<p>Firefox (or in my case, Librewolf) also still uses GTK3 but can have rounded corners at the bottom as well.
You just need to enable it via <strong>about:config</strong>.
Just set <strong>widget.gtk.rounded-bottom-corners.enabled</strong> to <strong>true</strong>.</p>

<p><img src="/posts/260525/firefox1-min.png" alt="Firefox in stock GTK3"></p>

<p><img src="/posts/260525/firefox2-min.png" alt="Firefox in adw-gtk3"></p>

<h3 id="fixing-glitches">fixing glitches</h3>

<p>Since adw-gtk3 isn’t designed with this in mind (round corners in the bottom), we still need to do a bit of manual tweaking to avoid display issues.</p>

<p><img src="/posts/260525/ecke-min.png" alt="corner glitch"></p>

<p>I also have a scaling glitch. On my laptop with 125% UI scaling, Firefox looks good, but on my desktop with 150%, I unfortunately often get a display glitch when moving the window. A dark line appears at the top of the window. This, as mentioned, is under GNOME 48 and only happens with Firefox/Librewolf on my setup (but maybe on yours too).</p>

<p>The solution is both complicated and simple at the same time:</p>

<p>Firefox gets its own GTK theme, which modifies adw-gtk3.</p>

<p>The theme add border-radius and disables the 1px border that causes the glitch.</p>

<p>The “theme” uses a <strong>gtk.css</strong> file, and for me, it&#39;s located in <strong>~/.local/share/themes/gtk-3.0/</strong>.</p>

<p>It assumes that <strong>adw-gtk3</strong> is also in <strong>~/.local/share/themes</strong>. Otherwise, the path needs to be adjusted.</p>

<pre><code>@import url(&#34;../../adw-gtk3/gtk-3.0/gtk.css&#34;);
decoration {
  border-radius: 15px;
  box-shadow:
    0 3px 8px 0 rgba(0, 0, 0, 0.3),
    0 0 0 0 @headerbar_bg_color;
}
</code></pre>

<p>Now we just need to start Firefox individually with this theme. That works with</p>

<p><code>env GTK_THEME=rounded firefox</code></p>

<p>For a permanent fix, we copy the relevant <strong>.desktop</strong> file from <strong>/usr/share/applications/</strong> to <strong>~/.local/share/applications/</strong> an adjust the <strong>Exec</strong> entries to</p>

<p><code>Exec=env GTK_THEME=rounded /usr/lib/firefox-esr/firefox-esr %u</code></p>

<p>For Librewolf, of course, the corresponding launcher needs to be adjusted.</p>

<p><img src="/posts/260525/firefox3-min.png" alt="Firefox fixed"></p>
]]></content:encoded>
      <guid>https://inlovewithlinux.com/unify-gtk3-and-gtk4-firefox</guid>
      <pubDate>Mon, 25 May 2026 10:57:35 +0200</pubDate>
    </item>
    <item>
      <title>1-year debian: fourth month</title>
      <link>https://inlovewithlinux.com/1-year-debian-fourth-month</link>
      <description>&lt;![CDATA[Now that I&#39;m four months into my one-year “Don&#39;t Distrohop” Debian challenge, I can say that it continues to prove (to me) that choosing “stable” was the right decision. Basically, though, this applies to every LTS version. Instead of constantly chasing after the latest version (as in a rolling release) and putting my energy into updates and “pimping” the UI, I’d rather learn how to use the “old” version properly.&#xA;&#xA;still stable with a bit of frankendebian&#xA;&#xA;Debian stable, combined with backports and Flatpak, is still enough for me.&#xA;&#xA;I’ve only broken the golden rule that stable and testing must never be mixed (FrankenDebian) for one package: framework-tool&#xA;&#xA;This tool is handy for managing my frame.work 12 from the terminal... the charging limit and stuff like that.&#xA;&#xA;But apt configuration does allow you to set the priority of the sources, so only this one package is installed from the testing repository.&#xA;&#xA;more and more love for GNOME&#xA;&#xA;Even after four months, it’s clear to me that there’s no better desktop environment than GNOME.&#xA;&#xA;Sometimes I feel like the system was built just for me. Sure, there are one or two things I’ve tweaked, but basically, the system is perfect.&#xA;&#xA;The only thing is, it would be nice if GTK3 and GTK4 were a bit more consistent… but it’s fine as it is.&#xA;&#xA;understanding systemd (a bit)&#xA;&#xA;I understand systemd more and more. Whether it&#39;s creating services or reading logs. I don&#39;t know where the hate comes from. I find it quite practical.&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Now that I&#39;m four months into my one-year “Don&#39;t Distrohop” Debian challenge, I can say that it continues to prove (to me) that choosing “stable” was the right decision. Basically, though, this applies to every LTS version. Instead of constantly chasing after the latest version (as in a rolling release) and putting my energy into updates and “pimping” the UI, I’d rather learn how to use the “old” version properly.</p>

<h2 id="still-stable-with-a-bit-of-frankendebian">still stable with a bit of frankendebian</h2>

<p>Debian stable, combined with backports and Flatpak, is still enough for me.</p>

<p>I’ve only broken the golden rule that stable and testing must never be mixed (<a href="https://wiki.debian.org/DontBreakDebian">FrankenDebian</a>) for one package: <a href="https://packages.debian.org/forky/framework-tool">framework-tool</a></p>

<p>This tool is handy for managing my <a href="https://frame.work/de/en/laptop12">frame.work 12</a> from the terminal... the charging limit and stuff like that.</p>

<p>But <a href="https://wiki.debian.org/AptConfiguration">apt configuration</a> does allow you to set the priority of the sources, so only this one package is installed from the testing repository.</p>

<h2 id="more-and-more-love-for-gnome">more and more love for GNOME</h2>

<p>Even after four months, it’s clear to me that there’s no better desktop environment than <a href="https://www.gnome.org">GNOME</a>.</p>

<p>Sometimes I feel like the system was built just for me. Sure, there are one or two things I’ve tweaked, but basically, the system is perfect.</p>

<p>The only thing is, it would be nice if GTK3 and GTK4 were a bit more consistent… but it’s fine as it is.</p>

<h2 id="understanding-systemd-a-bit">understanding systemd (a bit)</h2>

<p>I understand systemd more and more. Whether it&#39;s creating services or reading logs. I don&#39;t know where the hate comes from. I find it quite practical.</p>
]]></content:encoded>
      <guid>https://inlovewithlinux.com/1-year-debian-fourth-month</guid>
      <pubDate>Tue, 12 May 2026 06:30:52 +0200</pubDate>
    </item>
    <item>
      <title>local paperless-ngx</title>
      <link>https://inlovewithlinux.com/local-paperless-ngx</link>
      <description>&lt;![CDATA[A quick disclaimer: I&#39;m not entirely sure what I&#39;m doing here. This weekend was my first time working with podman. So... try this at your own risk!&#xA;&#xA;a little background first&#xA;On the mac, Devonthink has always been—and still is—the best program ever. Simply because all documents are managed locally on the computer. In other words, the app doesn’t require the cloud.&#xA;When I switched to Linux, it really bothered me that I couldn&#39;t find a suitable alternative. Paperwork, for example, also manages documents locally on the computer, but its design was too basic (in my opinion), and I just couldn&#39;t get into it.&#xA;&#xA;paperless-ngx&#xA;  Paperless-ngx is a community-supported open-source document management system that transforms your physical documents into a searchable online archive so you can keep, well, less paper.&#xA;&#xA;This quote from the homepage describes paperless-ngx pretty well, though the “online” part bothered me a bit.&#xA;I don&#39;t want to store my files online on a server, and keeping them on a local NAS doesn&#39;t make sense either, because then I wouldn&#39;t have them with me when I&#39;m on the go.&#xA;&#xA;solution: local paperless-ngx&#xA;Podman comes to the rescue. Thanks to Podman, I can run Paperless locally on my computers (running debian) using containers. It was surprisingly easy (I only wasted an entire Saturday experimenting with it).&#xA;&#xA;installation&#xA;&#xA;preparation&#xA;Well, you need podman ... &#xA;&#xA;sudo apt install podman-compose&#xA;&#xA;container setup&#xA;First, you need to create a container using Podman. To do this, you’ll need three files in a folder (in my case, paperless-ngx). This folder is simply located in the user’s home directory.&#xA;&#xA;I mainly followed these instructions on linuxguides.de (thanks for the tip Christian!) and the output of the paperless-ngx installer.&#xA;&#xA;.env (hidden file):&#xA;&#xA;COMPOSEPROJECTNAME=paperless&#xA;&#xA;docker-compose.env:&#xA;&#xA;PAPERLESSTIMEZONE=Europe/Berlin&#xA;PAPERLESSOCRLANGUAGE=deu+eng&#xA;USERMAPUID=0&#xA;USERMAPGID=0&#xA;&#xA;docker-compose.yml:&#xA;&#xA;name: paperless&#xA;services:&#xA;  broker:&#xA;    image: docker.io/library/redis:8&#xA;    restart: unless-stopped&#xA;    volumes:&#xA;      redisdata:/data&#xA;  webserver:&#xA;    image: ghcr.io/paperless-ngx/paperless-ngx:latest&#xA;    restart: unless-stopped&#xA;    dependson:&#xA;      broker&#xA;    ports:&#xA;      &#34;8000:8000&#34;&#xA;    volumes:&#xA;      ~/Dokumente/Paperless/Data:/usr/src/paperless/data&#xA;      ~/Dokumente/Paperless/Media:/usr/src/paperless/media&#xA;      ~/Dokumente/Paperless/Export:/usr/src/paperless/export&#xA;      ~/Dokumente/Paperless/Import:/usr/src/paperless/consume&#xA;    envfile: docker-compose.env&#xA;    environment:&#xA;      PAPERLESSREDIS: redis://broker:6379&#xA;volumes:&#xA;  redisdata:&#xA;&#xA;I decided to use SQLite as the database because it will allow me to easily sync it between my computers later using Synthing.&#xA;&#xA;It is important to adjust the volumes. These are located in my “Documents” folder under “paperless.”&#xA;&#xA;Data: the database&#xA;&#xA;Media: all the files&#xA;&#xA;Export: Export Folder&#xA;&#xA;Import: Drop documents in this folder for adding them&#xA;&#xA;The “paperless” folder contains the entire contents of paperless-ngx, making it very easy to back up or sync.&#xA;&#xA;container compose&#xA;In that folder, just run &#xA;&#xA;podman compose up&#xA;&#xA;and everything will be installed.&#xA;&#xA;start and stop the container&#xA;&#xA;The paperless-ngx container doesn&#39;t need to run all the time—only when I need to access it. So I wrote a little Bash script to start or stop the container.&#xA;Just a quick heads-up: I&#39;m a novice and like to keep things colorful ;)&#xA;&#xA;paperless.sh:&#xA;&#xA;!/bin/bash&#xA;&#xA;set -euo pipefail&#xA;&#xA;Colors&#xA;readonly BLUE=&#39;\033[0;34m&#39;&#xA;readonly RED=&#39;\033[0;31m&#39;&#xA;readonly GREEN=&#39;\033[0;32m&#39;&#xA;readonly YELLOW=&#39;\033[1;33m&#39;&#xA;readonly NC=&#39;\033[0m&#39;&#xA;&#xA;BROKER=&#34;paperlessbroker1&#34;&#xA;WEBSERVER=&#34;paperlesswebserver1&#34;&#xA;&#xA;Check, if container are running&#xA;bothrunning() {&#xA;    [ &#34;$(/usr/bin/podman inspect -f &#39;{{.State.Running}}&#39; &#34;$BROKER&#34; 2  /dev/null)&#34; = &#34;true&#34; ] &amp;&amp;&#xA;    [ &#34;$(/usr/bin/podman inspect -f &#39;{{.State.Running}}&#39; &#34;$WEBSERVER&#34; 2  /dev/null)&#34; = &#34;true&#34; ]&#xA;}&#xA;&#xA;Start Containers&#xA;startcontainers() {&#xA;    echo -e &#34;${YELLOW}🟡 Starting $BROKER${NC}&#34;&#xA;    /usr/bin/podman start &#34;$BROKER&#34;   /dev/null 2  &amp;1&#xA;    sleep 2&#xA;    echo -e &#34;${YELLOW}🟡 Starting $WEBSERVER${NC}&#34;&#xA;    /usr/bin/podman start &#34;$WEBSERVER&#34;   /dev/null 2  &amp;1&#xA;    echo -e &#34;${GREEN}🟢 Both Containers running.${NC}&#34;&#xA;}&#xA;&#xA;Stop Containers&#xA;stopcontainers() {&#xA;    echo -ne &#34;${YELLOW}⚠️  Stop Container? ${NC}&#34;&#xA;    read -p &#34;(j/n) [n]: &#34; answer&#xA;    echo&#xA;    if [ &#34;$answer&#34; = &#34;j&#34; ]; then&#xA;        echo -e &#34;${YELLOW}🟡 Stopping $WEBSERVER${NC}&#34;&#xA;        /usr/bin/podman stop &#34;$WEBSERVER&#34;   /dev/null 2  &amp;1&#xA;        sleep 2&#xA;        echo -e &#34;${YELLOW}🟡 Stopping $BROKER${NC}&#34;&#xA;        /usr/bin/podman stop &#34;$BROKER&#34;   /dev/null 2  &amp;1&#xA;        echo&#xA;        echo -e &#34;${GREEN}🟢 Both Containers are stopped.${NC}&#34;&#xA;    else&#xA;        echo -e &#34;${RED}🔴 Cancel: Containers still running.${NC}&#34;&#xA;    fi&#xA;}&#xA;&#xA;Main&#xA;echo&#xA;echo &#34;### Paperless-ngx - Podman ###&#34;&#xA;echo&#xA;if bothrunning; then&#xA;    stopcontainers&#xA;else&#xA;    startcontainers&#xA;fi&#xA;&#xA;Access Paperless&#xA;&#xA;Just go to http://localhost:8000 in your browser, and everything works perfectly.&#xA;&#xA;Sync and backup&#xA;&#xA;As mentioned earlier, the “Paperless” folder in “Documents” contains everything and can be synced between computers using Syncthing, for example.&#xA;This folder is also very easy to back up.&#xA;&#xA;Manage podman&#xA;&#xA;Of course, you can also do this via the CLI, but I like the simplicity of cockpit, which can also be used on Debian. Cockpit has a handy module for managing Podman.&#xA;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p><strong>A quick disclaimer:</strong> I&#39;m not entirely sure what I&#39;m doing here. This weekend was my first time working with <a href="https://podman.io/">podman</a>. So... try this at your own risk!</p>

<h2 id="a-little-background-first">a little background first</h2>

<p>On the mac, <a href="https://www.devontechnologies.com/">Devonthink</a> has always been—and still is—the best program ever. Simply because all documents are managed locally on the computer. In other words, the app doesn’t require the cloud.
When I switched to Linux, it really bothered me that I couldn&#39;t find a suitable alternative. <a href="https://www.openpaper.work/">Paperwork</a>, for example, also manages documents locally on the computer, but its design was too basic (in my opinion), and I just couldn&#39;t get into it.</p>

<h2 id="paperless-ngx">paperless-ngx</h2>

<blockquote><p>Paperless-ngx is a community-supported open-source document management system that transforms your physical documents into a searchable online archive so you can keep, well, less paper.</p></blockquote>

<p>This quote from the homepage describes <a href="https://docs.paperless-ngx.com/">paperless-ngx</a> pretty well, though the “online” part bothered me a bit.
I don&#39;t want to store my files online on a server, and keeping them on a local NAS doesn&#39;t make sense either, because then I wouldn&#39;t have them with me when I&#39;m on the go.</p>

<h2 id="solution-local-paperless-ngx">solution: local paperless-ngx</h2>

<p><a href="https://podman.io/">Podman</a> comes to the rescue. Thanks to Podman, I can run Paperless locally on my computers (running <a href="https://www.debian.org/">debian</a>) using containers. It was surprisingly easy (I only wasted an entire Saturday experimenting with it).</p>

<h2 id="installation">installation</h2>

<h3 id="preparation">preparation</h3>

<p>Well, you need podman ...</p>

<p><code>sudo apt install podman-compose</code></p>

<h2 id="container-setup">container setup</h2>

<p>First, you need to create a container using Podman. To do this, you’ll need three files in a folder (in my case, paperless-ngx). This folder is simply located in the user’s home directory.</p>

<p>I mainly followed these instructions on <a href="https://forum.linuxguides.de/index.php?thread/11519-paperless-ngx-installation-mit-podman/">linuxguides.de</a> (thanks for the tip <a href="https://chaos.social/@stdevel">Christian</a>!) and the output of the <a href="https://docs.paperless-ngx.com/setup/#docker_script">paperless-ngx installer</a>.</p>

<p><strong>.env</strong> (hidden file):</p>

<p><code>COMPOSE_PROJECT_NAME=paperless</code></p>

<p><strong>docker-compose.env</strong>:</p>

<pre><code>PAPERLESS_TIME_ZONE=Europe/Berlin
PAPERLESS_OCR_LANGUAGE=deu+eng
USERMAP_UID=0
USERMAP_GID=0
</code></pre>

<p><strong>docker-compose.yml</strong>:</p>

<pre><code>name: paperless
services:
  broker:
    image: docker.io/library/redis:8
    restart: unless-stopped
    volumes:
      - redisdata:/data
  webserver:
    image: ghcr.io/paperless-ngx/paperless-ngx:latest
    restart: unless-stopped
    depends_on:
      - broker
    ports:
      - &#34;8000:8000&#34;
    volumes:
      - ~/Dokumente/Paperless/Data:/usr/src/paperless/data
      - ~/Dokumente/Paperless/Media:/usr/src/paperless/media
      - ~/Dokumente/Paperless/Export:/usr/src/paperless/export
      - ~/Dokumente/Paperless/Import:/usr/src/paperless/consume
    env_file: docker-compose.env
    environment:
      PAPERLESS_REDIS: redis://broker:6379
volumes:
  redisdata:
</code></pre>

<p>I decided to use SQLite as the database because it will allow me to easily sync it between my computers later using <a href="https://syncthing.net/">Synthing</a>.</p>

<p>It is important to adjust the volumes. These are located in my “Documents” folder under “paperless.”</p>

<p><strong>Data:</strong> the database</p>

<p><strong>Media:</strong> all the files</p>

<p><strong>Export:</strong> Export Folder</p>

<p><strong>Import:</strong> Drop documents in this folder for adding them</p>

<p>The “paperless” folder contains the entire contents of paperless-ngx, making it very easy to back up or sync.</p>

<h2 id="container-compose">container compose</h2>

<p>In that folder, just run</p>

<p><code>podman compose up</code></p>

<p>and everything will be installed.</p>

<h2 id="start-and-stop-the-container">start and stop the container</h2>

<p>The paperless-ngx container doesn&#39;t need to run all the time—only when I need to access it. So I wrote a little Bash script to start or stop the container.
Just a quick heads-up: I&#39;m a novice and like to keep things colorful ;)</p>

<p>paperless.sh:</p>

<pre><code>#!/bin/bash

set -euo pipefail

# Colors
readonly BLUE=&#39;\033[0;34m&#39;
readonly RED=&#39;\033[0;31m&#39;
readonly GREEN=&#39;\033[0;32m&#39;
readonly YELLOW=&#39;\033[1;33m&#39;
readonly NC=&#39;\033[0m&#39;

BROKER=&#34;paperless_broker_1&#34;
WEBSERVER=&#34;paperless_webserver_1&#34;

# Check, if container are running
both_running() {
    [ &#34;$(/usr/bin/podman inspect -f &#39;{{.State.Running}}&#39; &#34;$BROKER&#34; 2&gt;/dev/null)&#34; = &#34;true&#34; ] &amp;&amp;
    [ &#34;$(/usr/bin/podman inspect -f &#39;{{.State.Running}}&#39; &#34;$WEBSERVER&#34; 2&gt;/dev/null)&#34; = &#34;true&#34; ]
}

# Start Containers
start_containers() {
    echo -e &#34;${YELLOW}🟡 Starting $BROKER${NC}&#34;
    /usr/bin/podman start &#34;$BROKER&#34; &gt;/dev/null 2&gt;&amp;1
    sleep 2
    echo -e &#34;${YELLOW}🟡 Starting $WEBSERVER${NC}&#34;
    /usr/bin/podman start &#34;$WEBSERVER&#34; &gt;/dev/null 2&gt;&amp;1
    echo -e &#34;${GREEN}🟢 Both Containers running.${NC}&#34;
}

# Stop Containers
stop_containers() {
    echo -ne &#34;${YELLOW}⚠️  Stop Container? ${NC}&#34;
    read -p &#34;(j/n) [n]: &#34; answer
    echo
    if [ &#34;$answer&#34; = &#34;j&#34; ]; then
        echo -e &#34;${YELLOW}🟡 Stopping $WEBSERVER${NC}&#34;
        /usr/bin/podman stop &#34;$WEBSERVER&#34; &gt;/dev/null 2&gt;&amp;1
        sleep 2
        echo -e &#34;${YELLOW}🟡 Stopping $BROKER${NC}&#34;
        /usr/bin/podman stop &#34;$BROKER&#34; &gt;/dev/null 2&gt;&amp;1
        echo
        echo -e &#34;${GREEN}🟢 Both Containers are stopped.${NC}&#34;
    else
        echo -e &#34;${RED}🔴 Cancel: Containers still running.${NC}&#34;
    fi
}

# Main
echo
echo &#34;### Paperless-ngx - Podman ###&#34;
echo
if both_running; then
    stop_containers
else
    start_containers
fi
</code></pre>

<h2 id="access-paperless">Access Paperless</h2>

<p>Just go to <strong><a href="http://localhost:8000">http://localhost:8000</a></strong> in your browser, and everything works perfectly.</p>

<p><img src="/posts/260510/paperless.jpg" alt=""></p>

<h2 id="sync-and-backup">Sync and backup</h2>

<p>As mentioned earlier, the “Paperless” folder in “Documents” contains everything and can be synced between computers using Syncthing, for example.
This folder is also very easy to back up.</p>

<h2 id="manage-podman">Manage podman</h2>

<p>Of course, you can also do this via the CLI, but I like the simplicity of <a href="https://cockpit-project.org/">cockpit</a>, which can also be used on Debian. Cockpit has a handy module for managing Podman.</p>

<p><img src="/posts/260510/cockpit.jpg" alt=""></p>
]]></content:encoded>
      <guid>https://inlovewithlinux.com/local-paperless-ngx</guid>
      <pubDate>Sun, 10 May 2026 11:40:38 +0200</pubDate>
    </item>
    <item>
      <title>local music (in GNOME)</title>
      <link>https://inlovewithlinux.com/local-music-in-gnome</link>
      <description>&lt;![CDATA[The largest part of my life, I’ve bought and listened to music locally—first on vinyl, then on cassette, later on CD, and as purchases on iTunes. My music collection is accordingly large, and a small fortune has been invested in building it. Accordingly, I can’t just switch to streaming, and I also want to own my music.&#xA;So, important albums are on vinyl, but I also like to buy them as MP3s, for example from Bandcamp.&#xA;&#xA;Hardware&#xA;At 14, owning a stereo system was the biggest thing - even at almost 50, it still is. I run two 1980s Magnat speakers through a Rotel A12MKII amplifier.&#xA;&#xA;The amplifier supports Bluetooth, but somehow it’s just easier to run 15 meters of audio cable across the room.&#xA;&#xA;Software&#xA;You’ve tried music players on Linux, and so much of it is either very ugly or too bloated.&#xA;&#xA;But there’s one highly praised option: Amberol.&#xA;&#xA;Amberol is simple and looks good. You just open a folder with files, and they play—no database or other unnecessary bells and whistles.&#xA;&#xA;Now there’s still the issue that changing the audio output in GNOME is cumbersome and has to be done through Settings. But the Audio Switch Shortcuts extension solves this problem—with keyboard shortcuts, you can easily switch between devices.&#xA;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>The largest part of my life, I’ve bought and listened to music locally—first on vinyl, then on cassette, later on CD, and as purchases on iTunes. My music collection is accordingly large, and a small fortune has been invested in building it. Accordingly, I can’t just switch to streaming, and I also want to own my music.
So, important albums are on vinyl, but I also like to buy them as MP3s, for example from Bandcamp.</p>

<h2 id="hardware">Hardware</h2>

<p>At 14, owning a stereo system was the biggest thing – even at almost 50, it still is. I run two 1980s Magnat speakers through a <a href="https://rotel.com/de/product/a12mkii">Rotel A12MKII</a> amplifier.</p>

<p><img src="/posts/260501/rotel.jpg" alt=""></p>

<p>The amplifier supports Bluetooth, but somehow it’s just easier to run 15 meters of audio cable across the room.</p>

<h2 id="software">Software</h2>

<p>You’ve tried music players on Linux, and so much of it is either very ugly or too bloated.</p>

<p>But there’s one highly praised option: <a href="https://apps.gnome.org/Amberol/">Amberol</a>.</p>

<p><img src="/posts/260501/amberol.png" alt=""></p>

<p>Amberol is simple and looks good. You just open a folder with files, and they play—no database or other unnecessary bells and whistles.</p>

<p>Now there’s still the issue that changing the audio output in GNOME is cumbersome and has to be done through Settings. But the <a href="https://extensions.gnome.org/extension/8150/audio-switch-shortcuts/">Audio Switch Shortcuts</a> extension solves this problem—with keyboard shortcuts, you can easily switch between devices.</p>

<p><img src="/posts/260501/extension.png" alt=""></p>
]]></content:encoded>
      <guid>https://inlovewithlinux.com/local-music-in-gnome</guid>
      <pubDate>Fri, 01 May 2026 16:48:13 +0200</pubDate>
    </item>
    <item>
      <title>1-year debian: third month</title>
      <link>https://inlovewithlinux.com/1-year-debian-third-month</link>
      <description>&lt;![CDATA[GNOME 50 ... not yet&#xA;I had a brief window—okay, a few days—to distro-hop again after GNOME 50 was released, but then I realized ... I can just wait another 1.5 years for Forky. So it is still GNOME 48 for me :)&#xA;&#xA;Testing laptop&#xA;Because I have a fantastic ThinkPad T460 sitting on my desk as a third machine, I’ve chosen it as the test machine for the upcoming Debian 14 (testing). This gives me a good preview of what’s coming, and honestly, I don’t quite dare to run Testing or Unstable in production. It’s supposed to work well, but Stable just runs too smoothly to switch.&#xA;&#xA;Freeze solved&#xA;After my desktop (AMP Ryzen 5 CPU with Radeon RX 6500 XT GPU) kept freezing unpredictably for a while, the problem appears to have been resolved thanks to a newer kernel, AMD firmware and MESA from the backports repo.&#xA;&#xA;More backports stuff&#xA;Recently, I also experimented with building backports for personal use, thanks to these instructions: SimpleBackportCreation. Works surprisingly simple.&#xA;However, since the GNOME app ecosystem is focusing on Flatpak, installing software via Flatpak is more convenient.&#xA;&#xA;Homelab&#xA;Now that my fiber optic connection is finally arriving soon, my server (also running Trixie) will take on entirely new tasks. I’m hoping my &#39;homelab&#39; will grow a bit, and I’ll dive into something I currently know nothing about: containers.&#xA;I’d therefore appreciate any tips, guides, or recommendations!&#xA;Docker, Podman ... what to choose? Tips are more than welcome!&#xA;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<h2 id="gnome-50-not-yet">GNOME 50 ... not yet</h2>

<p>I had a brief window—okay, a few days—to distro-hop again after GNOME 50 was released, but then I realized ... I can just wait another 1.5 years for Forky. So it is still GNOME 48 for me :)</p>

<h2 id="testing-laptop">Testing laptop</h2>

<p>Because I have a fantastic ThinkPad T460 sitting on my desk as a third machine, I’ve chosen it as the test machine for the upcoming Debian 14 (testing). This gives me a good preview of what’s coming, and honestly, I don’t quite dare to run <a href="https://wiki.debian.org/DebianTesting">Testing</a> or <a href="https://wiki.debian.org/DebianUnstable/">Unstable</a> in production. It’s supposed to work well, but <a href="https://wiki.debian.org/DebianStable">Stable</a> just runs too smoothly to switch.</p>

<h2 id="freeze-solved">Freeze solved</h2>

<p>After my desktop (AMP Ryzen 5 CPU with Radeon RX 6500 XT GPU) kept freezing unpredictably for a while, the problem appears to have been resolved thanks to a newer kernel, AMD firmware and MESA from the <a href="https://backports.debian.org/">backports repo</a>.</p>

<h2 id="more-backports-stuff">More backports stuff</h2>

<p>Recently, I also experimented with building backports for personal use, thanks to these instructions: <a href="https://wiki.debian.org/SimpleBackportCreation">SimpleBackportCreation</a>. Works surprisingly simple.
However, since the GNOME app ecosystem is focusing on Flatpak, installing software via Flatpak is more convenient.</p>

<h2 id="homelab">Homelab</h2>

<p>Now that my fiber optic connection is finally arriving soon, my server (also running Trixie) will take on entirely new tasks. I’m hoping my &#39;homelab&#39; will grow a bit, and I’ll dive into something I currently know nothing about: containers.
I’d therefore appreciate any tips, guides, or recommendations!
Docker, Podman ... what to choose? Tips are more than welcome!</p>
]]></content:encoded>
      <guid>https://inlovewithlinux.com/1-year-debian-third-month</guid>
      <pubDate>Sun, 12 Apr 2026 09:15:03 +0200</pubDate>
    </item>
    <item>
      <title>Unify GTK3 and GTK4</title>
      <link>https://inlovewithlinux.com/unify-gtk3-and-gtk4</link>
      <description>&lt;![CDATA[One thing that really bothered me was the difference in corner radius between GTK3 and GTK4 apps in GNOME.&#xA;&#xA;GTK4 (Adwaita) has a 15px radius on all corners, while GTK3 has a smaller radius only on the top corners.&#xA;&#xA;Fortunately, this can be customized with a little CSS. This way, everything looks great even with the default Adwaita theme.&#xA;&#xA;Solution: .config/gtk-3.0/gtk.css&#xA;&#xA;Just add this to the gtk.css in .config/gtk-3.0 (in your homefolder).&#xA;&#xA;/ Rounded corners /&#xA;headerbar {&#xA;  border-radius: 15px 15px 0 0;&#xA;}&#xA;window decoration {&#xA;  border-radius: 15px;&#xA;}&#xA;window, window.background {&#xA;  border-radius: 0 0 15px 15px;&#xA;}&#xA;menuitem decoration {&#xA;  border-radius: 0;&#xA;}&#xA;/ Rounded corners /&#xA;&#xA;Firefox and Thunderbird&#xA;In Firefox and Thunderbird, a few more steps are required, as the bottom corners need to be explicitly enabled.&#xA;&#xA;Firefox&#xA;Enter about:config in the address bar to access the settings. &#xA;Here, set the value widget.gtk.rounded-bottom-corners.enabled to true.&#xA;&#xA;Thunderbird&#xA;You can access the same setting via Settings   General   Config Editor. Set the value to widget.gtk.rounded-bottom-corners.enabled and true here as well.&#xA;&#xA;QT? BUGS?&#xA;&#xA;That&#39;s the next thing to do is tune qt-apps... and there a still a few dialogs that doesn&#39;t work....&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>One thing that really bothered me was the difference in corner radius between <strong>GTK3</strong> and <strong>GTK4</strong> apps in <a href="https://www.gnome.org">GNOME</a>.</p>

<p>GTK4 (Adwaita) has a 15px radius on all corners, while GTK3 has a smaller radius only on the top corners.</p>

<p><img src="/posts/260315/border01.jpg" alt=""></p>

<p>Fortunately, this can be customized with a little CSS. This way, everything looks great even with the default Adwaita theme.</p>

<p><img src="/posts/260315/border02.jpg" alt=""></p>

<h2 id="solution-config-gtk-3-0-gtk-css">Solution: .config/gtk-3.0/gtk.css</h2>

<p>Just add this to the gtk.css in .config/gtk-3.0 (in your homefolder).</p>

<pre><code>/* Rounded corners */
headerbar {
  border-radius: 15px 15px 0 0;
}
window decoration {
  border-radius: 15px;
}
window, window.background {
  border-radius: 0 0 15px 15px;
}
menuitem decoration {
  border-radius: 0;
}
/* Rounded corners */
</code></pre>

<p><img src="/posts/260315/border03.jpg" alt=""></p>

<h2 id="firefox-and-thunderbird">Firefox and Thunderbird</h2>

<p>In Firefox and Thunderbird, a few more steps are required, as the bottom corners need to be explicitly enabled.</p>

<h3 id="firefox">Firefox</h3>

<p>Enter <strong>about:config</strong> in the address bar to access the settings.
Here, set the value <strong>widget.gtk.rounded-bottom-corners.enabled</strong> to <strong>true</strong>.</p>

<p><img src="/posts/260315/border04.jpg" alt=""></p>

<h3 id="thunderbird">Thunderbird</h3>

<p>You can access the same setting via <strong>Settings &gt; General &gt; Config Editor</strong>. Set the value to <strong>widget.gtk.rounded-bottom-corners.enabled</strong> and <strong>true</strong> here as well.</p>

<p><img src="/posts/260315/border05.jpg" alt=""></p>

<h2 id="qt-bugs">QT? BUGS?</h2>

<p>That&#39;s the next thing to do is tune qt-apps... and there a still a few dialogs that doesn&#39;t work....</p>
]]></content:encoded>
      <guid>https://inlovewithlinux.com/unify-gtk3-and-gtk4</guid>
      <pubDate>Sun, 15 Mar 2026 18:46:38 +0100</pubDate>
    </item>
    <item>
      <title>1-year debian: second month</title>
      <link>https://inlovewithlinux.com/1-year-debian-second-month</link>
      <description>&lt;![CDATA[This is the second month of my one-year challenge: No distrohopping ... only use Debian stable.&#xA;&#xA;That&#39;s why this post, like the next 10, is more of a diary and reflection on the last month with Debian.&#xA;&#xA;Even in the second month, I can only say that I am very happy. I consider the fact that I am not necessarily using the latest software to be a huge advantage. &#xA;&#xA;Everything works and I can continue to focus on optimizing workflows.&#xA;Examples include syncing KeepassXC / KeepassDX to a smartphone via gsconnect / kdeconnect.&#xA;&#xA;Everything works, and I can continue to focus on optimizing workflows.&#xA;Examples include syncing Keepass to my smartphone via gsconnect (kdeconnect) or backing up/sharing important family documents with Cryptomator.&#xA;&#xA;GNOME is increasingly becoming my favorite desktop, and floating suits me better than tiling.&#xA;&#xA;But I&#39;ve also realized that dark mode isn&#39;t for me. I felt the same way with macOS. Only the editor and terminal are dark.&#xA;&#xA;I also like the Papirus icon set more than Adwaita. Basically, Adwaita isn&#39;t really an icon set, since many apps come with their own icons. Some are good, some aren&#39;t to my taste. Papirus provides consistency.&#xA;&#xA;Unfortunately, not all apps are included in Papirus: Tuba and Newsflash are still missing (I built something myself for Tuba, let&#39;s see if Newsflash is still missing).&#xA;&#xA;What I&#39;m really getting more and more excited about is dotdrop. It now syncs not only my dotfiles, but also dconf settings, i.e. my Gnome settings between my PC and laptop.&#xA;Here, too, everything is packaged in a Bash script, so the operator only has to select export or import.]]&gt;</description>
      <content:encoded><![CDATA[<p>This is the second month of my one-year challenge: <strong>No distrohopping ... only use Debian stable</strong>.</p>

<p>That&#39;s why this post, like the next 10, is more of a diary and reflection on the last month with Debian.</p>

<p>Even in the second month, I can only say that I am very happy. I consider the fact that I am not necessarily using the latest software to be a huge advantage.</p>

<p>Everything works and I can continue to focus on optimizing workflows.
Examples include syncing <a href="https://keepassxc.org/">KeepassXC</a> / <a href="https://www.keepassdx.com/">KeepassDX</a> to a smartphone via <a href="https://extensions.gnome.org/extension/1319/gsconnect/">gsconnect</a> / <a href="https://kdeconnect.kde.org/">kdeconnect</a>.</p>

<p>Everything works, and I can continue to focus on optimizing workflows.
Examples include syncing Keepass to my smartphone via gsconnect (kdeconnect) or backing up/sharing important family documents with <a href="https://cryptomator.org/">Cryptomator</a>.</p>

<p><a href="https://www.gnome.org/">GNOME</a> is increasingly becoming my favorite desktop, and floating suits me better than tiling.</p>

<p><img src="/posts/260312/250312_GNOME.jpg" alt=""></p>

<p>But I&#39;ve also realized that dark mode isn&#39;t for me. I felt the same way with macOS. Only the editor and terminal are dark.</p>

<p>I also like the <a href="https://github.com/PapirusDevelopmentTeam/papirus-icon-theme">Papirus icon set</a> more than Adwaita. Basically, Adwaita isn&#39;t really an icon set, since many apps come with their own icons. Some are good, some aren&#39;t to my taste. Papirus provides consistency.</p>

<p><img src="/posts/260312/250312_dash.jpg" alt=""></p>

<p>Unfortunately, not all apps are included in Papirus: <a href="https://tuba.geopjr.dev/">Tuba</a> and <a href="https://apps.gnome.org/NewsFlash/">Newsflash</a> are still missing (I built something myself for Tuba, let&#39;s see if Newsflash is still missing).</p>

<p>What I&#39;m really getting more and more excited about is <a href="https://github.com/deadc0de6/dotdrop">dotdrop</a>. It now syncs not only my dotfiles, but also dconf settings, i.e. my Gnome settings between my PC and laptop.
Here, too, everything is packaged in a Bash script, so the operator only has to select export or import.</p>
]]></content:encoded>
      <guid>https://inlovewithlinux.com/1-year-debian-second-month</guid>
      <pubDate>Thu, 12 Mar 2026 22:14:45 +0100</pubDate>
    </item>
    <item>
      <title>switching to writefreely</title>
      <link>https://inlovewithlinux.com/switching-to-writefreely</link>
      <description>&lt;![CDATA[Currently, I’m tinkering with this blog because I’ve switched from hosting with write.as to self-hosting Writefreely on Uberspace.&#xA;&#xA;Basically, Writefreely is the foundation for write.as, but now that I have direct access to all the files - thanks to it being open-source - I can customize it even more.&#xA;&#xA;However, this means I had to reset a few things first to integrate them better - I no longer need to rely on JavaScript workarounds, only using them for cosmetic fun. Everything will work without javascript.&#xA;&#xA;So if something occasionally appears twice in the RSS feed or the Fediverse... sorry about that. I’m still tinkering!&#xA;&#xA;]]&gt;</description>
      <content:encoded><![CDATA[<p>Currently, I’m tinkering with this blog because I’ve switched from hosting with <a href="https://write.as">write.as</a> to self-hosting <a href="https://writefreely.org/">Writefreely</a> on <a href="https://uberspace.de">Uberspace</a>.</p>

<p>Basically, Writefreely is the foundation for write.as, but now that I have direct access to all the files – thanks to it being open-source – I can customize it even more.</p>

<p>However, this means I had to reset a few things first to integrate them better – I no longer need to rely on JavaScript workarounds, only using them for cosmetic fun. Everything will work without javascript.</p>

<p>So if something occasionally appears twice in the RSS feed or the Fediverse... sorry about that. I’m still tinkering!</p>
]]></content:encoded>
      <guid>https://inlovewithlinux.com/switching-to-writefreely</guid>
      <pubDate>Sun, 15 Feb 2026 10:24:09 +0100</pubDate>
    </item>
    <item>
      <title>1-year debian: first month</title>
      <link>https://inlovewithlinux.com/1-year-debian-first-month</link>
      <description>&lt;![CDATA[I’ve completed one month with Debian stable. It sounds dramatic, but it’s actually been a positive experience.&#xA;&#xA;Switching from a rolling release like openSUSE Tumbleweed was quite a change, but I’ve really come to like the stable foundation Debian offers.&#xA;&#xA;Some software is a few versions older—which isn’t a big deal—but there are also things that aren’t (or aren’t yet) available in the Debian repositories.&#xA;&#xA;But for that, there’s Flatpak, which I trust more than random third-party repositories.&#xA;&#xA;Right now, my only issue is that my custom-built AMD PC occasionally and very rarely freezes. I’m on the case, though, and I actually suspect it’s a third-party program that doesn’t come from the Debian repo.&#xA;&#xA;On the bright side of committing to Debian for a year, I’ve now got a solid backup strategy in place with Déjà Dup, Timeshift, and Dotdrop. Thanks to that, reinstalling the system is a breeze - especially helpful since I tend to tinker more than a lot!&#xA;&#xA;Since I’ve still got 11 months with Debian ahead of me, one of my current projects is learning how to create .deb packages. The Debian documentation is excellent—but also quite complex!&#xA;&#xA;But my first attempt with rofi 2.0 was a success—so maybe in 11 months, I’ll have my own repo! ;)&#xA;&#xA;All in all: A positive experience in the first month and a happy outlook for the next 11 months with Debian. Beyond the technical aspects, there’s also the good feeling of being on the right side.&#xA;&#xA;#debian #gnome]]&gt;</description>
      <content:encoded><![CDATA[<p>I’ve completed one month with <a href="https://www.debian.org/">Debian stable</a>. It sounds dramatic, but it’s actually been a positive experience.</p>

<p>Switching from a rolling release like openSUSE Tumbleweed was quite a change, but I’ve really come to like the stable foundation Debian offers.</p>

<p>Some software is a few versions older—which isn’t a big deal—but there are also things that aren’t (or aren’t yet) available in the Debian repositories.</p>

<p>But for that, there’s Flatpak, which I trust more than random third-party repositories.</p>

<p>Right now, my only issue is that my custom-built AMD PC occasionally and very rarely freezes. I’m on the case, though, and I actually suspect it’s a third-party program that doesn’t come from the Debian repo.</p>

<p>On the bright side of committing to Debian for a year, I’ve now got a solid backup strategy in place with <a href="https://apps.gnome.org/DejaDup/">Déjà Dup</a>, Timeshift, and <a href="https://github.com/deadc0de6/dotdrop">Dotdrop</a>. Thanks to that, reinstalling the system is a breeze – especially helpful since I tend to tinker more than a lot!</p>

<p>Since I’ve still got 11 months with Debian ahead of me, one of my current projects is learning how to create .deb packages. The Debian documentation is excellent—but also quite complex!</p>

<p>But my first attempt with rofi 2.0 was a success—so maybe in 11 months, I’ll have my own repo! ;)</p>

<p>All in all: A positive experience in the first month and a happy outlook for the next 11 months with Debian. Beyond the technical aspects, there’s also the good feeling of being on the right side.</p>

<p><a href="https://inlovewithlinux.com/tag:debian" class="hashtag"><span>#</span><span class="p-category">debian</span></a> <a href="https://inlovewithlinux.com/tag:gnome" class="hashtag"><span>#</span><span class="p-category">gnome</span></a></p>
]]></content:encoded>
      <guid>https://inlovewithlinux.com/1-year-debian-first-month</guid>
      <pubDate>Thu, 12 Feb 2026 22:13:17 +0100</pubDate>
    </item>
    <item>
      <title>one year challenge: debian</title>
      <link>https://inlovewithlinux.com/one-year-challenge-debian</link>
      <description>&lt;![CDATA[Lately, I&#39;ve been doing a lot of distro hopping: openSUSE, Debian, openSUSE, Debian, Fedora, openSUSE, and Debian again.&#xA;&#xA;At least it&#39;s relatively limited. But Arch and nixOS also keep tempting me.&#xA;&#xA;However, I believe that I need to get to know one distro really well. So in 2026, I will only use Debian Stable on my two main computers (PC and laptop).&#xA;&#xA;No more distro hopping until 2027.&#xA;&#xA;Of course, anything goes on my hobby Thinkpad. So that you can check up on me, the header of this page counts (Javascript must be enabled).&#xA;&#xA;debian]]&gt;</description>
      <content:encoded><![CDATA[<p>Lately, I&#39;ve been doing a lot of distro hopping: openSUSE, Debian, openSUSE, Debian, Fedora, openSUSE, and Debian again.</p>

<p>At least it&#39;s relatively limited. But Arch and nixOS also keep tempting me.</p>

<p>However, I believe that I need to get to know one distro really well. So in 2026, I will only use Debian Stable on my two main computers (PC and laptop).</p>

<p>No more distro hopping until 2027.</p>

<p>Of course, anything goes on my hobby Thinkpad. So that you can check up on me, the header of this page counts (Javascript must be enabled).</p>

<p><a href="https://inlovewithlinux.com/tag:debian" class="hashtag"><span>#</span><span class="p-category">debian</span></a></p>
]]></content:encoded>
      <guid>https://inlovewithlinux.com/one-year-challenge-debian</guid>
      <pubDate>Mon, 12 Jan 2026 22:18:40 +0100</pubDate>
    </item>
  </channel>
</rss>