eupolicy.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
This Mastodon server is a friendly and respectful discussion space for people working in areas related to EU policy. When you request to create an account, please tell us something about you.

Server stats:

204
active users

#gnomedesktop

0 posts0 participants0 posts today
Aptivi<p>GNOME 49 Alpha is now live!</p><p><a href="https://mastodon.social/tags/GNOME" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GNOME</span></a> <a href="https://mastodon.social/tags/GNOMEDesktop" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GNOMEDesktop</span></a> <a href="https://mastodon.social/tags/Linux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Linux</span></a> <a href="https://mastodon.social/tags/LinuxDesktop" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LinuxDesktop</span></a> <a href="https://mastodon.social/tags/Desktop" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Desktop</span></a> <a href="https://mastodon.social/tags/Computers" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Computers</span></a> <a href="https://mastodon.social/tags/Laptops" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Laptops</span></a> <a href="https://mastodon.social/tags/TechNews" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>TechNews</span></a> <a href="https://mastodon.social/tags/TechUpdates" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>TechUpdates</span></a></p><p><a href="https://officialaptivi.wordpress.com/2025/07/07/gnome-49-alpha-released/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">officialaptivi.wordpress.com/2</span><span class="invisible">025/07/07/gnome-49-alpha-released/</span></a></p>
Aptivi<p><strong>GNOME fixes the Trash bug from&nbsp;2009!</strong></p><p>GNOME Desktop had a bug in the Trash function where the leftover files from the user-wide expunged trash directory, found in <code>~/.local/share/Trash/expunged</code>, were not being deleted properly, and that the Nautilus file manager, which GNOME uses, inaccurately reported that the trash was empty. This bug was originally reported in Ubuntu’s Launchpad under the title of “<a href="https://bugs.launchpad.net/ubuntu/+source/nautilus/+bug/422012" rel="nofollow noopener" target="_blank">Emptying the trash can lead to have files still on disk in expunged</a>.”</p><p>This caused problems with the free disk space, since the bug reporter had stated that they had about 70 GB of files in the expunged directory, which were handled incorrectly when emptying the trash. Furthermore, said directory was found in the hidden .local folder underneath your home directory, which was not obvious to the average user. This was said to be due to wrong permissions being applied to the offending files, and a reproducer was found:</p><pre><code>mkdir -p test/roottouch test/root/filesudo chown root:root test/root</code></pre><p>This followed the two chained rules, first for trashing and second for emptying, where, <em><a href="https://ignapk.blogspot.com/2025/06/taking-out-trash-or-just-sweeping-it.html" rel="nofollow noopener" target="_blank">ipsis verbis</a></em>:</p><ul><li>when a directory A is in a directory owned by you and it’s owned by you, you can obviously move it.</li><li>when a directory B is in a directory A owned by you but you don’t own it,&nbsp;<strong>and it’s not empty</strong>, you can’t delete it.</li></ul><p>So, essentially, this boils down to:</p><ul><li>The <code>test</code> directory is made by the current user (assume that the current user is <code>aptivi</code>)</li><li>The <code>root</code> directory inside the user-owned <code>test</code> directory is made by <code>aptivi</code></li><li>A file, <code>file</code>, which <code>aptivi</code> owned, was created inside the <code>root</code> directory</li><li>The <code>root</code> directory’s owner had changed to the <code>root</code> user</li><li>The <code>test</code> directory can be moved to <code>aptivi</code>‘s trash, since the first chained rule has been followed<ul><li><em>Explanation:</em> <code>test</code> was owned by <code>aptivi</code> and had a parent directory that was also owned by <code>aptivi</code></li></ul></li><li>The <code>root</code> directory can’t be deleted from <code>aptivi</code>‘s trash, since the second chained rule has been followed<ul><li><em>Explanation:</em> <code>root</code>, a non-empty directory owned by <code>root</code>, was inside <code>test</code>, owned by <code>aptivi</code>, and the <code>root</code> directory can’t be removed</li></ul></li><li>The <code>root</code> directory can now be found underneath the <code>expunged</code> folder under <code>aptivi</code>‘s .local folder</li></ul><p>The <a href="https://gitlab.gnome.org/GNOME/glib/-/issues/1665" rel="nofollow noopener" target="_blank">appropriate GNOME bug tracker ticket</a> was brought to the upstream developers six years ago from writing who confirmed that the issue was happening. According to this blog post, the <a href="https://gitlab.gnome.org/GNOME/glib/-/merge_requests/4653" rel="nofollow noopener" target="_blank">merge request</a> was submitted to the GNOME project, which was approved. The fix is now at the upstream GLib code.</p><p>An internal function was added to the I/O part of the GLib library, called <a href="https://gitlab.gnome.org/GNOME/glib/-/merge_requests/4653/diffs#c12e9d12f961d46f8c4d0917bd27f5caa09824d4_2000_2010" rel="nofollow noopener" target="_blank"><code>check_removing_recursively()</code></a>, that checked whether “subsequently deleting the original file from the trash (in the gvfsd-trash process) will succeed.” It also checked the ownership of the files before deletion and automatically assigned the file mode <code>(chmod)</code> to allow deletion.</p><p>That filled one of the <code>TODO</code> tasks in the I/O code that handled emptying the trash in the internal function, <a href="https://gitlab.gnome.org/GNOME/glib/-/merge_requests/4653/diffs#c12e9d12f961d46f8c4d0917bd27f5caa09824d4_2380_2458" rel="nofollow noopener" target="_blank"><code>g_local_file_trash()</code></a>. It said “Maybe we should verify that you can delete the file from the trash before moving it? OTOH, that is hard, as it needs a recursive scan.”</p><p>Now, you can empty the trash without worrying about the free disk space, but only if your Linux distribution uses a version of GNOME that contains this fix. We expect that this fix will land to several distributions in the coming days or weeks.</p><p><strong>Pro tip: to eliminate the remaining expunged files after installing the fixed version of GNOME, <a href="https://askubuntu.com/a/351408" rel="nofollow noopener" target="_blank">use this trick</a> to free up disk space.</strong></p><p><span></span></p><p><a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://officialaptivi.wordpress.com/tag/gnome/" target="_blank">#GNOME</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://officialaptivi.wordpress.com/tag/gnome-desktop/" target="_blank">#GNOMEDesktop</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://officialaptivi.wordpress.com/tag/linux/" target="_blank">#Linux</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://officialaptivi.wordpress.com/tag/linux-desktop/" target="_blank">#LinuxDesktop</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://officialaptivi.wordpress.com/tag/news/" target="_blank">#news</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://officialaptivi.wordpress.com/tag/tech/" target="_blank">#Tech</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://officialaptivi.wordpress.com/tag/technology/" target="_blank">#Technology</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://officialaptivi.wordpress.com/tag/trash/" target="_blank">#Trash</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://officialaptivi.wordpress.com/tag/trash-bin/" target="_blank">#TrashBin</a> <a rel="nofollow noopener" class="hashtag u-tag u-category" href="https://officialaptivi.wordpress.com/tag/update/" target="_blank">#update</a></p>
Fossery Tech :debian: :gnome:<p>This week's Linux and FOSS news:</p><p>LINUX NEWS</p><p>Ubuntu 24.10 will reach EOL on July 10, upgrading to 25.04 is recommended:<br><a href="https://www.omgubuntu.co.uk/2025/06/ubuntu-24-10-oracular-oriole-eol-july-2025" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">omgubuntu.co.uk/2025/06/ubuntu</span><span class="invisible">-24-10-oracular-oriole-eol-july-2025</span></a></p><p>Ubuntu 25.10 (shipping GNOME 49) will remove GNOME X11 session:<br><a href="https://9to5linux.com/ubuntu-25-10-questing-quokka-to-remove-the-gnome-on-xorg-x11-session" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">9to5linux.com/ubuntu-25-10-que</span><span class="invisible">sting-quokka-to-remove-the-gnome-on-xorg-x11-session</span></a></p><p>Linux Mint 20 reached EOL, upgrading to 22 is recommended:<br><a href="https://news.itsfoss.com/linux-mint-20-eol/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">news.itsfoss.com/linux-mint-20</span><span class="invisible">-eol/</span></a></p><p>Linux Mint 22.2 adds out-of-the-box fingerprint authentication support with Fingwit app:<br><a href="https://9to5linux.com/linux-mint-22-2-will-feature-fingerprint-authentication-with-fingwit-app" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">9to5linux.com/linux-mint-22-2-</span><span class="invisible">will-feature-fingerprint-authentication-with-fingwit-app</span></a></p><p>Nitrux drops the Plasma-based NX desktop for Hyprland, due to the discontinuation of Plasma LTS released:<br><a href="https://9to5linux.com/nitrux-linux-drops-its-kde-plasma-based-nx-desktop-for-hyprland" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">9to5linux.com/nitrux-linux-dro</span><span class="invisible">ps-its-kde-plasma-based-nx-desktop-for-hyprland</span></a><br>(It's a bit weird choice that they ditched a full DE for a standalone compositor, which is tiling in fact, and requires editing some config files manually, not sure if DE users want that.)</p><p>Kali Linux 2025.2 released with revamped Kali Menu, GNOME 48, KDE Plasma 8.3, 13 new tools (including Azurehound, binwalk3, bloodhound-ce-python etc.):<br><a href="https://9to5linux.com/kali-linux-2025-2-released-with-revamped-kali-menu-13-new-hacking-tools" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">9to5linux.com/kali-linux-2025-</span><span class="invisible">2-released-with-revamped-kali-menu-13-new-hacking-tools</span></a></p><p>GNOME 49 Alpha 0 available with preparations for disabling X11 by default:<br><a href="https://www.phoronix.com/news/GNOME-49-Alpha-0-Packages" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">phoronix.com/news/GNOME-49-Alp</span><span class="invisible">ha-0-Packages</span></a></p><p>Sway 1.11 released with explicit sync support, support for the ext-image-copy-capture-v1 and ext-image-capture-source-v1 protocols for improved screen capture, support for the alpha-modifier-v1 protocol for setting an alpha multiplier for a surface, etc.:<br><a href="https://9to5linux.com/sway-1-11-tiling-wayland-compositor-adds-support-for-explicit-synchronization" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">9to5linux.com/sway-1-11-tiling</span><span class="invisible">-wayland-compositor-adds-support-for-explicit-synchronization</span></a></p><p>(More Linux and FOSS news in comments)</p><p><a href="https://social.linux.pizza/tags/WeeklyNews" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>WeeklyNews</span></a> <a href="https://social.linux.pizza/tags/News" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>News</span></a> <a href="https://social.linux.pizza/tags/Linux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Linux</span></a> <a href="https://social.linux.pizza/tags/LinuxNews" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LinuxNews</span></a> <a href="https://social.linux.pizza/tags/Ubuntu" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Ubuntu</span></a> <a href="https://social.linux.pizza/tags/Ubuntu2410" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Ubuntu2410</span></a> <a href="https://social.linux.pizza/tags/Ubuntu2510" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Ubuntu2510</span></a> <a href="https://social.linux.pizza/tags/LinuxMint" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LinuxMint</span></a> <a href="https://social.linux.pizza/tags/LinuxMint22" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LinuxMint22</span></a> <a href="https://social.linux.pizza/tags/Nitrux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Nitrux</span></a> <a href="https://social.linux.pizza/tags/KaliLinux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>KaliLinux</span></a> <a href="https://social.linux.pizza/tags/Kali" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Kali</span></a> <a href="https://social.linux.pizza/tags/GNOME" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GNOME</span></a> <a href="https://social.linux.pizza/tags/GNOME49" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GNOME49</span></a> <a href="https://social.linux.pizza/tags/GNOMEDesktop" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GNOMEDesktop</span></a> <a href="https://social.linux.pizza/tags/Sway" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Sway</span></a> <a href="https://social.linux.pizza/tags/WaylandCompositor" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>WaylandCompositor</span></a> <a href="https://social.linux.pizza/tags/DesktopEnvironment" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DesktopEnvironment</span></a> <a href="https://social.linux.pizza/tags/LinuxDistro" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LinuxDistro</span></a> <a href="https://social.linux.pizza/tags/LinuxDistribution" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LinuxDistribution</span></a> <a href="https://social.linux.pizza/tags/DistroRelease" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DistroRelease</span></a> <a href="https://social.linux.pizza/tags/DistributionRelease" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DistributionRelease</span></a> <a href="https://social.linux.pizza/tags/DesktopLinux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DesktopLinux</span></a> <a href="https://social.linux.pizza/tags/LinuxDesktop" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LinuxDesktop</span></a> <a href="https://social.linux.pizza/tags/FosseryTech" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>FosseryTech</span></a></p>
Lars Wirzenius<p>I have a shell script called "finished":</p><p>~~~<br>#!/bin/bash<br>notify-send "Finished" "${*:-Finished}"<br>~~~</p><p>I often run this command:</p><p>sleep 3m; finished Tea is ready</p><p><a href="https://toot.liw.fi/tags/tea" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>tea</span></a> <a href="https://toot.liw.fi/tags/GNOME" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GNOME</span></a> <a href="https://toot.liw.fi/tags/GnomeDesktop" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GnomeDesktop</span></a></p>
Fossery Tech :debian: :gnome:<p>This week's Linux and FOSS news:</p><p>LINUX NEWS</p><p>GNOME 48 "Bengaluru" released with dynamic triple buffering to boost the performance on low-end GPUs, Wayland color management protocol support, new Adwaita fonts, HDR (High Dynamic Range) support, new Wellbeing feature with screen time tracking, new Display Control utility, new windows centered by default, OSD notifications for headphone connections, new Papers app as the default document viewer, notifications grouped by apps, improvements to Nautilus and Software, Loupe got image editing support etc.:<br><a href="https://9to5linux.com/gnome-48-bengaluru-desktop-environment-officially-released-this-is-whats-new" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">9to5linux.com/gnome-48-bengalu</span><span class="invisible">ru-desktop-environment-officially-released-this-is-whats-new</span></a><br>(Finally there's an image viewer on Linux which can do simple editing without opening a separate program)</p><p>Serpent OS changes name to AerynOS, because of "serpent" having a negative association:<br><a href="https://9to5linux.com/ikey-dohertys-serpent-os-changes-name-to-aerynos" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">9to5linux.com/ikey-dohertys-se</span><span class="invisible">rpent-os-changes-name-to-aerynos</span></a><br>(Instead of a "negative" name, now it has a name that's hard to spell correctly, judging from how many people spell Python incorrectly lol)</p><p>Fedora 42 Beta available with new KDE edition (not spin anymore!), COSMIC spin, refreshed Anaconda installer, DNF5 improvements etc.:<br><a href="https://betanews.com/2025/03/18/fedora-linux-42-beta-asahi-kde-cosmic-new-features/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">betanews.com/2025/03/18/fedora</span><span class="invisible">-linux-42-beta-asahi-kde-cosmic-new-features/</span></a></p><p>Kali Linux 2025.1 released with Xfce 4.20, KDE Plasma 6.2, refreshed theme, new keyboard shortcuts, kernel update, new partition layout etc.:<br><a href="https://9to5linux.com/kali-linux-2025-1-ethical-hacking-distro-is-here-with-xfce-4-20-refreshed-theme" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">9to5linux.com/kali-linux-2025-</span><span class="invisible">1-ethical-hacking-distro-is-here-with-xfce-4-20-refreshed-theme</span></a></p><p>Lead developer of the Dash to Panel GNOME extension quits due to drama around the animated heart icon with a donation message:<br><a href="https://news.itsfoss.com/dash-to-panel-drama/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">news.itsfoss.com/dash-to-panel</span><span class="invisible">-drama/</span></a><br>(Linux isn't Linux without a drama each week...)</p><p>PINE64 RISC-V tablet (PineTab-V) gets new Debian-based distro, new accelerometer, a fix for a slow charging issue, an LED status indicator light, and a unique identifier for the PineTab-V in the EEPROM:<br><a href="https://news.itsfoss.com/pinetab-v-upgrade/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">news.itsfoss.com/pinetab-v-upg</span><span class="invisible">rade/</span></a></p><p>(FOSS news in comment)</p><p><a href="https://social.linux.pizza/tags/WeeklyNews" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>WeeklyNews</span></a> <a href="https://social.linux.pizza/tags/News" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>News</span></a> <a href="https://social.linux.pizza/tags/Linux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Linux</span></a> <a href="https://social.linux.pizza/tags/LinuxNews" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LinuxNews</span></a> <a href="https://social.linux.pizza/tags/GNOME" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GNOME</span></a> <a href="https://social.linux.pizza/tags/GNOME48" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GNOME48</span></a> <a href="https://social.linux.pizza/tags/GNOMEDesktop" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GNOMEDesktop</span></a> <a href="https://social.linux.pizza/tags/SerpentOS" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>SerpentOS</span></a> <a href="https://social.linux.pizza/tags/AerynOS" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>AerynOS</span></a> <a href="https://social.linux.pizza/tags/Fedora42" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Fedora42</span></a> <a href="https://social.linux.pizza/tags/Fedora" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Fedora</span></a> <a href="https://social.linux.pizza/tags/FedoraKDE" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>FedoraKDE</span></a> <a href="https://social.linux.pizza/tags/Kali" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Kali</span></a> <a href="https://social.linux.pizza/tags/KaliLinux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>KaliLinux</span></a> <a href="https://social.linux.pizza/tags/GNOMEExtension" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GNOMEExtension</span></a> <a href="https://social.linux.pizza/tags/DashToPanel" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DashToPanel</span></a> <a href="https://social.linux.pizza/tags/PineTabV" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PineTabV</span></a> <a href="https://social.linux.pizza/tags/PineTab" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PineTab</span></a> <a href="https://social.linux.pizza/tags/Pine64" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Pine64</span></a> <a href="https://social.linux.pizza/tags/RISCV" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>RISCV</span></a> <a href="https://social.linux.pizza/tags/LinuxDesktop" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LinuxDesktop</span></a> <a href="https://social.linux.pizza/tags/LinuxDistro" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LinuxDistro</span></a> <a href="https://social.linux.pizza/tags/LinuxDistribution" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LinuxDistribution</span></a> <a href="https://social.linux.pizza/tags/DesktopLinux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DesktopLinux</span></a> <a href="https://social.linux.pizza/tags/DesktopEnvironment" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DesktopEnvironment</span></a> <a href="https://social.linux.pizza/tags/DistroRelease" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DistroRelease</span></a> <a href="https://social.linux.pizza/tags/LinuxTablet" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LinuxTablet</span></a> <a href="https://social.linux.pizza/tags/FosseryTech" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>FosseryTech</span></a></p>
Fossery Tech :debian: :gnome:<p>This week's Linux and FOSS news:</p><p>LINUX NEWS</p><p>GNOME 48 RC available with dynamic triple buffering, Wayland color management protocol, support for centering new windows by default, NVIDIA improvements, updates for Nautilus and Settings etc.:<br><a href="https://9to5linux.com/gnome-48-rc-adds-dynamic-triple-buffering-wayland-color-management-protocol" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">9to5linux.com/gnome-48-rc-adds</span><span class="invisible">-dynamic-triple-buffering-wayland-color-management-protocol</span></a></p><p>KDE Plasma 6.4 will include color code recognition for KRunner to display the color with textual representation, Disks &amp; Devices widget will automatically check newly-connected disks for file system errors and offer corrections, fixes for keyboard navigation issues, Spectacle redesign etc.:<br><a href="https://alternativeto.net/news/2025/3/kde-team-unveils-new-features-and-enhancements-planned-for-upcoming-kde-plasma-6-4-release/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">alternativeto.net/news/2025/3/</span><span class="invisible">kde-team-unveils-new-features-and-enhancements-planned-for-upcoming-kde-plasma-6-4-release/</span></a></p><p>KDE Gear 24.12.3 released with improvements for Dolphin, Konsole, Tokodon, Kasts, Konqueror, Itinerary, PlasmaTube, Kate, Kdenlive, AudioTube, NeoChat, Okular etc.:<br><a href="https://9to5linux.com/kde-gear-24-12-3-improves-dolphin-konsole-tokodon-itinerary-kasts-and-more" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">9to5linux.com/kde-gear-24-12-3</span><span class="invisible">-improves-dolphin-konsole-tokodon-itinerary-kasts-and-more</span></a></p><p>PipeWire 1.4 released with RISC-V support, MIDI2 support, JACK Control API etc.:<br><a href="https://9to5linux.com/pipewire-1-4-is-out-with-risc-v-support-midi2-support-jack-control-api-and-more" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">9to5linux.com/pipewire-1-4-is-</span><span class="invisible">out-with-risc-v-support-midi2-support-jack-control-api-and-more</span></a></p><p>Wine 10.3 released with Wayland clipboard support, initial Vulkan video decoding, Compiler-RT included in ARM builds, improved Winelib C++ compatibility etc.:<br><a href="https://alternativeto.net/news/2025/3/wine-10-3-maintenance-update-adds-wayland-clipboard-support-vulkan-video-decoding-and-more/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">alternativeto.net/news/2025/3/</span><span class="invisible">wine-10-3-maintenance-update-adds-wayland-clipboard-support-vulkan-video-decoding-and-more/</span></a></p><p>Ubuntu 25.04 will include Papers instead of Evince for PDF reader:<br><a href="https://www.omgubuntu.co.uk/2025/03/ubuntu-25-04-new-pdf-viewer-app-official" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">omgubuntu.co.uk/2025/03/ubuntu</span><span class="invisible">-25-04-new-pdf-viewer-app-official</span></a></p><p>Tails 6.13 released with enhanced Wi-Fi troubleshooting, updated Tor client and Tor Browser, ability to detect partitioning errors when Tails is started for the first time, bug fixes:<br><a href="https://alternativeto.net/news/2025/3/tails-6-13-released-with-enhanced-wi-fi-troubleshooting-and-key-software-updates/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">alternativeto.net/news/2025/3/</span><span class="invisible">tails-6-13-released-with-enhanced-wi-fi-troubleshooting-and-key-software-updates/</span></a></p><p>Ubuntu Touch (UBports) 20.04 OTA-8 released with VoLTE support for Volla phone users, support for WPA3-protected Wi-Fi networks, bug fixes, security updates:<br><a href="https://9to5linux.com/ubuntu-touch-ota-8-released-with-volte-support-for-volla-phone-users" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">9to5linux.com/ubuntu-touch-ota</span><span class="invisible">-8-released-with-volte-support-for-volla-phone-users</span></a></p><p>(FOSS news in comment)</p><p><a href="https://social.linux.pizza/tags/WeeklyNews" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>WeeklyNews</span></a> <a href="https://social.linux.pizza/tags/News" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>News</span></a> <a href="https://social.linux.pizza/tags/FOSS" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>FOSS</span></a> <a href="https://social.linux.pizza/tags/OpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenSource</span></a> <a href="https://social.linux.pizza/tags/Linux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Linux</span></a> <a href="https://social.linux.pizza/tags/LinuxNews" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LinuxNews</span></a> <a href="https://social.linux.pizza/tags/GNOME" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GNOME</span></a> <a href="https://social.linux.pizza/tags/GNOME48" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GNOME48</span></a> <a href="https://social.linux.pizza/tags/GNOMEDesktop" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GNOMEDesktop</span></a> <a href="https://social.linux.pizza/tags/KDE" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>KDE</span></a> <a href="https://social.linux.pizza/tags/KDEPlasma" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>KDEPlasma</span></a> <a href="https://social.linux.pizza/tags/KDEPlasma6" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>KDEPlasma6</span></a> <a href="https://social.linux.pizza/tags/KDEGear" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>KDEGear</span></a> <a href="https://social.linux.pizza/tags/PipeWire" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>PipeWire</span></a> <a href="https://social.linux.pizza/tags/Wine" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Wine</span></a> <a href="https://social.linux.pizza/tags/Ubuntu" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Ubuntu</span></a> <a href="https://social.linux.pizza/tags/Ubuntu2504" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Ubuntu2504</span></a> <a href="https://social.linux.pizza/tags/Tails" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Tails</span></a> <a href="https://social.linux.pizza/tags/TailsOS" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>TailsOS</span></a> <a href="https://social.linux.pizza/tags/UbuntuTouch" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>UbuntuTouch</span></a> <a href="https://social.linux.pizza/tags/UBPorts" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>UBPorts</span></a> <a href="https://social.linux.pizza/tags/LinuxDesktop" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LinuxDesktop</span></a> <a href="https://social.linux.pizza/tags/DesktopLinux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DesktopLinux</span></a> <a href="https://social.linux.pizza/tags/LinuxDistro" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LinuxDistro</span></a> <a href="https://social.linux.pizza/tags/LinuxDistribution" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LinuxDistribution</span></a> <a href="https://social.linux.pizza/tags/DistroRelease" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DistroRelease</span></a> <a href="https://social.linux.pizza/tags/LinuxMobile" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LinuxMobile</span></a> <a href="https://social.linux.pizza/tags/MobileLinux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>MobileLinux</span></a> <a href="https://social.linux.pizza/tags/DesktopEnvironment" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DesktopEnvironment</span></a> <a href="https://social.linux.pizza/tags/FosseryTech" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>FosseryTech</span></a></p>
Fossery Tech :debian: :gnome:<p>This week's Linux and FOSS news:</p><p>LINUX NEWS</p><p>GNOME 48 will include sidebar for Text Editor, new default fonts, Digital Health / Wellbeing functionality:<br><a href="https://www.phoronix.com/news/GNOME-Text-Editor-Sidebar" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">phoronix.com/news/GNOME-Text-E</span><span class="invisible">ditor-Sidebar</span></a><br>(After FosseryWeb sidebar, get ready to have a sidebar in Text Editor too lol)</p><p>GTK 5 drops X11 support, introduces Android backend for the toolkit:<br><a href="https://www.phoronix.com/news/GTK-X11-Now-Deprecated" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">phoronix.com/news/GTK-X11-Now-</span><span class="invisible">Deprecated</span></a><br>(Meanwhile on Wayland, many video chat services don't support screen sharing, video recording is still problematic (at least on Debian), but no problem, just drop X11 and ignore the mentioned use cases...)</p><p>KDE Gear 24.12.2 released with improvements for Dolphin, Itinerary, Tokodon, Kate, Kamera, Kdenlive, NeoChat etc.:<br><a href="https://9to5linux.com/kde-gear-24-12-2-improves-dolphin-itinerary-tokodon-and-many-other-kde-apps" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">9to5linux.com/kde-gear-24-12-2</span><span class="invisible">-improves-dolphin-itinerary-tokodon-and-many-other-kde-apps</span></a></p><p>CachyOS ISO snapshot for February includes Linux kernel 6.13, NVIDIA 570 driver, KDE Plasma 6.2.5, enabled tap-to-click by default for the X11 session etc.:<br><a href="https://9to5linux.com/cachyos-iso-snapshot-for-february-2025-brings-linux-kernel-6-13-nvidia-570-driver" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">9to5linux.com/cachyos-iso-snap</span><span class="invisible">shot-for-february-2025-brings-linux-kernel-6-13-nvidia-570-driver</span></a></p><p>Tails 6.12 released with security fixes for Tor circuits and persistent storage, bug fixes:<br><a href="https://9to5linux.com/tails-6-12-anonymous-os-fixes-security-issues-in-tor-circuits-persistent-storage" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">9to5linux.com/tails-6-12-anony</span><span class="invisible">mous-os-fixes-security-issues-in-tor-circuits-persistent-storage</span></a></p><p>(FOSS news in reply)</p><p><a href="https://social.linux.pizza/tags/WeeklyNews" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>WeeklyNews</span></a> <a href="https://social.linux.pizza/tags/FOSS" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>FOSS</span></a> <a href="https://social.linux.pizza/tags/OpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenSource</span></a> <a href="https://social.linux.pizza/tags/Linux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Linux</span></a> <a href="https://social.linux.pizza/tags/LinuxNews" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LinuxNews</span></a> <a href="https://social.linux.pizza/tags/LinuxKernel" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LinuxKernel</span></a> <a href="https://social.linux.pizza/tags/GNOME" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GNOME</span></a> <a href="https://social.linux.pizza/tags/GNOMEDesktop" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GNOMEDesktop</span></a> <a href="https://social.linux.pizza/tags/GNOME48" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GNOME48</span></a> <a href="https://social.linux.pizza/tags/GTK" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GTK</span></a> <a href="https://social.linux.pizza/tags/GTK5" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GTK5</span></a> <a href="https://social.linux.pizza/tags/KDE" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>KDE</span></a> <a href="https://social.linux.pizza/tags/KDEGear" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>KDEGear</span></a> <a href="https://social.linux.pizza/tags/CachyOS" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>CachyOS</span></a> <a href="https://social.linux.pizza/tags/Tails" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Tails</span></a> <a href="https://social.linux.pizza/tags/TailsOS" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>TailsOS</span></a> <a href="https://social.linux.pizza/tags/Security" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Security</span></a> <a href="https://social.linux.pizza/tags/DesktopEnvironment" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DesktopEnvironment</span></a> <a href="https://social.linux.pizza/tags/DesktopLinux" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DesktopLinux</span></a> <a href="https://social.linux.pizza/tags/LinuxDesktop" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LinuxDesktop</span></a> <a href="https://social.linux.pizza/tags/DistroRelease" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>DistroRelease</span></a> <a href="https://social.linux.pizza/tags/LinuxDistribution" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LinuxDistribution</span></a> <a href="https://social.linux.pizza/tags/LinuxDistro" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>LinuxDistro</span></a> <a href="https://social.linux.pizza/tags/FosseryTech" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>FosseryTech</span></a></p>