<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~files/feed-premium.xsl"?>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedpress="https://feed.press/xmlns" xmlns:podcast="https://podcastindex.org/namespace/1.0" version="2.0">
  <channel>
    <feedpress:locale>en</feedpress:locale>
    <feedpress:newsletterId>itsfoss</feedpress:newsletterId>
    <atom:link rel="hub" href="https://feedpress.superfeedr.com/"/>
    <title>It's FOSS</title>
    <description>Making You a Better Linux User</description>
    <link>https://itsfoss.com/</link>
    <image>
      <url>https://itsfoss.com/content/images/2025/11/android-chrome-512x512.png</url>
      <title><![CDATA[It's FOSS]]></title>
      <link>https://itsfoss.com/</link>
    </image>
    <generator>Ghost </generator>
    <lastBuildDate>Thu, 20 Aug 2026 04:50:47 +0530</lastBuildDate>
    <atom:link href="https://feed.itsfoss.com/" rel="self" type="application/rss+xml"/>
    <ttl>60</ttl>
    <item>
      <title><![CDATA[Book Review: The Ultimate AI Guide for Linux Engineers]]></title>
      <description><![CDATA[A book specifically written for seasoned Linux professionals so that they can use AI effectively and safely in their workflow.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17423027/ultimate-ai-guide-for-linux-engineers-review</link>
      <guid isPermaLink="false">6a85a62a6f49bc0001836d44</guid>
      <category><![CDATA[Reviews]]></category>
      <dc:creator><![CDATA[Abhishek Prakash]]></dc:creator>
      <pubDate>Wed, 19 Aug 2026 19:14:18 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/08/The-Ultimate-AI-Guide-for-Linux-Engineers-1.webp" medium="image"/>
      <content:encoded><![CDATA[<figure><img src="https://itsfoss.com/content/images/2026/08/The-Ultimate-AI-Guide-for-Linux-Engineers-1.webp" alt="" loading="lazy"></figure>
<p>Even Linus Torvalds is fine with AI being used in Linux kernel development these days, and it's everywhere else in the Linux and tech world too. The time has come to stop ignoring AI and start using it as a tool and to use it well, especially if you are a professional sysadmin or DevOps.</p><p>That's why seasoned Linux professionals, Ezequiel Lanza and Eduardo Spotti wrote the book <a href="https://www.packtpub.com/en-us/product/the-ultimate-ai-guide-for-linux-engineers-9781806664221">The Ultimate AI Guide for Linux Engineers</a> that I am reviewing here. The book is published by Packt and you can find it on Packt, O'Reilly and <a href="https://amzn.to/4xdSyoo">Amazon</a>.</p><p>Note that the book is written for people who already know and use Linux professionally. That means sysadmins, devops, SREs, system engineers, network engineers. The book collectively calls them "Linux engineers" and I like that term. </p><p>Basically, it is for the people who are more used to doing things the old way and unsure where and how to fit AI into their regular workflow. </p><h2 id="a-book-for-seasoned-linux-professionals">A book for seasoned Linux professionals</h2><p>The book opens with "Linux engineers have always been expected to do more with less," and that's the core idea of the book: using AI effectively to improve efficienncy.</p><p>The examples are good, and if you've managed servers and infrastructure before, you'll relate to them. That's what makes the book interesting: it's written from a sysadmin/DevOps perspective. </p><p>To reduce the risk of letting AI agents loose on your systems, the authors suggest best practices like role-based access, limiting operations to read-only wherever possible, and logging all AI actions for auditing. </p><p>There are also examples and sample code you can adapt for your own workflow with some modification, like an anomaly detector you could plug into your Linux observability stack.</p><p>Although the book has 12 chapters and runs over 300 pages, I find that the book is divided into four core sectors:</p><h2 id="1-foundational-knowledge">1. Foundational knowledge</h2><p>The book starts by explaining AI, machine learning (ML), and large language models (LLMs) specifically in Linux contexts, covering the practical differences between training, fine-tuning, and inference. </p><p>This sets up the technical foundation for building an AI-ready Linux environment, with an emphasis on Python as the primary language and virtual environments and containerization for safe, reproducible workflows.</p><h2 id="2-intelligent-automation-and-linuxops-agents">2. Intelligent automation and LinuxOps agents</h2><p>A major focus of the book is the shift from static automation to intelligent automation. AI-assisted automation shows how to combine AI with traditional tools like Ansible, Bash, and systemd to generate safe, validated commands from natural language intent. </p><p>The book also teaches how to build autonomous agents that can perceive system problems, reason through multi-step plans, and execute tasks while following least-privilege principles and safeguards.</p><h2 id="3-intelligent-observability-and-rag">3. Intelligent observability and RAG</h2><p>The authors push for moving from passive monitoring to a "dialogue model" of observability, through log dialogue pipelines. So, instead of manually grepping through logs, you build pipelines that compress and correlate multi-source logs into actionable knowledge. </p><p>The book also covers building RAG systems that index system logs, internal runbooks, documentation, and past incident reports to give you context-aware answers instead of hallucinated ones. This is where AI actually shines. When it has context, its analysis is far more accurate.</p><h2 id="4-production-deployment-and-security">4. Production deployment and security</h2><p>To move these concepts into real-world use, the book covers scaling and securing AI workloads on Kubernetes: managing GPU resources, implementing autoscaling based on inference-specific metrics, and optimizing performance through techniques like quantization. </p><p>It also lays out a full security stack, including threat modeling for AI, PII (personally identifiable information) redaction, prompt injection defenses, and using Open Policy Agent (OPA) to enforce strict guardrails on agent actions. This part matters more than people think; it's usually the part companies skip, right up until they end up trending on social media over a security incident.</p><p>The book ends by looking at the future of AI-driven Linux workflows, and the need to balance autonomy with human oversight. </p><div class="kg-card kg-callout-card kg-callout-card-green"><div class="kg-callout-emoji">&#128161;</div><div class="kg-callout-text">Each chapter comes with practice exercises and additional external resources. There is an <a href="https://github.com/PacktPublishing/The-Ultimate-AI-Guide-for-Linux-Engineers">accompanied GitHub repo</a> that has the codes and pipelines discussed in the book.</div></div><h2 id="verdict">Verdict</h2><p>Overall, The Ultimate AI Guide for Linux Engineers is a practical, Linux-first handbook designed to help system administrators, SREs, and DevOps professionals fold AI into their daily workflows. Instead of focusing on theory, it lays out a roadmap for evolving from traditional shell scripts to intelligent, autonomous systems.</p><p>This book isn't for you if you're completely new to Linux or just a casual desktop user. You may still learn something, but unless you're managing servers, containers, and infrastructure, you probably won't find it as engaging or useful.</p><p>I think every Linux professional should start looking for ways to use AI in their workflow. The book gives you ideas, it gives you scenarios and guides you through them. If you ever wanted to start using AI but was unsure because of all the noise around it and didn't know where to begin, the book is definitely worth a read.</p><blockquote>The best engineers will not be replaced by AI but will be the ones who know how to use it effectively.</blockquote><p>Still unsure? To determine whether the book is for you, I advise <a href="https://www.oreilly.com/library/view/the-ultimate-ai/9781806664238/Chapter_5.xhtml">checking it on the O'Reilly website</a>. It has chapters of the books and you can expand those chapters to see the sections of those chapters. </p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/08/image-6.png" class="kg-image" alt="Chapter 5 sample of AI Linux book" loading="lazy" width="1149" height="714" srcset="https://itsfoss.com/content/images/size/w600/2026/08/image-6.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/image-6.png 1000w, https://itsfoss.com/content/images/2026/08/image-6.png 1149w" sizes="(min-width: 720px) 720px"></figure><p>This will give a clearer picture if you are still indecisive if you should get the book. </p><div class="kg-card kg-button-card kg-align-center"><a href="https://amzn.to/4xdSyoo" class="kg-btn kg-btn-accent">Get it from Amazon</a></div>
<img src="https://feed.itsfoss.com/link/24361/17423027.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[Murena Just Made The Fairphone (Gen. 6) Better!]]></title>
      <description><![CDATA[A new variant of the modular smartphone now offers 12GB of RAM and a Snapdragon 7s Gen 4 upgrade.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17422921/murena-fairphone-6-plus</link>
      <guid isPermaLink="false">6a8553046f49bc0001836b98</guid>
      <category><![CDATA[News]]></category>
      <dc:creator><![CDATA[Sourav Rudra]]></dc:creator>
      <pubDate>Wed, 19 Aug 2026 17:23:09 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/08/murena-fairphone-6-plus-banner.png" medium="image">
        <media:description type="plain">a multi-color banner that shows four murena fairphone (gen. 6+) devices with the logos for murena and /e/os placed nearby</media:description>
      </media:content>
      <content:encoded><![CDATA[<figure><img src="https://itsfoss.com/content/images/2026/08/murena-fairphone-6-plus-banner.png" alt="a multi-color banner that shows four murena fairphone (gen. 6+) devices with the logos for murena and /e/os placed nearby" loading="lazy"></figure>
<p>We are used to seeing <a href="https://murena.com/?sld=5" rel="noreferrer">Murena</a> roll out new devices every now and then. Their whole sales pitch revolves around a de-Googled, privacy-focused Android experience. Not everyone is sold on that approach, sure, but the company has managed to stick around for quite a few years now, which says something.</p><p>The latest addition to their lineup is the <a href="https://murena.com/everything-you-love-about-the-fairphone-plus-more/">Fairphone (Gen. 6+)</a> with <a href="https://e.foundation/e-os/">/e/OS</a>. It sits right next to the standard <a href="https://itsfoss.com/news/murena-fairphone-6/">Gen. 6 model</a>, which is still on sale. The new variant packs better hardware and carries a higher price tag to match.</p><h2 id="the-new-device">The new device</h2><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://itsfoss.com/content/images/2026/08/murena-fairphone-gen-6-plus-colors.png" class="kg-image" alt="the three colorways for the murena fairphone (gen. 6+) are shown here; horizon black, cobalt blue, and forest green" loading="lazy" width="1920" height="1080" srcset="https://itsfoss.com/content/images/size/w600/2026/08/murena-fairphone-gen-6-plus-colors.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/murena-fairphone-gen-6-plus-colors.png 1000w, https://itsfoss.com/content/images/size/w1600/2026/08/murena-fairphone-gen-6-plus-colors.png 1600w, https://itsfoss.com/content/images/2026/08/murena-fairphone-gen-6-plus-colors.png 1920w" sizes="(min-width: 720px) 720px"><figcaption><i><em class="italic" style="white-space: pre-wrap;">The three colorways: Horizon Black, Cobalt Blue, and Forest Green.</em></i></figcaption></figure><p>The most significant change is the <strong>Snapdragon 7s Gen 4</strong> processor, paired with <strong>12GB of RAM</strong>. The base model makes do with the older Gen 3 chip and 8GB of RAM. Though <strong>storage stays at 256GB</strong> across both, expandable via microSD up to 2TB.</p><p>Everything else on the hardware carries over from the base model, including the 6.31-inch 120Hz LTPO OLED display, the 50MP main camera with a 13MP secondary and 32MP selfie shooter, the 4,415mAh removable battery with 30W charging, IP55 water resistance, and Gorilla Glass 7i to protect the display.</p><p>There's also a new Cobalt Blue colorway that ties into <a href="https://www.fairphone.com">Fairphone</a>'s fair-mined cobalt supply chain efforts. It joins the existing <em>Forest Green</em> and <em>Horizon Black</em> options. <strong>The modular design is unchanged</strong>, so you can still swap out 12 key components with a regular screwdriver.</p><p><strong>The software itself has not changed for this launch</strong>. It is still the same privacy-first build Murena has been refining for a while now.</p><p>That means no Google tracking baked into the OS, an <em>Advanced Privacy</em> widget that lets you control what data individual apps can see, and a running <em>Wall of Shame</em> that calls out installed apps leaking the most personal information.</p><p>The founder and CEO of Murena, <a href="https://www.linkedin.com/in/gaelduvalprofile/">Ga&euml;l Duval</a>, spoke about the device, saying that:</p><blockquote>With devices like Fairphone (Gen. 6+) with /e/OS, users can have a truly ethical device both in terms of hardware and software. <br><br>When I developed Mandriva Linux back in the 90s, it was my mission to make the operating system usable for the everyday, non-techie user. This is my goal with Murena &ndash; to give the average user access to smartphones that do not hold their privacy to ransom.</blockquote><h2 id="get-yours">Get yours</h2><p>Pricing depends on which region you order a Murena Fairphone (Gen. 6+) from. <strong>For EU</strong>, it costs <strong>&euro;699</strong>, more than the &euro;649 Murena charges for the standard Gen. 6. <strong>In the US</strong>, the Fairphone (Gen. 6+) is priced at <strong>$699</strong>, which is more than the standard Gen. 6's $649 price tag.</p><p><strong>People who order during the limited-time launch window</strong> of 18 August-1 September 2026 get a few extras. In the EU, that's two free accessories of your choice, where you get to pick from a case, screen protector, finger loop, card holder, or lanyard. US buyers get a case and screen protector bundle.</p><p>Everyone gets a year of 1TB <a href="https://murena.com/workspace/">Murena Workspace</a> and a year of <a href="https://murena.com/what-is-mdm/">Murena MDM</a>.</p><p><strong>Availability differs by region too</strong>. The device is shipping now in Europe, with the US listed as a backorder.</p><div class="kg-card kg-button-card kg-align-center"><a href="https://murena.com/shop/smartphones/brand-new/fairphone-gen-6-plus/?sld=5" class="kg-btn kg-btn-accent">Buy Now</a></div><h2 id="closing-thoughts">Closing thoughts</h2><p>The ethical smartphone market is still tiny, and it mostly survives on partnerships like this one. Fairphone builds the hardware, Murena handles the software, and together they keep proving that a privacy-first phone does not have to mean a phone stuck in the dark ages.</p><p>Whether that is enough to pull people away from Google remains the same open question it was the last time Murena updated their lineup.</p>
<img src="https://feed.itsfoss.com/link/24361/17422921.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[This Solo Dev Already Built a Popular Distro. Now He's Trying It Again]]></title>
      <description><![CDATA[Built on AlmaLinux with bootc, it promises atomic updates and zero manual upkeep.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17422317/stillos-review</link>
      <guid isPermaLink="false">6a7c5e57b11ec20001887446</guid>
      <category><![CDATA[Distro of the Month]]></category>
      <dc:creator><![CDATA[Sourav Rudra]]></dc:creator>
      <pubDate>Tue, 18 Aug 2026 18:37:51 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/08/stillos-banner.png" medium="image">
        <media:description type="plain">stillos screenshot showcasing the app launcher and wallpaper, with a "distro of the month" badge applied on the right</media:description>
      </media:content>
      <content:encoded><![CDATA[<figure><img src="https://itsfoss.com/content/images/2026/08/stillos-banner.png" alt="stillos screenshot showcasing the app launcher and wallpaper, with a &quot;distro of the month&quot; badge applied on the right" loading="lazy"></figure>
<p>Atomic distros work differently from the Fedora or Ubuntu install you're probably used to. Instead of layering individual packages on top of each other, the entire base system ships as one image, and updates land as a whole swap rather than a slow stream of package changes.</p><p>As a result, you get a system that's hard to break, where updates apply cleanly or not at all, rolling back a bad patch is easy, and there's no dependency hell to wade through since every install starts from the same known-good state.</p><p>The trade-off is flexibility. You lose the ability to tinker with individual system packages the way you can on a traditional distro, and anything outside the base image needs a workaround instead of a quick <code>apt install</code> or <code>dnf install</code>.</p><p><strong>stillOS</strong> wants you to consider the upside of that trade-off. It calls itself a "<em>maintenance-free</em>" Linux desktop, built on an <a href="https://almalinux.org">AlmaLinux 10</a> base with <a href="https://bootc.dev">bootc</a> handling the atomic updates.</p><p>Behind it is <a href="https://www.linkedin.com/in/cameron-knauff/">Cameron Knauff</a>, who goes by the name "<em>PizzaLovingNerd</em>" in the Linux community, and this isn't his first distro.</p><p>His earlier project, <a href="https://itsfoss.com/news/risi-os/" rel="noreferrer">risiOS</a>, a Fedora-based distro aimed at smoothing out the rough edges for new users, picked up a solid following before it was absorbed into <a href="https://nobaraproject.org/">Nobara Linux</a>, freeing him up to start <a href="https://stillhq.io">stillHQ</a> and, down the line, stillOS.</p><h2 id="it-has-potential">It has potential</h2><figure class="kg-card kg-gallery-card kg-width-wide"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/08/stillos-quick-settings-1.png" width="1920" height="1080" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/08/stillos-quick-settings-1.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/stillos-quick-settings-1.png 1000w, https://itsfoss.com/content/images/size/w1600/2026/08/stillos-quick-settings-1.png 1600w, https://itsfoss.com/content/images/2026/08/stillos-quick-settings-1.png 1920w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/08/stillos-installation.png" width="1278" height="799" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/08/stillos-installation.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/stillos-installation.png 1000w, https://itsfoss.com/content/images/2026/08/stillos-installation.png 1278w" sizes="(min-width: 720px) 720px"></div></div></div></figure><p>I tested stillOS 10.2 on a virtual machine in <a href="https://itsfoss.com/news/gnome-boxes-glow-up/">GNOME Boxes</a>, running on my Fedora Workstation setup. Installation felt familiar right away. stillOS uses the same Anaconda installer AlmaLinux ships with.</p><p>If you've installed Fedora, RHEL, or any of their downstream distros before, you already know the steps involved here.</p><figure class="kg-card kg-gallery-card kg-width-wide"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/08/stillos-onboarding-1.png" width="1920" height="1080" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/08/stillos-onboarding-1.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/stillos-onboarding-1.png 1000w, https://itsfoss.com/content/images/size/w1600/2026/08/stillos-onboarding-1.png 1600w, https://itsfoss.com/content/images/2026/08/stillos-onboarding-1.png 1920w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/08/stillos-onboarding-2.png" width="1920" height="1080" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/08/stillos-onboarding-2.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/stillos-onboarding-2.png 1000w, https://itsfoss.com/content/images/size/w1600/2026/08/stillos-onboarding-2.png 1600w, https://itsfoss.com/content/images/2026/08/stillos-onboarding-2.png 1920w" sizes="(min-width: 720px) 720px"></div></div><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/08/stillos-onboarding-3.png" width="1920" height="1080" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/08/stillos-onboarding-3.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/stillos-onboarding-3.png 1000w, https://itsfoss.com/content/images/size/w1600/2026/08/stillos-onboarding-3.png 1600w, https://itsfoss.com/content/images/2026/08/stillos-onboarding-3.png 1920w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/08/stillos-onboarding-4.png" width="1920" height="1080" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/08/stillos-onboarding-4.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/stillos-onboarding-4.png 1000w, https://itsfoss.com/content/images/size/w1600/2026/08/stillos-onboarding-4.png 1600w, https://itsfoss.com/content/images/2026/08/stillos-onboarding-4.png 1920w" sizes="(min-width: 720px) 720px"></div></div></div></figure><p><strong>Onboarding is quick and doesn't waste your time</strong>. A short welcome screen kicks off <em>Quick Setup</em>, which walks you through installing apps, picking a browser, and grabbing essentials before dropping you onto the desktop.</p><p>Once you boot into stillOS, you will see that while the desktop is <a href="https://www.gnome.org/">GNOME</a> underneath, the distro ditches the usual top-panel layout for a taskbar-first interface, closer to Windows 11 than anything GNOME ships by default.</p><figure class="kg-card kg-gallery-card kg-width-wide"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/08/stillos-workspace-switcher.png" width="1920" height="1080" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/08/stillos-workspace-switcher.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/stillos-workspace-switcher.png 1000w, https://itsfoss.com/content/images/size/w1600/2026/08/stillos-workspace-switcher.png 1600w, https://itsfoss.com/content/images/2026/08/stillos-workspace-switcher.png 1920w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/08/stillos-update-notifier.png" width="1920" height="1080" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/08/stillos-update-notifier.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/stillos-update-notifier.png 1000w, https://itsfoss.com/content/images/size/w1600/2026/08/stillos-update-notifier.png 1600w, https://itsfoss.com/content/images/2026/08/stillos-update-notifier.png 1920w" sizes="(min-width: 720px) 720px"></div></div></div></figure><p>The taskbar carries the usual options like the app drawer, pill-shaped workspace switcher, an update notifier, pinned apps, the calendar, the clock, and quick settings.</p><p>Unlike vanilla GNOME, stillOS' version lets you drop icons straight onto the desktop.</p><p>Right-clicking gives you quick access to creating new folders and documents, undoing an action, selecting everything, arranging icons, opening the terminal, and some important settings.</p><figure class="kg-card kg-embed-card"><iframe src="https://player.vimeo.com/video/1218845181?app_id=122963" width="426" height="240" frameborder="0" allow="autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share" referrerpolicy="strict-origin-when-cross-origin" title="stillos-right-click-menu-demo"></iframe></figure><p>The file manager keeps most of that same right-click menu, folders, documents, select all, opening a terminal, alongside the usual "<em>Properties</em>" entry found on <a href="https://apps.gnome.org/Nautilus/">Nautilus</a> (<em>Files</em>).</p><p>The document creation option is the one that <strong>I find very useful</strong>, as that&rsquo;s something I miss on the vanilla GNOME experience. The catch is that it only hands you three formats through ONLYOFFICE: <code>docx</code>, <code>pptx</code>, and <code>xlsx</code>. Considering what <a href="https://itsfoss.com/news/tdf-calls-out-euro-office/#:~:text=Euro%2DOffice%27s%20silence.-,TDF%20isn%27t%20happy,-Toward%20the%20end" rel="noreferrer">The Document Foundation</a> has been pushing for lately, a locked-down proprietary-only shortcut feels like an odd choice.</p><p>Installing <a href="https://itsfoss.com/libreoffice-tips/">LibreOffice</a> and removing ONLYOFFICE didn't fix it either. The shortcut still generates files in those same formats; it just opens them in LibreOffice instead.</p><p><strong>The file manager looks different too,</strong> even though it's the same GNOME Files under the hood. When you launch it, the app opens a "<em>Computer</em>" page that lays out your folders, disks, and removable media in one clean view.</p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/08/stillos-file-manager.png" class="kg-image" alt='the file manager for stillos that is showing the "computer" page with many folders, storage, and removable media items' loading="lazy" width="948" height="795" srcset="https://itsfoss.com/content/images/size/w600/2026/08/stillos-file-manager.png 600w, https://itsfoss.com/content/images/2026/08/stillos-file-manager.png 948w" sizes="(min-width: 720px) 720px"></figure><p>The default app selection is generous. You get <strong>ONLYOFFICE</strong>, <strong>Gear Lever</strong>, <strong>Warp</strong>, <strong>Mousam</strong>, and a good spread of the usual GNOME-focused apps alongside them.</p><p><strong>stillOS also ships its own lineup of "<em>still</em>" branded tools</strong>. <a href="https://gitlab.com/stillhq/stillTerminal">stillTerminal</a> is the default terminal app, built around a customized <a href="https://itsfoss.com/zsh-ubuntu/">ZSH</a> setup with container and SSH support.</p><p><a href="https://gitlab.com/stillhq/stillOS/stillcenter" rel="noreferrer">stillCenter</a> is the curated app store, pulling from Flatpak and other sources with its own <em>stillRating</em> system grading how well an app runs with stillOS.</p><figure class="kg-card kg-gallery-card kg-width-wide"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/08/stillos-stillterminal.png" width="1014" height="805" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/08/stillos-stillterminal.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/stillos-stillterminal.png 1000w, https://itsfoss.com/content/images/2026/08/stillos-stillterminal.png 1014w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/08/stillos-stillcenter.png" width="1303" height="960" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/08/stillos-stillcenter.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/stillos-stillcenter.png 1000w, https://itsfoss.com/content/images/2026/08/stillos-stillcenter.png 1303w" sizes="(min-width: 720px) 720px"></div></div><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/08/stillos-stillcontrol.png" width="1318" height="1116" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/08/stillos-stillcontrol.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/stillos-stillcontrol.png 1000w, https://itsfoss.com/content/images/2026/08/stillos-stillcontrol.png 1318w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/08/stillos-forum-webapp.png" width="1383" height="1001" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/08/stillos-forum-webapp.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/stillos-forum-webapp.png 1000w, https://itsfoss.com/content/images/2026/08/stillos-forum-webapp.png 1383w" sizes="(min-width: 720px) 720px"></div></div></div></figure><p><a href="https://gitlab.com/stillhq/stillOS/stillcontrol">stillControl</a> handles GNOME layout customization, letting you switch between 12+ preset layouts and manage extensions without digging through <a href="https://itsfoss.com/gnome-tweak-tool/">GNOME Tweaks</a>. Then there's stillOS Forums, which isn't a native app at all. It's the community forum wrapped as a <a href="https://gitlab.com/stillhq/stillOS/swai">SWAI</a> web app, so it behaves like part of the desktop instead of a browser tab.</p><p>Running other software worked without any surprises. I selected Zen Browser during onboarding specifically to see how it handled a non-default browser, and it ran cleanly, without any visual bugs, lags, or crashes to speak of.</p><figure class="kg-card kg-embed-card"><iframe src="https://player.vimeo.com/video/1218847078?app_id=122963" width="426" height="240" frameborder="0" allow="autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share" referrerpolicy="strict-origin-when-cross-origin" title="stillos-zen-browser-workspace-switcher-demo"></iframe></figure><p>The pill-shaped workspace switcher held up well through all of this too, letting me flip between workspaces and open apps without any lag or fumbling. Though this was a given seeing that it is a well-tested component from GNOME.</p><p>And before you assume that this is some obscure Linux distro that will fade into irrelevance very soon, know that development is still quite active. The recent <a href="https://stillhq.io/stillos-gets-gnome-49-a-better-first-boot-and-major-swai-improvements/">stillOS 10.2 release</a> introduced most of what's covered above.</p><p>Cameron says that:</p><blockquote>stillOS has now reached the point where it fits that initial vision. There is obviously more work to do, and there always will be, but the foundation is here. Now I want to focus on building the community around it.</blockquote><blockquote>The goal is to keep stillOS innovative while also building a Linux system that literally anyone can use. Those ideas do not have to conflict. Linux can try new things without becoming confusing, and it can be approachable without becoming boring.</blockquote><h2 id="download-it-now">Download it now</h2><p>You can grab the latest stillOS ISO from <a href="https://sourceforge.net/projects/stillos/files/" rel="noreferrer">SourceForge</a>, which lists all the images released by the project so far. </p><div class="kg-card kg-button-card kg-align-center"><a href="https://sourceforge.net/projects/stillos/files/" class="kg-btn kg-btn-accent">stillOS (SourceForge)</a></div><p>Once you're up and running, know that updates aren't handled through AlmaLinux's usual dnf-based flow.</p><p><strong>Instead, you can rely on the distro to handle it for you</strong>, as it checks for updates automatically 15 minutes after boot, then every 24 hours after that for as long as your machine stays on.</p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/08/stillos-upgrade-command.png" class="kg-image" alt="terminal window that shows the successful running of this command: sudo bootrc upgrade" loading="lazy" width="852" height="508" srcset="https://itsfoss.com/content/images/size/w600/2026/08/stillos-upgrade-command.png 600w, https://itsfoss.com/content/images/2026/08/stillos-upgrade-command.png 852w" sizes="(min-width: 720px) 720px"></figure><p>If you can't wait, then you can run the following command in the terminal to force an update check:</p><pre><code>sudo bootc upgrade</code></pre>
<img src="https://feed.itsfoss.com/link/24361/17422317.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[The Xen Project is Serious About Safety, So It Formed a Committee]]></title>
      <description><![CDATA[Founding members AMD, EPAM, and Renesas already put in the groundwork, and there's a new Premier Plus membership tier to go with it.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17422118/xen-project-safety-committee</link>
      <guid isPermaLink="false">6a83ea37b11ec20001894be6</guid>
      <category><![CDATA[News]]></category>
      <dc:creator><![CDATA[Sourav Rudra]]></dc:creator>
      <pubDate>Tue, 18 Aug 2026 15:55:21 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/08/xen-project-safety-committee-banner.png" medium="image">
        <media:description type="plain">xen project logo, three people sat on a desk, and a flying kick panda who looks rad af</media:description>
      </media:content>
      <content:encoded><![CDATA[<figure><img src="https://itsfoss.com/content/images/2026/08/xen-project-safety-committee-banner.png" alt="xen project logo, three people sat on a desk, and a flying kick panda who looks rad af" loading="lazy"></figure>
<p><a href="https://xenproject.org">Xen</a> is a hypervisor that runs on various kinds of hardware, where a crash can have massive consequences. It is deployed in fields like automotive, industrial automation, robotics, and avionics. These are all safety-critical fields where certification matters.</p><p>So far, it has been on a good trajectory with increasing adoption and enhancements that keep it relevant for enterprise use. What it hasn't had is a structured, collaborative way to help the companies building on it actually get certified for that kind of work.</p><p>It <a href="https://www.linuxfoundation.org/press/xen-project-launches-shared-functional-initiative-for-safety-critical-systems">has launched</a> the <strong>Xen Safety Committee</strong>, a group tasked with building the safety documentation and test evidence that member companies can lean on instead of starting from scratch.</p><p>The committee's job covers software safety requirements, architecture specifications, <a href="https://misra.org.uk">MISRA</a>-related engineering, DFMEA analysis, testing frameworks, tooling, code coverage, and process documentation.</p><p>Founding contributors AMD, EPAM, and Renesas <strong>are credited with doing most of the legwork for the above</strong>, forming the initiative's early foundation.</p><p>The point is to stop every company from solving the same problem on their own. Sharing this foundation should cut costs, avoid duplicated effort, and get products through certification faster for anyone building on Xen.</p><p>Nothing changes about how Xen itself gets built. Source code, licensing, and the existing open contribution and review process stay exactly as they are. The <em>Safety Committee</em> runs as a parallel governance layer, not a replacement for how maintainers already work.</p><p>Though joining the committee isn't all that open. Organizations will need to sign up for the right kind of membership. More on that below. &#128071;</p><h2 id="a-call-for-new-members">A call for new members</h2><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/08/xen-project-members-page.png" class="kg-image" alt="the xen project webpage is shown here, specifically the members page with lots of informational text" loading="lazy" width="1400" height="628" srcset="https://itsfoss.com/content/images/size/w600/2026/08/xen-project-members-page.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/xen-project-members-page.png 1000w, https://itsfoss.com/content/images/2026/08/xen-project-members-page.png 1400w" sizes="(min-width: 720px) 720px"></figure><p>Membership at Xen Project works like most Linux Foundation projects. It funds shared infrastructure, test environments, events, and coordination, while day-to-day technical decisions stay with maintainers through open contribution.</p><p><em>Paying to join doesn't buy influence over the codebase. </em>&#129299;</p><p>AMD, ARM, AWS, Boeing, EPAM, Ford, Honda, Renesas, Vates, and XenServer are all listed as <a href="https://xenproject.org/about/project-members/" rel="noreferrer">current members</a>. These represent chipmakers, cloud providers, automotive, aerospace, and a few other sectors.</p><p>A new membership tier, "<em><strong>Premier Plus</strong></em>" sits above the existing tiers, granting voting representatives on both the Xen <em>Advisory Board</em> and the <em>Safety Committee</em>, a say in setting priorities and roadmap, and access to the committee-managed safety artifacts.</p><p>This way, instead of producing every requirement and test in house, members can hand the committee's existing artifacts to their own safety assessors for audits and assessments.</p><p>Speaking on the topic, <a href="https://www.linkedin.com/in/katestewartaustin">Kate Stewart</a>, Vice President, Dependable Embedded Systems, The Linux Foundation, stated that:</p><blockquote>Systems with safety considerations need a trusted hypervisor to provide the foundation for other open source components, such as Zephyr and Linux, to support mixed criticality embedded applications.</blockquote><blockquote>The Zephyr and Xen projects have been exchanging best practices over the last few years as a pathway to achieve safety certification of open source components. We welcome the Xen Safety Initiative to accelerate the journey of Xen achieving formal certification.</blockquote><hr><p><strong>Suggested Read &#128214;:</strong> <a href="https://itsfoss.com/news/proxmox-virtual-environment-arm64-support/" rel="noreferrer"><em>Proxmox Virtual Environment Officially Runs on ARM64</em></a></p>
<img src="https://feed.itsfoss.com/link/24361/17422118.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[I Found an Easy Way to Make GNOME More Colorful]]></title>
      <description><![CDATA[Rewaita makes it easy to recolor GTK and Libadwaita apps with popular palettes, custom colors and a few extra visual effects.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17422068/rewaita</link>
      <guid isPermaLink="false">6a32c8cce7c630000133b7e0</guid>
      <category><![CDATA[Customization ⚙️]]></category>
      <dc:creator><![CDATA[Pulkit Chandak]]></dc:creator>
      <pubDate>Tue, 18 Aug 2026 12:59:42 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/08/customized-desktop-1.webp" medium="image">
        <media:description type="plain">Rewaita</media:description>
      </media:content>
      <content:encoded><![CDATA[<figure><img src="https://itsfoss.com/content/images/2026/08/customized-desktop-1.webp" alt="Rewaita" loading="lazy"></figure>
<p>One thing that always comes up in the <a href="https://itsfoss.com/comparison/kde-vs-gnome/" rel="noreferrer">GNOME vs KDE debate</a> is how easy it is to <a href="https://itsfoss.com/kde-customization/" rel="noreferrer">customize KDE</a>. You can <a href="https://itsfoss.com/gnome-tricks-ubuntu/" rel="noreferrer">surely customize GNOME</a> but not to the extent of KDE. </p><p>But that doesn't deter us GNOME users from trying new looks and visuals, does it? In that regard, I recently came across a super cool GUI tool that lets give an altogether different look to your GNOME desktop.</p><p>Take a look at the screenshot below. Looks like Archcraft or Omarchy, right?</p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/08/customized-desktop.webp" class="kg-image" alt="GNOME customized with Rewaita" loading="lazy" width="1920" height="1080" srcset="https://itsfoss.com/content/images/size/w600/2026/08/customized-desktop.webp 600w, https://itsfoss.com/content/images/size/w1000/2026/08/customized-desktop.webp 1000w, https://itsfoss.com/content/images/size/w1600/2026/08/customized-desktop.webp 1600w, https://itsfoss.com/content/images/2026/08/customized-desktop.webp 1920w" sizes="(min-width: 720px) 720px"></figure><p>That is the magic of Rewaita, a GUI app worth adding in your customization toolbox.</p><h2 id="rewaita-add-custom-color-tint-to-gnome-adwaita">Rewaita: Add custom color tint to GNOME Adwaita</h2><p><a href="https://github.com/swordpuffin/Rewaita">Rewaita</a> is not a standalone theme or icon. It keeps GNOME&rsquo;s familiar Adwaita design but replaces its colours and adds optional visual effects like changing the transparency to windows.</p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/06/rewaita_interface.png" class="kg-image" alt="Rewaita" loading="lazy" width="1700" height="1300" srcset="https://itsfoss.com/content/images/size/w600/2026/06/rewaita_interface.png 600w, https://itsfoss.com/content/images/size/w1000/2026/06/rewaita_interface.png 1000w, https://itsfoss.com/content/images/size/w1600/2026/06/rewaita_interface.png 1600w, https://itsfoss.com/content/images/2026/06/rewaita_interface.png 1700w" sizes="(min-width: 720px) 720px"></figure><p>As you open Rewaita, it very helpfully gives you a user guide to help you through the process of changing the theme on GNOME. </p><p>Once you're through that process (that I'll describe later), it gives you a good range of choices that include 14 light themes and 24 dark ones (all hail dark mode), followed by 6 Window Control themes. Many of these themes are well-known standard themes around Linux, like <a href="https://github.com/KDE/breeze" rel="noreferrer">Breeze</a>, <a href="https://github.com/nordtheme/nord" rel="noreferrer">Nord</a> and <a href="https://catppuccin.com/" rel="noreferrer">Catppuccin</a>, etc. </p><p>Which is great because they're all tried and tested to suit the popular tastes of Linux users. After all, most Linux ricing screenshots you see on various communities use those color themes. </p><p>The Window Control themes are more of the same that include Breeze, Mint and MacOS-styled button themes.</p><p>All you need to do is choose the theme, and the change is immediate in all newly opened windows.</p><figure class="kg-card kg-video-card kg-width-regular" data-kg-thumbnail="https://itsfoss.com/content/media/2026/06/rewaita_in-action_thumb.jpg" data-kg-custom-thumbnail="">
            <div class="kg-video-container">
                <video src="https://itsfoss.com/content/media/2026/06/rewaita_in-action.webm" poster="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="1094" height="805" loop="" autoplay="" muted="" playsinline="" preload="metadata" style="aspect-ratio: 1094 / 805; background: transparent url('https://itsfoss.com/content/media/2026/06/rewaita_in-action_thumb.jpg') 50% 50% / cover no-repeat;"></video>
                <div class="kg-video-overlay">
                    <button class="kg-video-large-play-icon" aria-label="Play video">
                        <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                            <path d="M23.14 10.608 2.253.164A1.559 1.559 0 0 0 0 1.557v20.887a1.558 1.558 0 0 0 2.253 1.392L23.14 13.393a1.557 1.557 0 0 0 0-2.785Z"></path>
                        </svg>
                    </button>
                </div>
                <div class="kg-video-player-container kg-video-hide">
                    <div class="kg-video-player">
                        <button class="kg-video-play-icon" aria-label="Play video">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <path d="M23.14 10.608 2.253.164A1.559 1.559 0 0 0 0 1.557v20.887a1.558 1.558 0 0 0 2.253 1.392L23.14 13.393a1.557 1.557 0 0 0 0-2.785Z"></path>
                            </svg>
                        </button>
                        <button class="kg-video-pause-icon kg-video-hide" aria-label="Pause video">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <rect x="3" y="1" width="7" height="22" rx="1.5" ry="1.5"></rect>
                                <rect x="14" y="1" width="7" height="22" rx="1.5" ry="1.5"></rect>
                            </svg>
                        </button>
                        <span class="kg-video-current-time">0:00</span>
                        <div class="kg-video-time">
                            /<span class="kg-video-duration">0:16</span>
                        </div>
                        <input type="range" class="kg-video-seek-slider" max="100" value="0">
                        <button class="kg-video-playback-rate" aria-label="Adjust playback speed">1&times;</button>
                        <button class="kg-video-unmute-icon" aria-label="Unmute">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <path d="M15.189 2.021a9.728 9.728 0 0 0-7.924 4.85.249.249 0 0 1-.221.133H5.25a3 3 0 0 0-3 3v2a3 3 0 0 0 3 3h1.794a.249.249 0 0 1 .221.133 9.73 9.73 0 0 0 7.924 4.85h.06a1 1 0 0 0 1-1V3.02a1 1 0 0 0-1.06-.998Z"></path>
                            </svg>
                        </button>
                        <button class="kg-video-mute-icon kg-video-hide" aria-label="Mute">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <path d="M16.177 4.3a.248.248 0 0 0 .073-.176v-1.1a1 1 0 0 0-1.061-1 9.728 9.728 0 0 0-7.924 4.85.249.249 0 0 1-.221.133H5.25a3 3 0 0 0-3 3v2a3 3 0 0 0 3 3h.114a.251.251 0 0 0 .177-.073ZM23.707 1.706A1 1 0 0 0 22.293.292l-22 22a1 1 0 0 0 0 1.414l.009.009a1 1 0 0 0 1.405-.009l6.63-6.631A.251.251 0 0 1 8.515 17a.245.245 0 0 1 .177.075 10.081 10.081 0 0 0 6.5 2.92 1 1 0 0 0 1.061-1V9.266a.247.247 0 0 1 .073-.176Z"></path>
                            </svg>
                        </button>
                        <input type="range" class="kg-video-volume-slider" max="100" value="100">
                    </div>
                </div>
            </div>
            
        </figure><p>Under the hood, it generates CSS overrides and related assets inside directories such as</p><pre><code>~/.config/gtk-3.0/
~/.config/gtk-4.0/
~/.local/share/themes/</code></pre><p>Note that it will only affect GTK applications. Qt (from KDE) and Electron apps may not adhere to the changed color theme.</p><h2 id="using-rewaita">Using Rewaita</h2><p>To activate Rewaita, you have to ensure a few things first.</p><p>Make sure you have the <em>gnome-shell-extensions</em> package installed, which allows you to extend the capabilities of GNOME.</p><p>And then the <a href="https://extensions.gnome.org/extension/19/user-themes/" rel="noreferrer">User Themes extension</a> (I would also recommend installing the <a href="https://github.com/mjakeman/extension-manager" rel="noreferrer">Extension Manager</a>, that makes it easier and more fun to explore various extensions that GNOME has to offer), as well as the <a href="https://github.com/GNOME/gnome-tweaks" rel="noreferrer">GNOME Tweaks</a> application (where you actually choose the theme).</p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/06/rewaita_gnome-user-theme-extension.png" class="kg-image" alt="GNOME User Theme Extension" loading="lazy" width="1700" height="1300" srcset="https://itsfoss.com/content/images/size/w600/2026/06/rewaita_gnome-user-theme-extension.png 600w, https://itsfoss.com/content/images/size/w1000/2026/06/rewaita_gnome-user-theme-extension.png 1000w, https://itsfoss.com/content/images/size/w1600/2026/06/rewaita_gnome-user-theme-extension.png 1600w, https://itsfoss.com/content/images/2026/06/rewaita_gnome-user-theme-extension.png 1700w" sizes="(min-width: 720px) 720px"></figure><div class="kg-card kg-button-card kg-align-center"><a href="https://github.com/swordpuffin/Rewaita" class="kg-btn kg-btn-accent">Get Rewaita</a></div><p>When you're done with all that, finally install <a href="https://github.com/swordpuffin/Rewaita" rel="noreferrer">Rewaita</a>, which is <a href="https://flathub.org/en/apps/io.github.swordpuffin.rewaita">available on Flathub</a>. If you prefer terminal, here is the command:</p><pre><code>flatpak install io.github.swordpuffin.rewaita</code></pre><p>Other ways of installation on distributions such as Arch, OpenSUSE, and NixOS are listed <a href="https://github.com/swordpuffin/Rewaita#%EF%B8%8F-installation" rel="noreferrer">here</a>. </p><p>After that, go into Rewaita and choose a theme. Once you do that, reboot your system, go into <a href="https://itsfoss.com/gnome-tweak-tool/" rel="noreferrer">GNOME Tweaks</a> and choose Rewaita as the Shell theme.</p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/08/rewaita_gnome-tweaks.png" class="kg-image" alt="GNOME Shell theme change" loading="lazy" width="2000" height="1340" srcset="https://itsfoss.com/content/images/size/w600/2026/08/rewaita_gnome-tweaks.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/rewaita_gnome-tweaks.png 1000w, https://itsfoss.com/content/images/size/w1600/2026/08/rewaita_gnome-tweaks.png 1600w, https://itsfoss.com/content/images/2026/08/rewaita_gnome-tweaks.png 2060w" sizes="(min-width: 720px) 720px"></figure><h3 id="flatpak-override">Flatpak Override</h3><p>Since Flatpak applications are treated separately sandboxed, these settings are not applied to them by default. You can, however, make them apply by overriding the settings:</p><pre><code>sudo flatpak override --filesystem=xdg-config/gtk-3.0:rw
sudo flatpak override --filesystem=xdg-config/gtk-4.0:rw</code></pre><p>The first command takes care of GTK-3.0 applications, the second does that for GTK-4.0.</p><h2 id="more-customization-options">More customization options</h2><p>If you desire a more manual and methodical approach, you can even choose the exact colors that you want there to be on the interface on the Custom tab. </p><p>Accent colors, interface colors, button colors, successful, dangerous or warning action colors, etc. can all be manually chosen, alongwith manual color naming and extra CSS code. You can even save these settings as themes on your system for future use.</p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/08/rewaita_custom.png" class="kg-image" alt="Custom coloring options" loading="lazy" width="1700" height="1300" srcset="https://itsfoss.com/content/images/size/w600/2026/08/rewaita_custom.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/rewaita_custom.png 1000w, https://itsfoss.com/content/images/size/w1600/2026/08/rewaita_custom.png 1600w, https://itsfoss.com/content/images/2026/08/rewaita_custom.png 1700w" sizes="(min-width: 720px) 720px"></figure><h2 id="fine-tuning">Fine Tuning</h2><p>The Fine Tune section is another wonderful aspect where you can put in use some extra settings apart from the colors on your system. These include things like transparency, window borders, sharpening corners, etc. There's an option to toggle Rewaita running in the background in case you swap between light and dark modes throughout the day.</p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/08/rewaita_fine-tune.png" class="kg-image" alt="Fine tuning" loading="lazy" width="1700" height="1300" srcset="https://itsfoss.com/content/images/size/w600/2026/08/rewaita_fine-tune.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/rewaita_fine-tune.png 1000w, https://itsfoss.com/content/images/size/w1600/2026/08/rewaita_fine-tune.png 1600w, https://itsfoss.com/content/images/2026/08/rewaita_fine-tune.png 1700w" sizes="(min-width: 720px) 720px"></figure><h3 id="firefox">Firefox</h3><p>You can choose to apply the theme to your Firefox window as well (great edge for the full open source application pack) by enabling 'Generate Firefox CSS Theme' in the Fine Tune tab. After that, Firefox only needs to be fully quit and restarted for the settings to apply.</p><h2 id="wrapping-up">Wrapping Up</h2><p>Rewaita is really, really, really convenient. It makes it extremely easy not to only apply pre-made themes, but also create custom themes of your own with colors and CSS code. </p><p>More options are just a toggle switch away, and the user guide that is present right as you open the application is extremely helpful, telling you all that you need. </p><p>Thoughtfully constructed and beautifully applied, Rewaita is a must use for anyone wanting to make GNOME look aesthetically pleasing.</p>
<!--kg-card-begin: html-->
<div class="repo-stats" data-repo="https://github.com/swordpuffin/Rewaita"></div>
<!--kg-card-end: html-->

<img src="https://feed.itsfoss.com/link/24361/17422068.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[Ubuntu is Growing Faster on Windows Than on Linux]]></title>
      <description><![CDATA[Canonical's VP of Engineering says WSL is the faster-growing side of Ubuntu.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17421675/canonical-wsl-growth</link>
      <guid isPermaLink="false">6a829b8ab11ec20001894761</guid>
      <category><![CDATA[News]]></category>
      <dc:creator><![CDATA[Sourav Rudra]]></dc:creator>
      <pubDate>Mon, 17 Aug 2026 21:53:17 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/08/canonical-windows-banner.png" medium="image">
        <media:description type="plain">canonical and windows logo with elements depicting collaboration and an upward trend</media:description>
      </media:content>
      <content:encoded><![CDATA[<figure><img src="https://itsfoss.com/content/images/2026/08/canonical-windows-banner.png" alt="canonical and windows logo with elements depicting collaboration and an upward trend " loading="lazy"></figure>
<p>Back in April, <a href="https://www.linkedin.com/in/jnsgruk/">Jon Seager</a>, Canonical's VP of Engineering, spoke with <a href="https://newsletter.pragmaticengineer.com/p/ubuntu-and-ai">The Pragmatic Engineer</a> (<em>paywalled</em>), telling them that Ubuntu inside Windows Subsystem for Linux (WSL) is growing faster than native Ubuntu desktop installs.</p><p>Jon was speaking on the topic of how AI is reshaping Ubuntu when the topic of WSL came up, where he pointed out that:</p><blockquote>In a year, the growth in our WSL numbers is significantly higher than the growth in Desktop usage numbers. WSL enables Windows users to &ldquo;install&rdquo; Ubuntu for use within their Windows environment. <br><br>Once installed, users interact with Ubuntu through the Terminal app, and what you&rsquo;re running literally is Ubuntu. Your home directory is mounted with Ubuntu and you can pull windows out of this terminal to your desktop; as in actual windows as on-screen windows.</blockquote><blockquote><strong>I expect to see more Ubuntu WSL users than &ldquo;native&rdquo; Ubuntu users over the coming months</strong>. This is especially true for anyone doing ML or AI work. We&rsquo;re already hearing from lots of devs who have no choice but to get a Windows machine from their employer, but then find themselves needing to do AI or ML work. With WSL, this is a lot simpler.</blockquote><p>Since then, <strong>Jon has clarified those comments</strong>.</p><p>Speaking to <a href="https://www.zdnet.com/article/ubuntu-on-windows-outgrowing-native-installs-not-according-to-canonicals-jon-seager/">Steven Vaughan-Nichols</a> at ZDNET, he said <strong>the growth comparison was only ever about rate, not absolute numbers</strong>.</p><p>He meant Ubuntu Desktop's growth rate on <a href="https://learn.microsoft.com/en-us/windows/wsl/install">WSL</a> against Ubuntu Desktop's growth rate on bare metal, specifically, not WSL against Ubuntu as a whole, which also runs on servers, cloud instances, and containers.</p><h2 id="canonical-shouldnt-be-bothered">Canonical shouldn't be bothered</h2><p><a href="https://ubuntu.com/pro" rel="noreferrer">Ubuntu Pro</a>, Canonical's paid security and support subscription, <a href="https://canonical.com/blog/canonical-announces-ubuntu-pro-for-wsl">already covers WSL instances</a> the same way it covers native installs. Subscribers get to take advantage of up to 15 years of CVE patching, toolchain coverage for Python, Go, and Rust, and fleet management.</p><p>Simply speaking, a WSL user on Ubuntu Pro and a data center running Ubuntu Server are the same kind of customer to <a href="https://canonical.com/">Canonical</a>; the company gets paid either way.</p><p>And, as you saw earlier, <strong>Jon also points to why demand keeps climbing</strong>. Plenty of developers don't get a say in their work laptop, and once AI or ML work lands on their plate, WSL becomes the easiest way to get a working Linux environment without a fight over IT policy.</p><p><a href="https://www.linkedin.com/in/craig-loewen/" rel="noreferrer">Craig Loewen</a>, WSL's product manager at Microsoft, called the Ubuntu Pro arrangement a "<em>fantastic partnership</em>" when it launched, further stating that:</p><blockquote>This work will benefit enterprise developers who use WSL to build production Linux solutions.</blockquote><h2 id="what-does-it-mean-for-native-linux">What does it mean for native Linux?</h2><p>This is where it gets tricky if you are rooting for the Linux desktop specifically.</p><p>If WSL satisfies the demand that would otherwise push developers toward dual-booting or switching entirely, does that take pressure off IT departments and hardware vendors to ever approve native Linux at all?</p><p>Of course, running Ubuntu on bare metal will still be better than WSL for anyone who wants full hardware control, maximum performance, and a Linux-first setup.</p><p><em>Via: </em><a href="https://www.windowslatest.com/2026/08/16/ubuntu-is-growing-faster-on-windows-11-than-on-native-linux-pcs-says-canonical/"><em>Windows Latest</em></a></p>
<img src="https://feed.itsfoss.com/link/24361/17421675.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[Looking Beyond Tmux and Screen: 8 Terminal Multiplexers Worth Trying]]></title>
      <description><![CDATA[Earlier it was screen and now a days tmux. But there are many more terminal multiplexers out there worth exploring.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17421495/terminal-multiplexers</link>
      <guid isPermaLink="false">6a74312440b6c5000119b92c</guid>
      <category><![CDATA[Terminal Tools]]></category>
      <dc:creator><![CDATA[Sreenath]]></dc:creator>
      <pubDate>Mon, 17 Aug 2026 16:40:23 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/08/terminal-multiplexers-for-linux.webp" medium="image">
        <media:description type="plain">terminal multiplexers for Linux</media:description>
      </media:content>
      <content:encoded><![CDATA[<figure><img src="https://itsfoss.com/content/images/2026/08/terminal-multiplexers-for-linux.webp" alt="terminal multiplexers for Linux" loading="lazy"></figure>
<p>Whether you're a developer, system administrator, or simply someone who spends a lot of time in the terminal, juggling multiple terminal sessions can be messy and frustrating. </p><p>A terminal multiplexer helps you keep everything organized, letting you manage several sessions from a single interface while making your workflow much more efficient.</p><p>While <a href="https://linuxhandbook.com/tmux/">tmux</a> and <a href="https://linuxhandbook.com/screen-command/">GNU Screen</a> are the names most Linux users are familiar with, there are many more similar terminal multiplexer tools available. As someone who like to explore new tools, I spent some time and came up with this list for you.</p><div class="kg-card kg-callout-card kg-callout-card-blue"><div class="kg-callout-emoji">&#128203;</div><div class="kg-callout-text">Many terminal emulators let you split your screen into panes, but splitting a screen isn't the same as multiplexing it. For this list, I am focusing on tools that offer real session value beyond arranging windows.</div></div><h2 id="zellij">Zellij</h2><p><a href="https://zellij.dev/">Zellij</a> describes itself as a terminal workspace rather than just a multiplexer, with an emphasis on delivering a polished experience from the moment you launch it.</p><p>It aims to provide sensible defaults while still leaving plenty of room for customization.</p><figure class="kg-card kg-embed-card kg-card-hascaption"><iframe src="https://player.vimeo.com/video/1216045767?app_id=122963" width="422" height="240" frameborder="0" allow="autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share" referrerpolicy="strict-origin-when-cross-origin" title="zellij"></iframe><figcaption><p><span style="white-space: pre-wrap;">Zellij</span></p></figcaption></figure><p>One of the things that sets Zellij apart is its focus on usability. Built-in layouts, a plugin system, and collaborative sessions are all part of the experience, but the project's philosophy is that you shouldn't have to trade simplicity for advanced functionality.</p><p>This makes it approachable for newcomers while still offering enough flexibility for users who want to tailor their workspace.</p><p>While this is not a ranking list, Zellij is the first one on this list because I have used it on a daily basis for the past several months.</p>
<!--kg-card-begin: html-->
<div class="repo-stats" data-repo="https://github.com/zellij-org/zellij"></div>
<!--kg-card-end: html-->
<h2 id="tuios">TUIOS</h2><p>While most terminal multiplexers focus on helping you manage terminal sessions, <a href="https://github.com/Gaurav-Gosain/tuios">TUIOS</a> takes that idea a step further by presenting itself as a terminal window manager.</p><p>TUIOS tries to bring concepts you'd expect from a tiling window manager, such as workspaces, automatic tiling, and window management, into your existing terminal.</p><figure class="kg-card kg-embed-card kg-card-hascaption"><iframe src="https://player.vimeo.com/video/1216038247?app_id=122963" width="426" height="240" frameborder="0" allow="autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share" referrerpolicy="strict-origin-when-cross-origin" title="tui-os"></iframe><figcaption><p><span style="white-space: pre-wrap;">TUIOS</span></p></figcaption></figure><p>The workflow is centered around a modal interface inspired by Vim, letting you switch between managing windows and interacting with terminal applications.</p><p>Alongside features like a command palette and workspace organization, TUIOS also supports automation through tape files, making it suitable for users who want to build repeatable terminal workflows instead of just juggling multiple shells.</p>
<!--kg-card-begin: html-->
<div class="repo-stats" data-repo="https://github.com/Gaurav-Gosain/tuios"></div>
<!--kg-card-end: html-->
<h2 id="wezterm">Wezterm</h2><p>You probably know <a href="https://wezterm.org/index.html">WezTerm</a> as a feature-rich terminal emulator. But there's more to it than meets the eye.</p><p>WezTerm includes a built-in multiplexer, allowing you to create and manage persistent sessions without relying on a separate tool.</p><figure class="kg-card kg-embed-card kg-card-hascaption"><iframe src="https://player.vimeo.com/video/1216045768?app_id=122963" width="426" height="234" frameborder="0" allow="autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share" referrerpolicy="strict-origin-when-cross-origin" title="wezterm-as-mux"></iframe><figcaption><p><span style="white-space: pre-wrap;">Wezterm as a Terminal Multiplexer</span></p></figcaption></figure><p>It integrates multiplexing directly into the terminal and supports local domains. While it lets you connect to remote domains over SSH and other tmux like features, this requires you to spend some time configuring.</p>
<!--kg-card-begin: html-->
<div class="repo-stats" data-repo="https://github.com/wezterm/wezterm"></div>
<!--kg-card-end: html-->
<h2 id="kitty-abduco">Kitty + Abduco</h2><p>If you're already <a href="https://itsfoss.com/kitty-customization/" rel="noreferrer">using Kitty as your terminal emulator</a>, you don't necessarily have to switch to a traditional multiplexer. Pairing it with <a href="https://github.com/martanne/abduco">abduco</a> gives you a lightweight way to keep terminal sessions running in the background while letting Kitty handle everything on the frontend.</p><figure class="kg-card kg-video-card kg-width-regular kg-card-hascaption" data-kg-thumbnail="https://itsfoss.com/content/media/2026/08/abduco-in-kitty-1_thumb.jpg" data-kg-custom-thumbnail="">
            <div class="kg-video-container">
                <video src="https://itsfoss.com/content/media/2026/08/abduco-in-kitty-1.webm" poster="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="1464" height="806" loop="" autoplay="" muted="" playsinline="" preload="metadata" style="aspect-ratio: 1464 / 806; background: transparent url('https://itsfoss.com/content/media/2026/08/abduco-in-kitty-1_thumb.jpg') 50% 50% / cover no-repeat;"></video>
                <div class="kg-video-overlay">
                    <button class="kg-video-large-play-icon" aria-label="Play video">
                        <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                            <path d="M23.14 10.608 2.253.164A1.559 1.559 0 0 0 0 1.557v20.887a1.558 1.558 0 0 0 2.253 1.392L23.14 13.393a1.557 1.557 0 0 0 0-2.785Z"></path>
                        </svg>
                    </button>
                </div>
                <div class="kg-video-player-container kg-video-hide">
                    <div class="kg-video-player">
                        <button class="kg-video-play-icon" aria-label="Play video">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <path d="M23.14 10.608 2.253.164A1.559 1.559 0 0 0 0 1.557v20.887a1.558 1.558 0 0 0 2.253 1.392L23.14 13.393a1.557 1.557 0 0 0 0-2.785Z"></path>
                            </svg>
                        </button>
                        <button class="kg-video-pause-icon kg-video-hide" aria-label="Pause video">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <rect x="3" y="1" width="7" height="22" rx="1.5" ry="1.5"></rect>
                                <rect x="14" y="1" width="7" height="22" rx="1.5" ry="1.5"></rect>
                            </svg>
                        </button>
                        <span class="kg-video-current-time">0:00</span>
                        <div class="kg-video-time">
                            /<span class="kg-video-duration">0:30</span>
                        </div>
                        <input type="range" class="kg-video-seek-slider" max="100" value="0">
                        <button class="kg-video-playback-rate" aria-label="Adjust playback speed">1&times;</button>
                        <button class="kg-video-unmute-icon" aria-label="Unmute">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <path d="M15.189 2.021a9.728 9.728 0 0 0-7.924 4.85.249.249 0 0 1-.221.133H5.25a3 3 0 0 0-3 3v2a3 3 0 0 0 3 3h1.794a.249.249 0 0 1 .221.133 9.73 9.73 0 0 0 7.924 4.85h.06a1 1 0 0 0 1-1V3.02a1 1 0 0 0-1.06-.998Z"></path>
                            </svg>
                        </button>
                        <button class="kg-video-mute-icon kg-video-hide" aria-label="Mute">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <path d="M16.177 4.3a.248.248 0 0 0 .073-.176v-1.1a1 1 0 0 0-1.061-1 9.728 9.728 0 0 0-7.924 4.85.249.249 0 0 1-.221.133H5.25a3 3 0 0 0-3 3v2a3 3 0 0 0 3 3h.114a.251.251 0 0 0 .177-.073ZM23.707 1.706A1 1 0 0 0 22.293.292l-22 22a1 1 0 0 0 0 1.414l.009.009a1 1 0 0 0 1.405-.009l6.63-6.631A.251.251 0 0 1 8.515 17a.245.245 0 0 1 .177.075 10.081 10.081 0 0 0 6.5 2.92 1 1 0 0 0 1.061-1V9.266a.247.247 0 0 1 .073-.176Z"></path>
                            </svg>
                        </button>
                        <input type="range" class="kg-video-volume-slider" max="100" value="100">
                    </div>
                </div>
            </div>
            <figcaption><p><span style="white-space: pre-wrap;">Kitty with Abduco</span></p></figcaption>
        </figure><p>It's a simple combination that sticks to the Unix philosophy of using small tools that do one job well.</p><p>The primary job of abduco is to detach and reattach terminal sessions, leaving the rest to your terminal emulator.</p><p>Kitty complements this nicely with features like tabs, splits, and a polished interface, giving you a workflow that feels familiar while still providing session persistence.</p>
<!--kg-card-begin: html-->
<div class="repo-stats" data-repo="https://github.com/martanne/abduco"></div>
<!--kg-card-end: html-->
<h2 id="tmate">tmate</h2><p>Rather than reinventing the multiplexer experience, <a href="https://github.com/tmate-io/tmate">tmate</a> builds on tmux and adds secure session sharing, making it easy to collaborate, troubleshoot problems, or provide remote assistance without asking someone to install extra software.</p><figure class="kg-card kg-video-card kg-width-regular kg-card-hascaption" data-kg-thumbnail="https://itsfoss.com/content/media/2026/08/tmate-sessions_thumb.jpg" data-kg-custom-thumbnail="">
            <div class="kg-video-container">
                <video src="https://itsfoss.com/content/media/2026/08/tmate-sessions.webm" poster="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="1464" height="809" loop="" autoplay="" muted="" playsinline="" preload="metadata" style="aspect-ratio: 1464 / 809; background: transparent url('https://itsfoss.com/content/media/2026/08/tmate-sessions_thumb.jpg') 50% 50% / cover no-repeat;"></video>
                <div class="kg-video-overlay">
                    <button class="kg-video-large-play-icon" aria-label="Play video">
                        <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                            <path d="M23.14 10.608 2.253.164A1.559 1.559 0 0 0 0 1.557v20.887a1.558 1.558 0 0 0 2.253 1.392L23.14 13.393a1.557 1.557 0 0 0 0-2.785Z"></path>
                        </svg>
                    </button>
                </div>
                <div class="kg-video-player-container kg-video-hide">
                    <div class="kg-video-player">
                        <button class="kg-video-play-icon" aria-label="Play video">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <path d="M23.14 10.608 2.253.164A1.559 1.559 0 0 0 0 1.557v20.887a1.558 1.558 0 0 0 2.253 1.392L23.14 13.393a1.557 1.557 0 0 0 0-2.785Z"></path>
                            </svg>
                        </button>
                        <button class="kg-video-pause-icon kg-video-hide" aria-label="Pause video">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <rect x="3" y="1" width="7" height="22" rx="1.5" ry="1.5"></rect>
                                <rect x="14" y="1" width="7" height="22" rx="1.5" ry="1.5"></rect>
                            </svg>
                        </button>
                        <span class="kg-video-current-time">0:00</span>
                        <div class="kg-video-time">
                            /<span class="kg-video-duration">0:46</span>
                        </div>
                        <input type="range" class="kg-video-seek-slider" max="100" value="0">
                        <button class="kg-video-playback-rate" aria-label="Adjust playback speed">1&times;</button>
                        <button class="kg-video-unmute-icon" aria-label="Unmute">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <path d="M15.189 2.021a9.728 9.728 0 0 0-7.924 4.85.249.249 0 0 1-.221.133H5.25a3 3 0 0 0-3 3v2a3 3 0 0 0 3 3h1.794a.249.249 0 0 1 .221.133 9.73 9.73 0 0 0 7.924 4.85h.06a1 1 0 0 0 1-1V3.02a1 1 0 0 0-1.06-.998Z"></path>
                            </svg>
                        </button>
                        <button class="kg-video-mute-icon kg-video-hide" aria-label="Mute">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <path d="M16.177 4.3a.248.248 0 0 0 .073-.176v-1.1a1 1 0 0 0-1.061-1 9.728 9.728 0 0 0-7.924 4.85.249.249 0 0 1-.221.133H5.25a3 3 0 0 0-3 3v2a3 3 0 0 0 3 3h.114a.251.251 0 0 0 .177-.073ZM23.707 1.706A1 1 0 0 0 22.293.292l-22 22a1 1 0 0 0 0 1.414l.009.009a1 1 0 0 0 1.405-.009l6.63-6.631A.251.251 0 0 1 8.515 17a.245.245 0 0 1 .177.075 10.081 10.081 0 0 0 6.5 2.92 1 1 0 0 0 1.061-1V9.266a.247.247 0 0 1 .073-.176Z"></path>
                            </svg>
                        </button>
                        <input type="range" class="kg-video-volume-slider" max="100" value="100">
                    </div>
                </div>
            </div>
            <figcaption><p><span style="white-space: pre-wrap;">Tmate</span></p></figcaption>
        </figure><p>The biggest addition is the ability to generate a connection string that others can use to join your session.</p><p>By default, these shared sessions are relayed through tmate's public servers, although you can host your own relay if you prefer to keep everything under your control. If you never need to share your terminal, however, plain tmux is likely the better fit.</p>
<!--kg-card-begin: html-->
<div class="repo-stats" data-repo="https://github.com/tmate-io/tmate"></div>
<!--kg-card-end: html-->
<h2 id="boo">Boo</h2><p>At first glance, <a href="https://github.com/coder/boo">boo</a> might look like just another GNU Screen alternative. In reality, it's a fairly different take on terminal multiplexing.</p><p>Built on <a href="https://itsfoss.com/ghostty-terminal-features/" rel="noreferrer">Ghostty</a>'s terminal emulation library, boo keeps track of the actual terminal state, allowing it to recreate a session exactly as you left it, even after you've detached and reattached.</p><figure class="kg-card kg-video-card kg-width-regular kg-card-hascaption" data-kg-thumbnail="https://itsfoss.com/content/media/2026/08/boo_thumb.jpg" data-kg-custom-thumbnail="">
            <div class="kg-video-container">
                <video src="https://itsfoss.com/content/media/2026/08/boo.webm" poster="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" width="1360" height="745" loop="" autoplay="" muted="" playsinline="" preload="metadata" style="aspect-ratio: 1360 / 745; background: transparent url('https://itsfoss.com/content/media/2026/08/boo_thumb.jpg') 50% 50% / cover no-repeat;"></video>
                <div class="kg-video-overlay">
                    <button class="kg-video-large-play-icon" aria-label="Play video">
                        <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                            <path d="M23.14 10.608 2.253.164A1.559 1.559 0 0 0 0 1.557v20.887a1.558 1.558 0 0 0 2.253 1.392L23.14 13.393a1.557 1.557 0 0 0 0-2.785Z"></path>
                        </svg>
                    </button>
                </div>
                <div class="kg-video-player-container kg-video-hide">
                    <div class="kg-video-player">
                        <button class="kg-video-play-icon" aria-label="Play video">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <path d="M23.14 10.608 2.253.164A1.559 1.559 0 0 0 0 1.557v20.887a1.558 1.558 0 0 0 2.253 1.392L23.14 13.393a1.557 1.557 0 0 0 0-2.785Z"></path>
                            </svg>
                        </button>
                        <button class="kg-video-pause-icon kg-video-hide" aria-label="Pause video">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <rect x="3" y="1" width="7" height="22" rx="1.5" ry="1.5"></rect>
                                <rect x="14" y="1" width="7" height="22" rx="1.5" ry="1.5"></rect>
                            </svg>
                        </button>
                        <span class="kg-video-current-time">0:00</span>
                        <div class="kg-video-time">
                            /<span class="kg-video-duration">0:46</span>
                        </div>
                        <input type="range" class="kg-video-seek-slider" max="100" value="0">
                        <button class="kg-video-playback-rate" aria-label="Adjust playback speed">1&times;</button>
                        <button class="kg-video-unmute-icon" aria-label="Unmute">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <path d="M15.189 2.021a9.728 9.728 0 0 0-7.924 4.85.249.249 0 0 1-.221.133H5.25a3 3 0 0 0-3 3v2a3 3 0 0 0 3 3h1.794a.249.249 0 0 1 .221.133 9.73 9.73 0 0 0 7.924 4.85h.06a1 1 0 0 0 1-1V3.02a1 1 0 0 0-1.06-.998Z"></path>
                            </svg>
                        </button>
                        <button class="kg-video-mute-icon kg-video-hide" aria-label="Mute">
                            <svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24">
                                <path d="M16.177 4.3a.248.248 0 0 0 .073-.176v-1.1a1 1 0 0 0-1.061-1 9.728 9.728 0 0 0-7.924 4.85.249.249 0 0 1-.221.133H5.25a3 3 0 0 0-3 3v2a3 3 0 0 0 3 3h.114a.251.251 0 0 0 .177-.073ZM23.707 1.706A1 1 0 0 0 22.293.292l-22 22a1 1 0 0 0 0 1.414l.009.009a1 1 0 0 0 1.405-.009l6.63-6.631A.251.251 0 0 1 8.515 17a.245.245 0 0 1 .177.075 10.081 10.081 0 0 0 6.5 2.92 1 1 0 0 0 1.061-1V9.266a.247.247 0 0 1 .073-.176Z"></path>
                            </svg>
                        </button>
                        <input type="range" class="kg-video-volume-slider" max="100" value="100">
                    </div>
                </div>
            </div>
            <figcaption><p><span style="white-space: pre-wrap;">Boo</span></p></figcaption>
        </figure><p>The project also leans into automation. Besides keeping sessions alive, it includes commands that let scripts and AI agents inspect or interact with detached sessions without needing a live terminal connection.</p>
<!--kg-card-begin: html-->
<div class="repo-stats" data-repo="https://github.com/coder/boo"></div>
<!--kg-card-end: html-->
<h2 id="okena">Okena</h2><p><a href="https://github.com/contember/okena">Okena</a> combines terminals, tabs, panes, and projects into a single interface, with a strong focus on helping you pick up exactly where you left off.</p><p>Close the application, reopen it later, and your workspace is restored much like you never left.</p><figure class="kg-card kg-embed-card kg-card-hascaption"><iframe src="https://player.vimeo.com/video/1216074514?app_id=122963" width="418" height="240" frameborder="0" allow="autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share" referrerpolicy="strict-origin-when-cross-origin" title="okena-mux"></iframe><figcaption><p><span style="white-space: pre-wrap;">Okena</span></p></figcaption></figure><p>That persistence model is what makes Okena different. Unlike tmux or GNU Screen, it doesn't keep sessions running in the background after the application closes, nor is it designed for detached SSH workflows or remote session management.</p><p>Instead, the emphasis is on restoring your local workspace, making it feel more like a modern development environment than a server-backed multiplexer.</p>
<!--kg-card-begin: html-->
<div class="repo-stats" data-repo="https://github.com/contember/okena/"></div>
<!--kg-card-end: html-->
<h2 id="seance">Seance</h2><p><a href="https://github.com/no1msd/seance">Seance</a>, built with GTK4 and libadwaita, takes a desktop-first approach to terminal session management. It feel more like a modern Linux application than a traditional keyboard-driven multiplexer.</p><figure class="kg-card kg-embed-card kg-card-hascaption"><iframe src="https://player.vimeo.com/video/1216076656?app_id=122963" width="402" height="240" frameborder="0" allow="autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share" referrerpolicy="strict-origin-when-cross-origin" title="seance"></iframe><figcaption><p><span style="white-space: pre-wrap;">Seance. </span><i><em class="italic" style="white-space: pre-wrap;">Video Credit: </em></i><a href="https://github.com/no1msd/seance" rel="noreferrer"><i><em class="italic" style="white-space: pre-wrap;">Seance</em></i></a></p></figcaption></figure><p>It offers a clean interface with configurable key bindings, workspace management, and session persistence across restarts, so you can reopen the application and continue where you left off.</p><p>However, it isn't designed around detached server sessions or remote SSH workflows. Instead, it focuses on providing a polished experience for managing terminal workspaces on your local Linux desktop.</p>
<!--kg-card-begin: html-->
<div class="repo-stats" data-repo="https://github.com/no1msd/seance"></div>
<!--kg-card-end: html-->
<h2 id="wrapping-up">Wrapping Up</h2><p>As you can see, there's no shortage of ways to organize your terminal workflow. Some of these tools have been around for decades, while others are reimagining what a terminal workspace can look like. The thing is that there's no single "right" choice. It all comes down to how you work.</p><p>Whichever you choose, learning to use a terminal multiplexer is one of those skills that pays off over time. Once it becomes part of your workflow, your muscle memory, there is no going back to normal terminal sessions.</p><p>By the way, you might be interested in exploring <a href="https://itsfoss.com/linux-terminal-emulators/">various terminal emulators</a> as well.</p>
<img src="https://feed.itsfoss.com/link/24361/17421495.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[Linux 7.2 Arrives With Cache Aware Scheduling After More Than a Year of Work]]></title>
      <description><![CDATA[AMD's Radeon driver also picks up HDMI 2.1 support, and Apple M3 MacBooks can now boot the kernel.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17420586/linux-kernel-7-2-release</link>
      <guid isPermaLink="false">6a70462bf2e54e0001b67a15</guid>
      <category><![CDATA[News]]></category>
      <dc:creator><![CDATA[Sourav Rudra]]></dc:creator>
      <pubDate>Mon, 17 Aug 2026 10:38:16 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/08/linux-kernel-7-2-release-banner.png" medium="image">
        <media:description type="plain">a cardboard box with green upward arrows and tux, the mascot penguin of linux is shown</media:description>
      </media:content>
      <content:encoded><![CDATA[<figure><img src="https://itsfoss.com/content/images/2026/08/linux-kernel-7-2-release-banner.png" alt="a cardboard box with green upward arrows and tux, the mascot penguin of linux is shown" loading="lazy"></figure>
<p>The newest point release for Linux is here a few months after <a href="https://itsfoss.com/news/linux-kernel-7-1-release/">the last one</a>, and the time in-between was not spent idly. Scheduler work that took over a year finally came together, several pieces of hardware got proper support, and a series of 2023 MacBooks can finally boot Linux.</p><p>During all this, Linus Torvalds' transition from treating AI as noise for years to slowly warming up to it has been something of <a href="https://itsfoss.com/news/linus-torvalds-on-ai/">a wildcard entry</a>.</p><p>Anyhow, let's see what this point release has to offer.</p><h2 id="whats-new-in-this-release">What's new in this release?</h2><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/08/linux-kernel-7-2-ubuntu-fastfetch-output.png" class="kg-image" alt="fastfetch output shown inside a terminal window, the kernel version info is highlighted using a green rectangular box and blue arrows" loading="lazy" width="770" height="621" srcset="https://itsfoss.com/content/images/size/w600/2026/08/linux-kernel-7-2-ubuntu-fastfetch-output.png 600w, https://itsfoss.com/content/images/2026/08/linux-kernel-7-2-ubuntu-fastfetch-output.png 770w" sizes="(min-width: 720px) 720px"></figure><p>AMD's platform driver changes lean heavily on <a href="https://en.wikipedia.org/wiki/Zen_6">Zen 6</a> prep. The Hardware Feedback Interface (<a href="https://docs.kernel.org/arch/x86/amd-hfi.html">HFI</a>) driver adds v3 ranking table support for dynamic core rankings, and the power management controller driver adds support for Family 1Ah Model 80H SoCs (<em>a Zen 6-focused change, basically</em>).</p><p>What Ubuntu's OEM kernel had been carrying out of tree is now in. The long-awaited <a href="https://docs.kernel.org/admin-guide/media/amdisp4-1.html" rel="noreferrer">AMD ISP4 driver</a> completes webcam support for the HP ZBook Ultra G1a and other upcoming Ryzen laptops.</p><p>Similarly, AMDGPU has gained initial <a href="https://lore.kernel.org/dri-devel/20260604013527.2373534-1-alexander.deucher@amd.com/">HDMI 2.1 Fixed Rate Link</a> support (FRL), <a href="https://www.phoronix.com/news/HDMI-2.1-OSS-Rejected">years after</a> the <a href="https://hdmiforum.org">HDMI Forum</a> blocked the feature from the open source driver.</p><p>For Intel, most of this round's <a href="https://en.wikipedia.org/wiki/Error_detection_and_correction">EDAC</a> work targets next-gen Xeon Diamond Rapids chips, adding sub-memory channel awareness and Rank Retry Logic to preserve data integrity during memory errors. Nova Lake H and Panther Lake H gain in-band ECC error reporting through the <a href="https://github.com/torvalds/linux/blob/master/drivers/edac/igen6_edac.c" rel="noreferrer">IGEN6</a> driver.</p><p>Linux 7.2 also continues clearing out old i486 chunks that <a href="https://itsfoss.com/news/linux-kernel-i486-cpu-support-removal/">started disappearing in 7.1</a> and makes TSC and CX8 support unconditional on x86. TDX modules can now update at runtime, similar to CPU microcode, so security fixes no longer force a full reboot on <a href="https://www.intel.com/content/www/us/en/developer/tools/trust-domain-extensions/overview.html">TDX</a>-enabled systems.</p><p>Another highlight of this kernel release has been <strong>Cache Aware Scheduling</strong>, which <a href="https://www.phoronix.com/news/Linux-7.2-Scheduler">was merged</a> after more than a year of work, landing behind the <code>CONFIG_SCHED_CACHE</code> option. </p><p>Without cache awareness, the scheduler can end up scattering related tasks across zones on chips with multiple <a href="https://cvw.cac.cornell.edu/clusterarch/memory-cache-interconnects/last-level-cache">last-level caches</a> (LLCs). This feature groups those tasks onto cores within the same LLC instead.</p><p>Laptop support also sees some improvements that include new ASUS ROG Strix G16 2025, Zephyrus G14 2023/2025, and TUF Gaming F16 support. Lenovo laptops gain more configurable attributes along with WMI battery charge limiting, and Microsoft's Surface Pro 12-inch gets platform driver support.</p><p>A few <strong>smaller changes</strong> round things out:</p><ul><li>Nouveau adds support for the NVIDIA GA100 compute accelerator <a href="https://lore.kernel.org/dri-devel/ef65f43c-becf-473c-a5cc-203fdfecd491@linux.intel.com/" rel="noreferrer">via GSP</a>.</li><li>Btrfs large folio support <a href="https://www.phoronix.com/news/Linux-7.2-Btrfs">left experimental status</a> and is now on by default, and huge folios up to 2M arrive as a new experimental option.</li><li>RISC-V builds now enable the <a href="https://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git/commit/?h=for-next&amp;id=dea5db8c5775704f24519d130482d9ceaf66c441">ESWIN SoC</a> by default, letting them boot on SiFive's <a href="https://www.sifive.com/boards/hifive-premier-p550">HiFive Premier P550</a>.</li><li>Networking brings more <a href="https://developer.apple.com/documentation/WiFiAware">Wi-Fi Aware</a> and WiFi 8/UHR groundwork, plus 10Gbit and <a href="https://en.wikipedia.org/wiki/Energy-Efficient_Ethernet">EEE</a> support in the Realtek R8152 driver.</li><li><a href="https://www.apple.com/newsroom/2023/10/apple-unveils-m3-m3-pro-and-m3-max-the-most-advanced-chips-for-a-personal-computer/">Apple M3</a> MacBooks can boot the mainline kernel for the first time, though only to a serial console so far. The <a href="https://asahilinux.org">Asahi Linux</a> devs worked hard to deliver this.</li><li>A new <a href="https://itsfoss.com/news/linux-usb4stream-protocol/">USB4STREAM protocol</a> that lets two machines move data directly over a USB4 or Thunderbolt cable.</li></ul><p>Announcing <a href="https://lore.kernel.org/lkml/CAHk-=wjk5StpAmUKHacj=GPKwA88y_YRHK=i_YAJFgmxn1=k4w@mail.gmail.com/">the release</a>, Linus Torvalds said that:</p><blockquote>Well, this last week of the release was - once again - bigger than I would have wished for, but hey, with the whole "new normal" thing, if I delayed releases for that reason we'd probably never have a release at all.</blockquote><blockquote>There are a number of fairly late reverts - the drm scheduling reverts stand out, but there's a few other ones in here too. It may not be pretty, but it's the correct way to deal with "oh, that code wasn't ready and caused problems". People will be trying that again later.</blockquote><h2 id="is-it-for-you">Is it for you?</h2><p>It's good to get excited about a new kernel release, but&nbsp;<a href="https://itsfoss.com/compile-linux-kernel/" rel="noreferrer">compiling the kernel</a>&nbsp;or installing a new one is usually considered for intermediate to expert levels of skill. If this release fills some gap you faced with earlier kernels, then you should definitely go for it.</p><p>But not without knowing the risks. Our guide for <a href="https://itsfoss.com/upgrade-linux-kernel-ubuntu/">installing the latest Linux kernel on Ubuntu</a> clearly spells out the pitfalls.</p><div class="kg-card kg-button-card kg-align-center"><a href="https://www.kernel.org/?ref=itsfoss.com" class="kg-btn kg-btn-accent">Linux Kernel 7.2</a></div>
<img src="https://feed.itsfoss.com/link/24361/17420586.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[Overshared to an AI? Proton's Tool Will Give You a Reality Check]]></title>
      <description><![CDATA[Powered by Lumo, the tool turns your exported AI chat history into a personalized report of your privacy exposure.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17418931/proton-ai-paper-trail</link>
      <guid isPermaLink="false">6a7eda50b11ec200018935ed</guid>
      <category><![CDATA[News]]></category>
      <dc:creator><![CDATA[Sourav Rudra]]></dc:creator>
      <pubDate>Sat, 15 Aug 2026 11:55:59 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/08/proton-ai-paper-trail-banner.png" medium="image">
        <media:description type="plain">an ai paper trail scorecard on the left, the feline mascot of lumo assistant by proton on the right</media:description>
      </media:content>
      <content:encoded><![CDATA[<figure><img src="https://itsfoss.com/content/images/2026/08/proton-ai-paper-trail-banner.png" alt="an ai paper trail scorecard on the left, the feline mascot of lumo assistant by proton on the right" loading="lazy"></figure>
<p>Proton has launched <a href="https://proton.me/lumo/ai/ai-paper-trail" rel="noreferrer">AI Paper Trail</a>, a free tool that shows people what their AI chatbot conversations reveal about them. It runs on <a href="https://go.getproton.me/aff_c?offer_id=68&amp;aff_id=1173"><strong>Lumo</strong></a> (partner link), the company's privacy-focused AI assistant, and works by digging through exported <a href="https://chatgpt.com/">ChatGPT</a> or <a href="https://claude.ai/">Claude</a> conversation history.</p><p>Once you upload your content, the tool starts building <strong>a personal report around four categories</strong>. There's a "<em>Privacy Type</em>," a personality label based on how someone approaches their own data. Then comes an "<em>AI Exposure Score</em>," a number built from how many personal data points got pulled out of the conversations and how revealing they are.</p><p>The report also breaks down what the AI actually knows about you, covering identity, habits, relationships, and interests. On top of that, it puts a monetary figure on what this information could be worth to an AI provider.</p><p><strong>And none of the uploaded data sticks around on Proton's server</strong>; the company says that it gets deleted right after analysis, and the resulting report stays visible only to the person who generated it.</p><p>The reasoning behind AI Paper Trail comes down to how casually people treat individual AI prompts. A single question about travel plans or a work email draft might seem harmless on its own.</p><p>But stack up months or years of conversations covering someone's job, relationships, health concerns, and finances, and a surprisingly complete picture starts to form.</p><p><a href="https://proton.me/blog/author/eamonn-maguire">Eamonn Maguire</a>, Director of Engineering at Proton, notes that:</p><blockquote>People understand that AI collects data, but most don't realize how revealing their conversation history becomes over time. AI Paper Trail makes that invisible profile visible. <br><br>We want people to understand what they're sharing with AI systems so they can make informed decisions about the tools they use.</blockquote><p>What they have done here is <strong>hit two targets with one shot</strong>, offering people a privacy-focused tool that pushes them toward more conscious decisions when interacting with AI chatbots, while steering them straight into Lumo in the process.</p><p><em>This is a superb way to market a chatbot that focuses on privacy instead of mining every inch of your soul, erm, personal data.</em></p><h2 id="it-works-well">It works well</h2><p>I wanted to see for myself how the tool worked, so I first ChatGPT some information about how I approach certain subjects, saved it into <a href="https://help.openai.com/en/articles/8590148-memory-faq">memory</a>, and then got back into Proton's AI Paper Trail to see what it could make of it.</p><figure class="kg-card kg-gallery-card kg-width-wide"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/08/proton-ai-paper-trail-1.png" width="1125" height="825" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/08/proton-ai-paper-trail-1.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/proton-ai-paper-trail-1.png 1000w, https://itsfoss.com/content/images/2026/08/proton-ai-paper-trail-1.png 1125w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/08/proton-ai-paper-trail-2.png" width="1125" height="825" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/08/proton-ai-paper-trail-2.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/proton-ai-paper-trail-2.png 1000w, https://itsfoss.com/content/images/2026/08/proton-ai-paper-trail-2.png 1125w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/08/proton-ai-paper-trail-3.png" width="1125" height="793" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/08/proton-ai-paper-trail-3.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/proton-ai-paper-trail-3.png 1000w, https://itsfoss.com/content/images/2026/08/proton-ai-paper-trail-3.png 1125w" sizes="(min-width: 720px) 720px"></div></div></div></figure><p>The tool first told me to export my data from ChatGPT via the "<em>Data controls</em>" section in the Settings menu. I had to re-verify my ChatGPT session by giving it a one-time password and got the export started, but the files never showed up on time for me to use.</p><p><em>Instead, I asked it to generate me a dummy one taking in data from memory.</em> &#128518;</p><div class="kg-card kg-callout-card kg-callout-card-blue"><div class="kg-callout-emoji">&#128203;</div><div class="kg-callout-text"><b><strong style="white-space: pre-wrap;">Update:</strong></b> The export eventually did show up, and I got <a href="https://imgur.com/a/k6nZToD">a very low score</a>.</div></div><p>When that was done, I uploaded the dummy export, and Lumo got to work behind the scenes all while promising not to store any of it on its servers.</p><p><strong>A minute or so later, my report was ready</strong>. It gave me a personality-style rundown, labeling me a "<em>Technical tester exploring AI profiling and ethics</em>," complete with a fake handle and a summary pegging me as someone running structured experiments on AI behavior, focused on data extraction limits and ethics.</p><p>My AI Exposure Score came out to 21 out of 100, along with a "<em>Hard to read</em>" privacy type. <em>Interests</em> ended up being my biggest giveaway on the breakdown, while everything else landed at <em>medium</em> to <em>minimal</em>.</p><figure class="kg-card kg-gallery-card kg-width-wide"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/08/proton-ai-paper-trail-4.png" width="824" height="759" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/08/proton-ai-paper-trail-4.png 600w, https://itsfoss.com/content/images/2026/08/proton-ai-paper-trail-4.png 824w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/08/proton-ai-paper-trail-5.png" width="739" height="772" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/08/proton-ai-paper-trail-5.png 600w, https://itsfoss.com/content/images/2026/08/proton-ai-paper-trail-5.png 739w" sizes="(min-width: 720px) 720px"></div></div><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/08/proton-ai-paper-trail-6.png" width="827" height="747" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/08/proton-ai-paper-trail-6.png 600w, https://itsfoss.com/content/images/2026/08/proton-ai-paper-trail-6.png 827w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/08/proton-ai-paper-trail-7-1.png" width="512" height="792" loading="lazy" alt=""></div></div></div></figure><p>The part that actually got me was the "<em>Most revealing</em>" note (<em>first picture above, right-hand side</em>). It noticed I'd asked for a structured personality profile, tried to get it to infer my identity from barely anything, and even caught me trying to force it to remember something via a direct command.</p><p>Since I'd gotten ChatGPT to build that dummy file straight from its own memory of me rather than pulling random filler, the report had real clues to chew on, and it still managed to call out the testing motif buried in there.</p><p>Scrolling further down, there's a "<em>What we identified</em>" section that splits everything into categories like technical proficiency, ethical and philosophical inquiry, and privacy awareness, each with its own reasoning attached.</p><p>At the end, it dropped a few privacy tips and nudged me toward <a href="https://go.getproton.me/aff_c?offer_id=68&amp;aff_id=1173">trying Lumo</a> (<em>partner link, hehe</em>). There's also a shareable card option if you want to showcase your exposure score for some validation or gloating.</p><div class="kg-card kg-button-card kg-align-center"><a href="https://lumo.proton.me/aitrail" class="kg-btn kg-btn-accent">Generate Your Report</a></div>
<img src="https://feed.itsfoss.com/link/24361/17418931.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[Nitrux Shows Off a New Desktop Approach Other Distros Might Want to Take Note of]]></title>
      <description><![CDATA[It is meant to be a middle ground between window managers and desktop environments.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17418654/nitrux-workspace-environment</link>
      <guid isPermaLink="false">6a7eab6cb11ec200018931ab</guid>
      <category><![CDATA[News]]></category>
      <dc:creator><![CDATA[Sourav Rudra]]></dc:creator>
      <pubDate>Sat, 15 Aug 2026 06:32:27 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/08/nixtrux-we-banner.png" medium="image">
        <media:description type="plain">three screenshots of the new interface components for nitrux are shown here with the nitrux project logo</media:description>
      </media:content>
      <content:encoded><![CDATA[<figure><img src="https://itsfoss.com/content/images/2026/08/nixtrux-we-banner.png" alt="three screenshots of the new interface components for nitrux are shown here with the nitrux project logo" loading="lazy"></figure>
<p>Don't think that this move came out of the blue. <a href="https://nxos.org">Nitrux</a> has been busy building this up since last year, when it <a href="https://itsfoss.com/news/nitrux-plasma-nx-desktop-discontinued/">swapped out KDE Plasma for Hyprland</a> and told everyone that they were headed towards '<em>a new beginning</em>' <a href="https://itsfoss.com/news/nitrux-5-release/">that was not for everyone</a>.</p><p>The project now has a name <a href="https://nxos.org/news/a-modern-desktop-the-workspace-envrionment/">for what it has been creating</a>, the "<strong><em>Workspace Environment</em></strong>." It ties together four new in-house developed components as pieces of a five-layer architecture, presenting a very different desktop experience for Nitrux than we are used to.</p><p><a href="https://itsfoss.com/nitrux-linux/">Uri Herrera</a>, Nitrux's founder, describes it as filling a gap, where a window manager gives you almost nothing beyond window placement and a full desktop environment like GNOME or Plasma bundles everything into one tightly coupled process tree.</p><p>The Workspace Environment sits in between as a cohesive shell built from independent, single-purpose components that don't share a process lifecycle with the compositor or with each other.</p><h2 id="the-four-components">The four components</h2><figure class="kg-card kg-gallery-card kg-width-wide kg-card-hascaption"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/08/nitrux-we-valenz.png" width="1024" height="640" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/08/nitrux-we-valenz.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/nitrux-we-valenz.png 1000w, https://itsfoss.com/content/images/2026/08/nitrux-we-valenz.png 1024w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/08/nitrux-we-marina-1.png" width="1024" height="640" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/08/nitrux-we-marina-1.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/nitrux-we-marina-1.png 1000w, https://itsfoss.com/content/images/2026/08/nitrux-we-marina-1.png 1024w" sizes="(min-width: 720px) 720px"></div></div></div><figcaption><p><i><em class="italic" style="white-space: pre-wrap;">Valenz and Marina.</em></i></p></figcaption></figure><p><a href="https://github.com/Nitrux/valenz">Valenz</a> is the new workspace bar, handling media controls, tray, notifications, and indicators for network, Bluetooth, battery, and power profile, plus weather, a calendar view, and system resource widgets.</p><p>Whereas <a href="https://github.com/Nitrux/marina">Marina</a> is the new dock that tracks and groups open windows across workspaces on Hyprland while handling pinning, auto-hide, and horizontal scrolling. It also adds unread message badges for pinned apps that expose a launcher count.</p><figure class="kg-card kg-gallery-card kg-width-wide kg-card-hascaption"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/08/nitrux-we-workspace-settings.png" width="1024" height="640" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/08/nitrux-we-workspace-settings.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/nitrux-we-workspace-settings.png 1000w, https://itsfoss.com/content/images/2026/08/nitrux-we-workspace-settings.png 1024w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/08/nitrux-we-desklock.png" width="1024" height="640" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/08/nitrux-we-desklock.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/nitrux-we-desklock.png 1000w, https://itsfoss.com/content/images/2026/08/nitrux-we-desklock.png 1024w" sizes="(min-width: 720px) 720px"></div></div></div><figcaption><p><i><em class="italic" style="white-space: pre-wrap;">Workspace Settings and Desklock.</em></i></p></figcaption></figure><p><a href="https://github.com/Nitrux/maui-settings">Workspace Settings</a> replaces KDE System Settings entirely, covering user accounts, locale, networking, and MauiKit configuration without any Plasma dependency.</p><p><a href="https://github.com/Nitrux/desklock">Desklock</a> completes the set as a native <a href="https://doc.qt.io/qt-6/qmlreference.html" rel="noreferrer">QML</a> lock screen built on the QMLGreet codebase, with PAM authentication, per-output lock surfaces, and CPU, memory, and network monitors alongside MPRIS playback controls.</p><p>All four are <strong>QML-based</strong> and built with MauiKit, though only Valenz and Marina share LayerShell-Qt, so the stack still ends up with one visual language instead of stitched together toolkits.</p><h2 id="does-it-make-sense">Does it make sense?</h2><p>The switches aren't just cosmetic, and alternatives were considered.</p><p>Uri writes that <strong>Waybar</strong> and <strong>SwayNC</strong> leaned on GTK and CSS styling, which clashed with the QML-first approach he had already committed to with <a href="https://github.com/Nitrux/qmlgreet">QMLGreet</a>.</p><p><strong>Crystal Dock</strong> had a similar limitation, built on legacy Qt Widgets instead of QML, and its broad feature set worked against Nitrux's preference for narrowly focused tools. <strong>Hyprlock</strong> got replaced too, over a visual mismatch with <a href="https://mauikit.org">MauiKit</a> and a bug that left it in a bad state after suspend or hibernation.</p><p>The pattern across all three swaps is consistency. Uri picked first-party QML tools over external options like <strong>Quickshell</strong> specifically to avoid depending on a construction framework he doesn't control.</p><p>There's a maintenance aspect associated with the lock screen choice too. In Uri's words:</p><blockquote>Because Desklock derives directly from the QMLGreet codebase, the two components share the same secure lifecycle and visual identity. This shared foundation minimizes maintenance overhead while strictly enforcing our unified architectural philosophy. <br><br>It provides a native QML session locker that executes its single responsibility perfectly, completing the visual and functional ecosystem of the Workspace Environment.</blockquote><h2 id="youll-have-to-wait">You'll have to wait</h2><p>Nitrux Workspace Environment <strong>marks the end of Maui Shell</strong>, the project's old convergent shell concept. Nitrux has already archived its <a href="https://github.com/Nitrux/maui-shell">GitHub</a> repository and is looking forward to their next developmental milestone.</p><p>One catch worth knowing before you go looking for these tools is that Valenz and Marina both list <strong>Nitrux 7.0.0 as a requirement</strong>, and the current stable release is still 6.1.0. So you will have to wait.</p><p>Whether the wait is worth it will depend on how these components hold up once regular users actually get their hands on them.</p>
<img src="https://feed.itsfoss.com/link/24361/17418654.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[LightDM is Back From The Dead, But Canonical isn't in Charge Anymore]]></title>
      <description><![CDATA[It took years of silence, new maintainers, and a release to bring LightDM back.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17417740/lightdm-is-back</link>
      <guid isPermaLink="false">6a7da76cb11ec20001887ad3</guid>
      <category><![CDATA[News]]></category>
      <dc:creator><![CDATA[Sourav Rudra]]></dc:creator>
      <pubDate>Fri, 14 Aug 2026 09:36:26 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/08/lightdm-revival-banner.png" medium="image">
        <media:description type="plain">a person working on a laptop that has "lightdm" written on its screen, the canonical logo is seen exiting, and a floating feather for whatever reason</media:description>
      </media:content>
      <content:encoded><![CDATA[<figure><img src="https://itsfoss.com/content/images/2026/08/lightdm-revival-banner.png" alt="a person working on a laptop that has &quot;lightdm&quot; written on its screen, the canonical logo is seen exiting, and a floating feather for whatever reason" loading="lazy"></figure>
<p>There's something satisfying about watching a Linux project everyone assumed had quietly died come back with a fresh commit. It happens more often than people expect, and it's usually worth celebrating when it does.</p><p>One of those revivals has been <a href="https://www.omgubuntu.co.uk/2026/08/lightdm-new-release-new-maintainers">the return of LightDM</a>, the display manager Canonical built more than a decade ago.</p><h2 id="lightdm-is-alive">LightDM is alive</h2><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/08/lightdm-1-33-release-announcement.png" class="kg-image" alt="the github repo for lightdm with the releases page open for the 1.33.0 release, a bunch of text is visible inside a box below" loading="lazy" width="1838" height="701" srcset="https://itsfoss.com/content/images/size/w600/2026/08/lightdm-1-33-release-announcement.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/lightdm-1-33-release-announcement.png 1000w, https://itsfoss.com/content/images/size/w1600/2026/08/lightdm-1-33-release-announcement.png 1600w, https://itsfoss.com/content/images/2026/08/lightdm-1-33-release-announcement.png 1838w" sizes="(min-width: 720px) 720px"></figure><p>Released last week is <a href="https://github.com/ubuntu/lightdm/releases/tag/1.33.0">LightDM 1.33.0</a>, which rolls out a bunch of improvements as well as introduces the two new maintainers who are taking over. The last release, <a href="https://github.com/ubuntu/lightdm/releases/tag/1.32.0">1.32.0</a>, came out way back in July 2022, marking a four-year gap in which the project barely went anywhere.</p><p>You see, LightDM's original maintainer, <a href="https://github.com/robert-ancell">Robert Ancell</a>, had already called the project "<em>essentially unmaintained</em>," and questions about its future eventually popped up on various forums over the years.</p><p>Luckily, two people willing to keep the project going stepped up, making it a community-maintained affair rather than a <a href="https://canonical.com/">Canonical</a>-maintained one.</p><p><a href="https://github.com/JPeisach">Joshua Peisach</a> and <a href="https://github.com/Conan-Kudo">Neal Gompa</a> are both known for their work across a string of open source projects. Joshua leads Ubuntu Cinnamon Remix, and Neal doesn't really need an introduction; he has spent years contributing to Fedora, openSUSE, and CentOS.</p><p><strong>As for what 1.33.0 actually delivers</strong>, the maintainers say its purpose is mainly to tag the fixes that piled up since 1.32.0 and clear out pull requests that had been sitting for years.</p><p>There are no breaking changes and no dependency changes, so existing LightDM setups should upgrade without any surprises. The biggest addition worth flagging is<strong> Qt6 support for the client library</strong>, though that doesn't mean Qt5 is going anywhere. Greeters built on the older toolkit will keep working just fine.</p><p>There's a long list of smaller fixes too. VNC server handling has been patched, the flood of log errors from missing PAM modules is gone, and a batch of multiseat and FreeBSD-specific bugs got cleared out.</p><h2 id="help-is-needed">Help is needed</h2><p>If you didn't know, LightDM is a lightweight, cross-desktop <a href="https://itsfoss.com/display-manager/">display manager</a>. It's the software behind your login screen, the one that authenticates you and hands things off to your desktop session once you're in.</p><p>Canonical built LightDM to replace GDM, and it debuted back in Ubuntu 11.10 as the login screen behind Unity. Ubuntu itself moved <a href="https://itsfoss.com/switch-gdm-and-lightdm-in-ubuntu-14-04/">back to GDM</a> in 2017 when it dropped Unity for GNOME Shell, but LightDM never really went away.</p><p>Linux Mint adopted it that same year and pairs it with its own slick-greeter, and elementary OS runs it through <em>Pantheon Greeter</em>. Several Ubuntu flavors and Fedora spins still depend on it as well.</p><p><strong>If you think you can help LightDM evolve into something more</strong>, then know that Joshua and Neal are looking for new contributors to join in. You can reach them directly over <a href="https://matrix.to/#/#lightdm:matrix.org">Matrix</a>.</p><p><em>They also point out that signing the </em><a href="https://canonical.com/legal/contributors"><em>Canonical CLA</em></a><em> is no longer required.</em></p><p><strong>Though I have something more to add here</strong>. </p><p>Don't unleash your army of clankers (<em>I believe the formal term is 'AI agents'</em>) on this project; it's already happening to many open source projects lately, and this one has just been revived. It doesn't need to be inundated with hallucinations and pointless fixes.</p><p>The maintainers also request that anyone opening a pull request for a bug fix show a way to reproduce the problem first.</p>
<img src="https://feed.itsfoss.com/link/24361/17417740.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[FOSS Weekly #26.33: Mint Kernel, PDF Editing, VLC Drama, Omarchy Quattro and More Linux Stuff]]></title>
      <description><![CDATA[VLC got blamed for Microsoft's clumsiness.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17417251/foss-weekly-26-33</link>
      <guid isPermaLink="false">6a7ac14cb11ec2000188678b</guid>
      <category><![CDATA[Newsletter ✉️]]></category>
      <dc:creator><![CDATA[Abhishek Prakash]]></dc:creator>
      <pubDate>Thu, 13 Aug 2026 19:04:14 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/08/foss-weekly-1.webp" medium="image">
        <media:description type="plain">FOSS Weekly</media:description>
      </media:content>
      <content:encoded><![CDATA[<figure><img src="https://itsfoss.com/content/images/2026/08/foss-weekly-1.webp" alt="FOSS Weekly" loading="lazy"></figure>
<p>Linux Mint is getting <a href="https://itsfoss.com/news/linux-mint-kernel-removal-feature/">automatic old kernel cleanup</a> in the next release, a feature Fedora has handled through DNF's <code>installonly_limit</code> for years. And I did not even know that Mint doesn't do it.</p><p>The Document Foundation has put up a write-up (<em>part 1 for now</em>) of <a href="https://blog.documentfoundation.org/blog/2026/08/07/why-and-how-the-austrian-military-moved-to-libreoffice-part-1/">how the Austrian Military migrated 16,000 PCs</a> from Microsoft Office to LibreOffice. The part worth noting is that ~8,000 users installed it on their own before it was mandated. Now that's a pleasant surprise.</p><p>CachyOS <a href="https://itsfoss.com/news/cachyos-august-2026-release/">released their August update</a>, and the two things that stand out are Shelly v3 and the Server Edition groundwork. Running a cutting edge distro on a server? Old school sysadmins will shiver at that thought.</p><p>Apparently, <a href="https://itsfoss.com/news/vlc-microsoft-defenders-drama/">VLC takes around 30 seconds to play an MP3 on Windows</a>. But don't blame VLC when it is Microsoft's fault.</p><p>Proxmox VE <a href="https://itsfoss.com/news/proxmox-virtual-environment-arm64-support/">now officially runs on ARM64</a>, with the same codebase, release cycle, and support window as the x86-64 build. NVIDIA Grace and Vera systems are fully validated, and other UEFI-based ARMv9-A hardware gets best-effort support.</p><p>An open source project called <a href="https://itsfoss.com/news/xodus-xbox-gamepass-linux/">Xodus</a> is working through the hardest parts of bringing Xbox Game Pass to Linux. They have already figured out Xbox authentication and game downloads.</p><p>KGamma is getting <a href="https://blog.davidedmundson.co.uk/blog/wayland-and-kgamma/">a Wayland replacement</a> that works with Night Color, supports independent per-monitor values, and applies settings on the first frame.</p><p>Illinois signed the <a href="https://itsfoss.com/news/illinois-age-verification-bill/">Children's Online Social Media Safety Act</a>, which requires device makers and OS providers to collect a child's age bracket at setup and expose it via an API for apps to query. </p><p><a href="https://itsfoss.com/news/omarchy-ai-agent-focus/">Omarchy Linux is going all in one with AI</a> with its version 4.0 releasing this week.</p><p>There are a few more AI-related stories that we covered this week. But I am not going to include all of them here. They get covered in the <a href="https://itsfoss.com/local-ai-weekly/">Local AI Weekly newsletter</a>, and you can also read them if you follow the feed. I'll try to keep the AI buzz to the necessary minimum in FOSS Weekly.</p><p>&#129309; This edition of FOSS Weekly is <a href="https://tuxcare.com/enterprise-live-patching-services/kernelcare-enterprise/">supported by TuxCare</a>.</p><div class="kg-card kg-cta-card kg-cta-bg-grey kg-cta-minimal    " data-layout="minimal">
            
            <div class="kg-cta-content">
                
                
                    <div class="kg-cta-content-inner">
                    
                        <div class="kg-cta-text">
                            <p dir="ltr"><span style="white-space: pre-wrap;">Rebooting after a kernel update is frustrating and results in downtime. Critical infrastructure should not suffer from reboots. </span><a href="https://tuxcare.com/enterprise-live-patching-services/kernelcare-enterprise/" rel="noreferrer" class="cta-link-color"><span style="white-space: pre-wrap;">TuxCare</span></a><span style="white-space: pre-wrap;"> allows you to patch Linux kernels live. Works with more than 60 distros.</span></p>
                        </div>
                    
                    
                        <a href="https://tuxcare.com/enterprise-live-patching-services/kernelcare-enterprise/" class="kg-cta-button " style="background-color: #000000; color: #ffffff;">
                            Explore TuxCare
                        </a>
                        
                    </div>
                
            </div>
        </div><h2 id="%F0%9F%A7%A0-what-we%E2%80%99re-thinking-about">&#129504; What We&rsquo;re Thinking About</h2><p>I had <a href="https://itsfoss.com/open-search-bianca-lewis/">a good chat with Bianca Lewis</a>, OpenSearch's executive director, talking about how OpenSearch has spent the past few years trying to shed the "<em>Elasticsearch fork</em>" label.</p><h2 id="%F0%9F%A7%AE-linux-tips-tutorials-and-learnings">&#129518; Linux Tips, Tutorials, and Learnings</h2><p>A beginner's guide <a href="https://itsfoss.com/install-software-from-source-code/">to installing software from source on Linux</a>. It covers clone, configure, make, where to install things so cleanup isn't painful, and how to fix the missing compiler errors you'll almost definitely hit the first time.</p><p>A decade of hopping through Mint, Ubuntu, Kali, Arch, AntiX, and EndeavourOS, and the conclusion is that <a href="https://itsfoss.com/opinion/distrohopping-lesson/">it was never really about the distro</a>.</p><p><a href="https://itsfoss.com/linux-backup-tools/">Six backup tools</a> for different kinds of Linux users. The highlights include D&eacute;j&agrave; Dup for GNOME desktop with zero setup, Kopia if you want an open source GUI, Restic and BorgBackup for terminal-native control.</p><p>If you regularly deal with PDF, try a <a href="https://itsfoss.com/pdfarranger-app/">tool like PDF Arranger</a> that allows you to split, merge, rearrange PDF docs.</p><p>In the same regards, in the situation where you have to <a href="https://itsfoss.com/convert-multiple-images-pdf-ubuntu-1304/">convert multiple images into a PDF, use LibreOffice or gscan2pdf</a>. I do this when I have to upload IDs and documents to a government portal. </p><h2 id="%F0%9F%91%B7-ai-homelab-and-hardware-corner">&#128119; AI, Homelab and Hardware Corner</h2><p>This corner may still have some local AI stuff for now. A practical setup guide for <a href="https://itsfoss.com/hermes-desktop-remote-gateway/">running Hermes agent on a Raspberry Pi</a> as an always-on backend while controlling it from a laptop using Hermes Desktop's remote gateway feature.</p><h2 id="%F0%9F%8E%93-linux-foundation-certification-offer">&#127891; Linux Foundation certification offer</h2><figure class="kg-card kg-image-card"><a href="https://www.awin1.com/cread.php?awinmid=85919&amp;awinaffid=429005&amp;ued=https%3A%2F%2Ftraining.linuxfoundation.org%2Faugust-2026-promo%2F"><img src="https://itsfoss.com/content/images/2026/08/lf-courses-1.webp" class="kg-image" alt="" loading="lazy" width="1200" height="628" srcset="https://itsfoss.com/content/images/size/w600/2026/08/lf-courses-1.webp 600w, https://itsfoss.com/content/images/size/w1000/2026/08/lf-courses-1.webp 1000w, https://itsfoss.com/content/images/2026/08/lf-courses-1.webp 1200w" sizes="(min-width: 720px) 720px"></a></figure><p>Linux is turning 35 this month. The Linux Foundation, the official organization behind the Linux kernel project, has a catalog of industry-oriented training and certifications.</p><p>And they are offering 35% off on all of it, including the instructor-led classes that contain very technical topics like performance tuning. Popular certifications like LFCS and CKDA</p><div class="kg-card kg-button-card kg-align-center"><a href="https://www.awin1.com/cread.php?awinmid=85919&amp;awinaffid=429005&amp;ued=https%3A%2F%2Ftraining.linuxfoundation.org%2Faugust-2026-promo%2F" class="kg-btn kg-btn-accent">Explore Linux Foundation Offer</a></div><h2 id="%E2%9C%A8-apps-and-projects-highlights">&#10024; Apps and Projects Highlights</h2><p><a href="https://flathub.org/en/apps/page.codeberg.censor.Censor">Censor</a> is a PDF document redaction tool. When you want to hide part of information from a PDF, you can use this tool.</p><h2 id="%F0%9F%93%BD%EF%B8%8F-videos-for-you">&#128253;&#65039; Videos for You</h2><p>Enjoy customizing GNOME desktops with extensions. Take a <a href="https://youtu.be/ZBkG6fiZRfA">look at some of the good ones in action in this video</a>.</p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/ZBkG6fiZRfA?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen="" title="17 Extensions That Will Change Your GNOME Desktop's Looks"></iframe></figure><div class="kg-card kg-button-card kg-align-center"><a href="https://www.youtube.com/@itsfoss" class="kg-btn kg-btn-accent">Subscribe to It's FOSS YouTube Channel</a></div>
<!--kg-gated-block:begin nonMember:true memberSegment:"status:free" --><div class="kg-card kg-cta-card kg-cta-bg-grey kg-cta-minimal    " data-layout="minimal">
            
            <div class="kg-cta-content">
                
                
                    <div class="kg-cta-content-inner">
                    
                        <div class="kg-cta-text">
                            <p><span style="white-space: pre-wrap;">Desktop Linux is mostly neglected by the industry but loved by the community. For the past 14 years, It's FOSS has been helping people use Linux on their personal computers. And we are now facing the existential threat from AI models stealing our content. </span></p><p><span style="white-space: pre-wrap;">If you like what we do and would love to support our work, please become It's FOSS Plus member. It costs $49 a year (less than the cost of a McDonald's burger a month), and you get an ad-free reading experience with the satisfaction of helping the desktop Linux community. And there are also free Linux ebooks.</span></p>
                        </div>
                    
                    
                        <a href="https://itsfoss.com/membership/" class="kg-cta-button " style="background-color: #000000; color: #ffffff;">
                            Join It's FOSS Plus
                        </a>
                        
                    </div>
                
            </div>
        </div><!--kg-gated-block:end-->
<h2 id="%F0%9F%92%A1-quick-handy-tip">&#128161; Quick Handy Tip</h2><p>Ubuntu's Tiling Assistant has an experimental layout editor, which allows you to create tiles and assign windows to those tiles. First open the <a href="https://itsfoss.com/gnome-shell-extensions/">Extensions</a> app and go into the settings for "<em>Tiling Assistant</em>."</p><figure class="kg-card kg-embed-card"><iframe src="https://player.vimeo.com/video/1217581676?app_id=122963" width="350" height="240" frameborder="0" allow="autoplay; fullscreen; picture-in-picture; clipboard-write; encrypted-media; web-share" referrerpolicy="strict-origin-when-cross-origin" title="Ubuntu Tiling Assistant Layout Editor"></iframe></figure><p>Here, click on the "<em>i</em>" button and go into "<em>Advanced...</em>" and enable "<em>Advanced/Experimental Settings</em>." Now, inside the new "Layouts" page, you will find multiple layout entries without keybinds assigned.</p><p>Click on the "<em>Disabled</em>" box and enter a keybind, and use the downward arrow nearby to fine-tune the layout.</p><p>Once these are set, whenever you press any one of those shortcuts, any open windows can be opened in that layout for you. You can read how it works in the <a href="https://github.com/ubuntu/Tiling-Assistant/wiki/Layouts">official documentation</a>.</p><div class="kg-card kg-cta-card kg-cta-bg-grey kg-cta-minimal    " data-layout="minimal">
            
            <div class="kg-cta-content">
                
                
                    <div class="kg-cta-content-inner">
                    
                        <div class="kg-cta-text">
                            <p><span style="white-space: pre-wrap;">Local AI Weekly will start from first week of August. If you are interested in learning about open source AI, please </span><a href="https://itsfoss.com/local-ai-weekly/" class="cta-link-color"><span style="white-space: pre-wrap;">subscribe to our upcoming Local AI Weekly newsletter</span></a><span style="white-space: pre-wrap;">. </span></p>
                        </div>
                    
                    
                        <a href="https://itsfoss.com/local-ai-weekly/" class="kg-cta-button " style="background-color: #000000; color: #ffffff;">
                            Subscribe to Local AI Weekly
                        </a>
                        
                    </div>
                
            </div>
        </div><h2 id="%F0%9F%8E%8B-fun-in-the-fossverse">&#127883; Fun in the FOSSverse</h2><p>Our <a href="https://itsfoss.com/quiz/scrambled-editors-crossword/">Scrambled Linux Editors</a> crossword will test your grasp of Linux editors.</p><p>Those pesky clankers sure do know how to trick us. &#129302;</p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/08/meme22.png" class="kg-image" alt="linux desktop market share surge caused by bots meme" loading="lazy" width="1080" height="950" srcset="https://itsfoss.com/content/images/size/w600/2026/08/meme22.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/meme22.png 1000w, https://itsfoss.com/content/images/2026/08/meme22.png 1080w" sizes="(min-width: 720px) 720px"></figure><p><strong>&#128467;&#65039; Tech Trivia</strong>: On August 5, 1858, <a href="https://en.wikipedia.org/wiki/Cyrus_W._Field">Cyrus West Field</a> succeeded on his fifth try at laying <a href="https://en.wikipedia.org/wiki/Transatlantic_telegraph_cable">a telegraph cable across the Atlantic</a>. Queen Victoria and President Buchanan traded congratulatory messages soon after. Though the celebration was short-lived, as the cable died within a month.</p><p><strong>&#129489;&zwj;&#129309;&zwj;&#129489; From the Community</strong>: Pro FOSSer Xander is asking other FOSSers <a href="https://itsfoss.community/t/what-we-like-about-linux/16122">what they like about Linux</a>; do you have anything to add?</p>
<img src="https://feed.itsfoss.com/link/24361/17417251.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[Omarchy Bets Its Future on AI Agents While the Linux World Stays Cautious]]></title>
      <description><![CDATA[While some open source projects are locking AI out of their codebases, Omarchy's upcoming v4 release treats AI as part of the system.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17417194/omarchy-ai-agent-focus</link>
      <guid isPermaLink="false">6a7d6885b11ec2000188796c</guid>
      <category><![CDATA[News]]></category>
      <dc:creator><![CDATA[Sourav Rudra]]></dc:creator>
      <pubDate>Thu, 13 Aug 2026 17:10:20 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/08/omarchy-ai-agent-banner-1.png" medium="image">
        <media:description type="plain">omarchy logo, an illustration of a floating robot, and a screenshot of omarchy quattro rc2 showing the ai agent config options</media:description>
      </media:content>
      <content:encoded><![CDATA[<figure><img src="https://itsfoss.com/content/images/2026/08/omarchy-ai-agent-banner-1.png" alt="omarchy logo, an illustration of a floating robot, and a screenshot of omarchy quattro rc2 showing the ai agent config options" loading="lazy"></figure>
<p>The world of open source is split when it comes to AI, while a big project like Linux is seeing its leader warming up to it, telling those who object on the mailing list that Linux "<em>is not one of those anti-AI projects</em>."</p><p>Projects like <a href="https://itsfoss.com/news/rust-code-repo-ai-policy/">Rust</a>, <a href="https://itsfoss.com/news/gcc-bans-ai-code/">GCC</a>, and <a href="https://itsfoss.com/news/codeberg-bans-ai-contributions/">Codeberg</a> are going the other way, banning AI from writing meaningful chunks of their code, though none of them draw that line in quite the same place.</p><p><a href="https://omarchy.org/?ref=itsfoss.com">Omarchy</a> doesn't care about any of that. Its upcoming release, <a href="https://github.com/basecamp/omarchy/tree/quattro">Quattro</a> (4.0), is skipping the debate over whether AI should write code and is building <a href="https://en.wikipedia.org/wiki/AI_agent">AI agents</a> into the desktop itself.</p><p>As a refresher, the project calls itself a "<em>Beautiful, Modern &amp; Opinionated Linux</em>," and the opinionated part shows up in how the distro configures itself with minimal input from the user during installation.</p><p>Its creator, David Heinemeier Hansson (DHH), has now decided that AI agents belong in the defaults too, <a href="https://x.com/dhh/status/2087538364580835804">saying that</a> this is how they will "<em>truly democratize Linux</em>," and <a href="https://x.com/dhh/status/2087586011224084808">predicting that</a> Linux adoption among developers is going to explode.</p><h2 id="enter-quattro">Enter, Quattro</h2><figure class="kg-card kg-gallery-card kg-width-wide"><div class="kg-gallery-container"><div class="kg-gallery-row"><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/08/omarchy-quattro-window-tiling.png" width="1920" height="1080" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/08/omarchy-quattro-window-tiling.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/omarchy-quattro-window-tiling.png 1000w, https://itsfoss.com/content/images/size/w1600/2026/08/omarchy-quattro-window-tiling.png 1600w, https://itsfoss.com/content/images/2026/08/omarchy-quattro-window-tiling.png 1920w" sizes="(min-width: 720px) 720px"></div><div class="kg-gallery-image"><img src="https://itsfoss.com/content/images/2026/08/omarchy-quattro-ai-agent-config.png" width="1920" height="1080" loading="lazy" alt="" srcset="https://itsfoss.com/content/images/size/w600/2026/08/omarchy-quattro-ai-agent-config.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/omarchy-quattro-ai-agent-config.png 1000w, https://itsfoss.com/content/images/size/w1600/2026/08/omarchy-quattro-ai-agent-config.png 1600w, https://itsfoss.com/content/images/2026/08/omarchy-quattro-ai-agent-config.png 1920w" sizes="(min-width: 720px) 720px"></div></div></div></figure><p>While Omarchy 4.0 is still <a href="https://github.com/basecamp/omarchy/pull/6231">in the beta stage</a>, DHH is calling it their biggest release yet.</p><p>He is teasing all kinds of new agent-facing features, such as a crash watcher that briefs your AI agent the moment something breaks, a dedicated agents usage widget, and nine different agents to pick from.</p><p><strong>The crash watcher</strong> is the one DHH <a href="https://x.com/dhh/status/2087513928808976438">teased on X first</a>. Let's say a process crashes. Omarchy catches it off the <code>systemd-coredump</code> journal and pops up a toast. Click it, and your default agent gets briefed on the whole thing through a <code>diagnose-crash</code> skill built to make sense of the backtrace.</p><p><em>Don't worry, it still asks you for confirmation before reporting anything upstream, and it checks for duplicates too.</em></p><p>Quattro also <strong>lets you pick a default coding</strong> agent under <code>Setup &gt; Defaults &gt; Agent</code>, giving you nine options that include the likes of Claude, Codex, Gemini, Grok, and Copilot.</p><p>None of them come pre-selected either. During first boot, a notification nudges you to pick your default agent, and if you skip it, the agentic features stay disabled.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://itsfoss.com/content/images/2026/08/omarchy-quattro-gemini-ai-agent-1-1.png" class="kg-image" alt="gemini cli is shown running on omarchy 4.0 rc2, being asked a question: what can you do?" loading="lazy" width="1920" height="1080" srcset="https://itsfoss.com/content/images/size/w600/2026/08/omarchy-quattro-gemini-ai-agent-1-1.png 600w, https://itsfoss.com/content/images/size/w1000/2026/08/omarchy-quattro-gemini-ai-agent-1-1.png 1000w, https://itsfoss.com/content/images/size/w1600/2026/08/omarchy-quattro-gemini-ai-agent-1-1.png 1600w, https://itsfoss.com/content/images/2026/08/omarchy-quattro-gemini-ai-agent-1-1.png 1920w" sizes="(min-width: 720px) 720px"><figcaption><i><em class="italic" style="white-space: pre-wrap;">I briefly took a Gemini-powered AI agent for a run.</em></i></figcaption></figure><p>When I configured <a href="https://gemini.google.com/">Gemini</a> using an API key, I asked the agent what it could do for me, and it said that it could help with Linux configuration and window manager setup through Omarchy.</p><p>It also brought up crash diagnosis using the same <code>diagnose-crash</code> skill from earlier, on top of the usual code reading, writing, and command execution any coding agent handles.</p><p>There's even a model-usage widget that tracks usage against weekly limits, though it is only available for Claude Code, Codex, Pi, Oh My Pi, and OpenCode sessions.</p><p>And, if you go looking through <a href="https://github.com/basecamp/omarchy/graphs/contributors?from=5%2F9%2F2026">the contributors list</a> for the project, you will see that <strong>Claude has contributed a fair bit</strong>, further cementing where Omarchy as a project is headed.</p><h2 id="not-everyone-will-be-happy">Not everyone will be happy</h2><figure class="kg-card kg-embed-card"><blockquote class="twitter-tweet"><p lang="en" dir="ltr">It's been really cool to see the development of Omarchy, but unfortunately, I will not be updating to v4<br><br>Omarchy allowed me to take the leap of faith from MacOS to Linux and point me in the right direction<br><br>But now I've come to the point where I just need a terminal, a browser,&hellip; <a href="https://t.co/IZRYE5uifP">https://t.co/IZRYE5uifP</a></p>&mdash; IroncladDev (@IroncladDev) <a href="https://x.com/IroncladDev/status/2087610691087724962?ref_src=twsrc%5Etfw">August 12, 2026</a></blockquote>
<script async="" src="https://platform.x.com/widgets.js" charset="utf-8"></script></figure><p>Depending on where you stand on AI, this is where people start picking sides. One of them, a developer who goes by the name <a href="https://ironclad.sh">IroncladDev</a>, <a href="https://x.com/IroncladDev/status/2087610691087724962">has decided</a> they won't be updating to 4.0.</p><p>He says that Omarchy is what got him off macOS and onto Linux in the first place, but that's<strong> not enough to keep him around for Quattro</strong>. His issue is that he isn't interested in any of the "<em>AI/Agentic additions</em>." He just wants a terminal, a browser, and working USB ports, nothing more.</p><p>That kind of pushback was inevitable. Move a distro this hard, this fast, and you lose the people who signed up for something simpler. Baking agents into the OS is a bigger ask than a new theme, and DHH made that call for everyone whether they wanted it or not.</p><h2 id="closing-thoughts">Closing thoughts</h2><p>I believe that DHH is making a well-timed call before the rest of the ecosystem catches up. Omarchy went with <a href="https://itsfoss.com/hyprland/">Hyprland</a> back when tiling window managers were a niche pick. Betting Quattro on AI agents looks like the same instinct that's paid off before.</p><p>While many open source projects are left arguing whether using AI and providing AI-focused features is a good call, Omarchy looks to be on track to become something we can call an "<em>AI Linux distro</em>."</p>
<img src="https://feed.itsfoss.com/link/24361/17417194.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[VLC is Wrongly Blamed for Microsoft Defender's Clumsiness]]></title>
      <description><![CDATA[VLC takes a long time to play MP3 on Windows? Blame it on Microsoft Defender, not VLC.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17416952/vlc-microsoft-defenders-drama</link>
      <guid isPermaLink="false">6a7d335eb11ec200018878a9</guid>
      <category><![CDATA[News]]></category>
      <dc:creator><![CDATA[Abhishek Prakash]]></dc:creator>
      <pubDate>Thu, 13 Aug 2026 09:51:33 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/08/vlc-defender-drama.webp" medium="image">
        <media:description type="plain">VLC blamed for Microsoft's issue</media:description>
      </media:content>
      <content:encoded><![CDATA[<figure><img src="https://itsfoss.com/content/images/2026/08/vlc-defender-drama.webp" alt="VLC blamed for Microsoft&#039;s issue" loading="lazy"></figure>
<p>It all started <a href="https://x.com/Jonathan_Blow/status/2087564889154089120">with a tweet</a> by video game designer <a href="https://en.wikipedia.org/wiki/Jonathan_Blow">Jonathan Blow</a>. Blow is the developer behind games like Braid and The Witness.</p><p>He mentioned that he had stopped using VLC on Windows because it took about 33 seconds to start playing a simple MP3, and he had switched to Microsoft Media Player instead.</p><figure class="kg-card kg-embed-card"><blockquote class="twitter-tweet"><p lang="en" dir="ltr">Finally switched *away* from VLC *to* Microsoft Media Player, because VLC now takes 33 seconds to start playing an mp3 after clicking on it.<br><br>A large sector of open source software is in a truly embarrassing place now... <a href="https://t.co/237aLdx2fG">pic.twitter.com/237aLdx2fG</a></p>&mdash; Jonathan Blow (@Jonathan_Blow) <a href="https://x.com/Jonathan_Blow/status/2087564889154089120?ref_src=twsrc%5Etfw">August 12, 2026</a></blockquote>
<script async="" src="https://platform.x.com/widgets.js" charset="utf-8"></script></figure><p>And he also shamed open source software, framing it as a sign that large part of open-source software is in bad shape.</p><blockquote>A large sector of open source software is in a truly embarrassing place now...</blockquote><p>This quickly turned into a heated discussion, with people joining from both sides.</p><p>VLC's official Twitter account <a href="https://x.com/videolan/status/2087590352350064835">clarified that this delay</a> was not a core VLC regression but a side effect of a Windows 11 / Microsoft Defender update that quarantined VLC&rsquo;s plugin cache. Their suggested solution is reinstalling VLC or regenerating that cache.</p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/08/image-4.png" class="kg-image" alt="VLC blames the delay on Microsoft Defender" loading="lazy" width="986" height="423" srcset="https://itsfoss.com/content/images/size/w600/2026/08/image-4.png 600w, https://itsfoss.com/content/images/2026/08/image-4.png 986w" sizes="(min-width: 720px) 720px"></figure><p>Jonathan argued that it is the developer's responsibility to fix. He cited his own experience of fixing an issue caused by AMD in his game Braid.</p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/08/image-3.png" class="kg-image" alt="" loading="lazy" width="988" height="309" srcset="https://itsfoss.com/content/images/size/w600/2026/08/image-3.png 600w, https://itsfoss.com/content/images/2026/08/image-3.png 988w" sizes="(min-width: 720px) 720px"></figure><h2 id="linux-user-jumps-in-with-solid-evidence">Linux user jumps in with solid evidence</h2><p>A Linux user who goes by the X account <a href="https://x.com/VoxelPrismatic">@VoxelPrismatic</a> jumped in with concrete evidence that it is not a core VLC issue but a Windows issue.</p><p><a href="https://x.com/VoxelPrismatic/status/2087573220203356630">In this tweet</a>, the user shared a recording of what seems like a Linux distro running KDE. Recording clearly showed VLC started playing an MP3 file in 1-2 seconds.</p><figure class="kg-card kg-embed-card"><blockquote class="twitter-tweet"><p lang="en" dir="ltr">sounds like a windows issue ngl <a href="https://t.co/9Icp2Sf58M">pic.twitter.com/9Icp2Sf58M</a></p>&mdash; PRIZ ;] (@VoxelPrismatic) <a href="https://x.com/VoxelPrismatic/status/2087573220203356630?ref_src=twsrc%5Etfw">August 12, 2026</a></blockquote>
<script async="" src="https://platform.x.com/widgets.js" charset="utf-8"></script></figure><p>But some people were still not satisfied because VLC being slow to open MP3 files on Windows is a real issue but they kept on blaming it on VLC.</p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/08/image-1.png" class="kg-image" alt="People still blamed VLC" loading="lazy" width="998" height="409" srcset="https://itsfoss.com/content/images/size/w600/2026/08/image-1.png 600w, https://itsfoss.com/content/images/2026/08/image-1.png 998w" sizes="(min-width: 720px) 720px"></figure><h2 id="the-solution-to-the-problem">The solution to the problem</h2><p>VLC suggests the following fixes</p><ul><li>Regenerate the plugin cache (e.g. launch with <code>vlc --reset-plugins-cache</code>, or clear VLC&rsquo;s cache under the user profile and relaunch)</li><li>Reinstall VLC from the official build</li></ul><p>However, a <a href="https://x.com/FiveChook/status/2087572200912269394">better suggestion came</a> from a few users who noted that excluding vlc.exe in Microsoft Defender solves this problem. And I like this one better because it seems to address the problem where it originates, Microsoft Defender. And if the cache builds up, VLC may be slowed down again (I think).</p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/08/image-5.png" class="kg-image" alt="User suggests adding VLC in Defender exclsuion list" loading="lazy" width="998" height="306" srcset="https://itsfoss.com/content/images/size/w600/2026/08/image-5.png 600w, https://itsfoss.com/content/images/2026/08/image-5.png 998w" sizes="(min-width: 720px) 720px"></figure><p>The <a href="https://x.com/liverisnick/status/2087635125462778273">same was vouched</a> by several people. So this sure looks like the workaround worth trying.</p><h2 id="asking-the-right-question">Asking the right question</h2><p>Among all this, someone asked the real question; how come VLC not working for a single person becomes "a large sector of open source software" being an embarrassing place?</p><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/08/image-2.png" class="kg-image" alt="" loading="lazy" width="988" height="291" srcset="https://itsfoss.com/content/images/size/w600/2026/08/image-2.png 600w, https://itsfoss.com/content/images/2026/08/image-2.png 988w" sizes="(min-width: 720px) 720px"></figure><h2 id="blame-defender-not-vlc">Blame Defender, not VLC</h2><p>I understand the frustration. Waiting half a minute to play an MP3 should not be acceptable on a modern system, even if it is on Windows.</p><p>It is also okay to blame it on VLC when you don't know the real backstory and are unaware of the root cause. </p><p>But giving it a &ldquo;open source is broken&rdquo; narrative is highly far fetched. </p><p>I haven't tested it myself. Not going to jump into Windows just for this, but from what I see, the onus of fixing it lies on the Microsoft side. And from what I know about Microsoft, they won't do a thing.</p><p><strong><em>What's your take on this episode? Share it in the comments.</em></strong></p>
<img src="https://feed.itsfoss.com/link/24361/17416952.gif" height="1" width="1"/>]]></content:encoded>
    </item>
    <item>
      <title><![CDATA[SimpleX Chat Wants Its 400K+ Users to Become Investors Too]]></title>
      <description><![CDATA[The funds will go towards keeping the project up and running.]]></description>
      <link>https://feed.itsfoss.com/link/24361/17416295/simplex-chat-investment-drive</link>
      <guid isPermaLink="false">6a7c087bb11ec2000188729c</guid>
      <category><![CDATA[News]]></category>
      <dc:creator><![CDATA[Sourav Rudra]]></dc:creator>
      <pubDate>Wed, 12 Aug 2026 16:29:08 +0530</pubDate>
      <media:content url="https://itsfoss.com/content/images/2026/08/simplex-chat-investment-banner.png" medium="image">
        <media:description type="plain">a banner that shows the simplex chat logo, and two illustration depicting the transfer or money and a group of people</media:description>
      </media:content>
      <content:encoded><![CDATA[<figure><img src="https://itsfoss.com/content/images/2026/08/simplex-chat-investment-banner.png" alt="a banner that shows the simplex chat logo, and two illustration depicting the transfer or money and a group of people" loading="lazy"></figure>
<p>The world is in a messed-up state where surveillance and eroding people's rights are rewarded, and those who oppose are labeled unpatriotic, anti-national, radicals, criminal sympathizers, and what not.</p><p>Yet, that doesn't stop people from investing time and money in securing their data by opting for open source mobile operating systems like <a href="https://itsfoss.com/news/grapheneos-duress-password-indictment/">GrapheneOS</a> and taking steps to <a href="https://itsfoss.com/improve-privacy/">improve their privacy</a> in the online world.</p><p>One of those steps is to go for a private messaging app that doesn't give out your data to feed some AI or a governmental agency that asks for your data nicely. <a href="https://simplex.chat">SimpleX Chat</a> is one such option, a messaging network that doesn't ask for phone numbers, emails, or user accounts.</p><p>I tried it out myself <a href="https://itsfoss.com/news/simplex-chat/">back in 2024</a>, and it left a strong impression. The team behind it has kept building since, and now it wants its users to also have a stake in where the project goes next.</p><div class="kg-card kg-callout-card kg-callout-card-yellow"><div class="kg-callout-emoji">&#128679;</div><div class="kg-callout-text">SimpleX Chat reached out to us requesting some corrections to bring this in line with the SEC's <a href="https://www.sec.gov/resources-small-businesses/exempt-offerings/regulation-crowdfunding">Regulation Crowdfunding</a> promotion rules, and a few things that didn't sit quite right.</div></div><h2 id="looking-for-investors">Looking for investors</h2><figure class="kg-card kg-image-card"><img src="https://itsfoss.com/content/images/2026/08/simplex-chat-wefunder-banner-1.png" class="kg-image" alt="a banner cropped from a wefunder listing for simplex chat" loading="lazy" width="800" height="816" srcset="https://itsfoss.com/content/images/size/w600/2026/08/simplex-chat-wefunder-banner-1.png 600w, https://itsfoss.com/content/images/2026/08/simplex-chat-wefunder-banner-1.png 800w" sizes="(min-width: 720px) 720px"></figure><p>The founder of SimpleX Chat, <a href="https://www.linkedin.com/in/epoberezkin/">Evgeny Poberezkin</a>, reached out to us recently, saying that they were looking to give users "<em>the opportunity to get a stake in SimpleX Chat and benefit from its growth</em>."</p><p>This investment is possible under regulation crowdfunding via <a href="https://wefunder.com/simplexchat">Wefunder</a>, and all the terms are available on the SimpleX Chat page. People who invest $500 or more would receive public SimpleX names that SimpleX Chat is currently testing.</p><p>Until August 15, these names would be for 10 years, and for 5 years for early bird investors after that.</p><p><strong>The company behind the app isn't quite what it used to be either</strong>. <a href="https://find-and-update.company-information.service.gov.uk/company/13691484">SimpleX Chat Ltd</a>, the UK entity that built the app, is now a wholly owned subsidiary of a new US company, <a href="https://opencorporates.com/companies/us_de/10494325">SimpleX Chat, Inc</a>.</p><p><em>Keep that in mind if you consider where a firm is based out of before investing in it.</em></p><p>SimpleX Chat also recently pivoted to public channels and infrastructure payments for large channels as their core commercial strategy, publishing a&nbsp;whitepaper&nbsp;about <a href="https://simplex.chat/credits/whitepaper.pdf">Community Credits</a> that would allow private payments for infrastructure via prepaid credits.</p><p>Other planned sources of revenue include public names in the network for channels and businesses and business messaging via browser.</p><p>To further explain, <a href="https://simplex.chat/blog/20260722-simplex-public-names.html">public names</a> use blockchain contract on the <a href="https://ethereum.org">Ethereum</a> mainnet and are fully controlled by the users&rsquo; keys. You can test the temporary names in the mobile apps for SimpleX Chat.</p><p><strong>Before you go ahead and invest</strong>, do understand that this comes with the usual risks of backing a company this early.</p><p>There's no guarantee of a return, and what you invest isn't something you can sell easily if you change your mind. The company's filing says that <strong>they have enough cash for the next 12 months</strong>.</p><h2 id="a-similar-occurence">A similar occurence</h2><p>We already had an instance of a messaging app asking its community for help earlier this year, where <a href="https://itsfoss.com/news/session-call-for-donations/">Session</a> nearly shut down after it ran out of funding, needing $1 million to keep going.</p><p>By June, the <a href="https://getsession.org/the-future-of-session">foundation confirmed</a> development had resumed, backed by two to three developers instead of the dozen-plus it once employed. SimpleX Chat raising money through equity now, rather than an emergency donation drive, gives it a strong start.</p>
<img src="https://feed.itsfoss.com/link/24361/17416295.gif" height="1" width="1"/>]]></content:encoded>
    </item>
  </channel>
</rss>
