home.social

#fishshell — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #fishshell, aggregated by home.social.

fetched live
  1. (more Linux news in original post)

    Proton Experimental updated for ARC Raiders, DIRT 5, Kingdom Come: Deliverance II:
    gamingonlinux.com/2026/06/prot

    GloriousEggroll Drops GE-Proton11-1 With Massive Video Playback Rework and Proton 11 Rebase:
    linuxcompatible.org/story/gepr

    fish 4.8 released with improved history search, better completion & scripting enhancements:
    alternativeto.net/news/2026/6/

    NVIDIA 580.173.02 Linux Graphics Driver Released for GeForce 10 Series:
    9to5linux.com/nvidia-580-173-0

    DXVK 3.0 Released with Shader Compilation and D3D9 Improvements:
    9to5linux.com/dxvk-3-0-release

    Fwupd 2.0.21 Brings Fixes For More Than 250 Potential Security Issues Found Via AI:
    phoronix.com/news/Fwupd-2.0.21

    Mesa 26.2 Merges Vulkan Present Timing Support For X11/XWayland:
    phoronix.com/news/Mesa-26.2-X1

    Linux's KUnit Finally Supporting JUnit Output:
    phoronix.com/news/Linux-KUnit-

    (FOSS news in comments)

    #WeeklyNews #News #Linux #LinuxNews #ProtonExperimental #GEProton #FishShell #NVIDIA #NVIDIADriver #DXVK #Fwupd #Mesa #KUnit #FosseryTech

  2. (more Linux news in original post)

    Proton Experimental updated for ARC Raiders, DIRT 5, Kingdom Come: Deliverance II:
    gamingonlinux.com/2026/06/prot

    GloriousEggroll Drops GE-Proton11-1 With Massive Video Playback Rework and Proton 11 Rebase:
    linuxcompatible.org/story/gepr

    fish 4.8 released with improved history search, better completion & scripting enhancements:
    alternativeto.net/news/2026/6/

    NVIDIA 580.173.02 Linux Graphics Driver Released for GeForce 10 Series:
    9to5linux.com/nvidia-580-173-0

    DXVK 3.0 Released with Shader Compilation and D3D9 Improvements:
    9to5linux.com/dxvk-3-0-release

    Fwupd 2.0.21 Brings Fixes For More Than 250 Potential Security Issues Found Via AI:
    phoronix.com/news/Fwupd-2.0.21

    Mesa 26.2 Merges Vulkan Present Timing Support For X11/XWayland:
    phoronix.com/news/Mesa-26.2-X1

    Linux's KUnit Finally Supporting JUnit Output:
    phoronix.com/news/Linux-KUnit-

    (FOSS news in comments)

    #WeeklyNews #News #Linux #LinuxNews #ProtonExperimental #GEProton #FishShell #NVIDIA #NVIDIADriver #DXVK #Fwupd #Mesa #KUnit #FosseryTech

  3. Neat program of the day: bat

    "A cat(1) clone with wings."

    github.com/sharkdp/bat

    Adds the built-in ability to colorize and format terminal output with a number of options. Multi-line output uses `less`.

    For the fish shell... To setup colorized man pages with a percent displayed/total lines indicator, I added to my `config.fish`:

    # Strip terminal backspaces before piping to bat
    set -gx MANPAGER "sh -c 'col -bx | bat -l man -p'"
    set -gx LESS "-M +Gg"

  4. Neat program of the day: bat

    "A cat(1) clone with wings."

    github.com/sharkdp/bat

    Adds the built-in ability to colorize and format terminal output with a number of options. Multi-line output uses `less`.

    For the fish shell... To setup colorized man pages with a percent displayed/total lines indicator, I added to my `config.fish`:

    # Strip terminal backspaces before piping to bat
    set -gx MANPAGER "sh -c 'col -bx | bat -l man -p'"
    set -gx LESS "-M +Gg"

    #FishShell #RunBSD #Linux

  5. صدر الإصدار الجديد 4.8 من واجهة الأوامر fish، مع تحسينات جوهرية تشمل استبدال نظام الترجمة GNU gettext بنظام Fluent في الأكواد المكتوبة بلغة Rust. يعالج التحديث مشكلات استقرار سجل الأوامر ويحسن عرض المطالبات عبر تجاهل أحرف التحكم. كما أضاف الأمر cd خيارات جديدة للتعامل مع الروابط الرمزية، وطور ميزة توسيع الاختصارات وإكمال الأوامر. تهدف هذه التغييرات لتعزيز تجربة المستخدم وتوفير بيئة عمل أكثر سلاسة وتوافقاً مع الأنظمة البرمجية الحديثة.

    #fishshell #Rust #Update

  6. Updated my post with more details about how I switch my user shell from `sh` to `fish`.

    dwarmstrong.org/freebsd-after-

  7. I’m a simple Fish Shell user. I like the autocomplete. I don’t have to configure anything. Searching history works better than bash (and frankly better than PowerShell)

    What’s the hype with zsh? Why not just use Bash with something like Atuin to get better history search? Why even use fish?

    What I am asking is, should I just use zsh? What makes zsh better than fish for a simple basic shell user. Light scripting, etc.

    #askfedi #zsh #fishshell #bash #linux #runbsd

  8. I’m a simple Fish Shell user. I like the autocomplete. I don’t have to configure anything. Searching history works better than bash (and frankly better than PowerShell)

    What’s the hype with zsh? Why not just use Bash with something like Atuin to get better history search? Why even use fish?

    What I am asking is, should I just use zsh? What makes zsh better than fish for a simple basic shell user. Light scripting, etc.

    #askfedi #zsh #fishshell #bash #linux #runbsd

  9. 💻 Fish 4.7: la shell per Linux e macOS con autocompletamento nativo, syntax highlighting e variabili universali già dal primo avvio
    gomoot.com/fish-4-7-una-shell-

    #fishshell #Linux #mac #opensource #Rust

  10. I was going through my previous SSD's files and checking whether I had some lingering branches in my 88 repos so I devised a silly little fish script:

    for folder in *
    pushd $folder
    # If current git branch is not master, main or dev
    if string match --invert --regex "\\\* master|\\\* main|\\\* dev" (git branch)
    echo (pwd) \n
    end
    popd
    end

    Now I know exactly which repos are still in a branch that I might have never pushed (and I also get a list of other existing branches in each repo).

    #FishShell

  11. Estuve probando #fishshell pero no me reconocía el #nvm, al final decidí volver a #zsh, el objetivo era simplificar las cosas pero se estaban complicando más que antes.

  12. 🚀 My CachyOS (Arch based) setup script using the Fish shell. Saves so much time when doing full system installs!

    Installs yay, core/AUR apps, NFS mounts, auto-update, and more!

    Adapt as needed for your network and package preferences.

    Tip: Rename the script from .txt to .fish for direct use with Fish shell.

    #Linux #Arch #CachyOS #fishshell #dotfiles #Automation
  13. 🚀 My CachyOS (Arch based) setup script using the Fish shell. Saves so much time when doing full system installs!

    Installs yay, core/AUR apps, NFS mounts, auto-update, and more!

    Adapt as needed for your network and package preferences.

    Tip: Rename the script from .txt to .fish for direct use with Fish shell.

    #Linux #Arch #CachyOS #fishshell #dotfiles #Automation
  14. Got side tracked setting up Fish shell today and made some little ascii fish friends
    codeberg.org/zacharesmer/fish-

    #fishshell #asciiart

  15. (more Linux news in original post)

    VKD3D-Proton 3.0.1 brings many Linux gaming enhancements for Direct3D 12 via Vulkan:
    gamingonlinux.com/2026/05/vkd3

    D7VK 1.9 brings 2D upgrades for classic Direct3D games on Linux:
    gamingonlinux.com/2026/05/d7vk

    Proton Experimental gets fixes for Rocket League, Crimson Desert, Helldivers 2 and more:
    gamingonlinux.com/2026/05/prot

    Goverlay 1.8.1 Update Fixes Missing Icons and Adds a Clear Configuration Button:
    linuxcompatible.org/story/gove

    TUXEDO BM 15 Is an Upgradable Business Linux Laptop with Smartcard and 4G LTE:
    9to5linux.com/tuxedo-bm-15-is-

    Fish shell 4.7 refines interactivity, shell history, UI consistency, completions, and more:
    alternativeto.net/news/2026/5/

    Mesa 26.1 Open-Source Graphics Stack Officially Released, Here’s What’s New:
    9to5linux.com/mesa-26-1-open-s

    Dirty Frag Linux Kernel Flaw Allows Local Privilege Escalation, Patch Now:
    9to5linux.com/dirty-frag-linux

    Linux Liquorix Kernel 7.0-5 Brings Faster Responsiveness to Linux Desktops and Gaming Rigs:
    linuxcompatible.org/story/liqu

    Linux Kernel Update Fixes Networking Bug in Versions 5.15.206 and 6.1.172:
    linuxcompatible.org/story/linu

    Flatpak 1.17.7 released:
    github.com/flatpak/flatpak/rel

    (FOSS news in comments)

    #WeeklyNews #News #Linux #LinuxNews #VKD3D #D7VK #ProtonExperimental #Goverlay #TUXEDO #LinuxLaptop #FishShell #Mesa #DirtyFrag #LinuxKernel #Security #LiquorixKernel #Flatpak #LinuxGaming #FosseryTech

  16. (more Linux news in original post)

    VKD3D-Proton 3.0.1 brings many Linux gaming enhancements for Direct3D 12 via Vulkan:
    gamingonlinux.com/2026/05/vkd3

    D7VK 1.9 brings 2D upgrades for classic Direct3D games on Linux:
    gamingonlinux.com/2026/05/d7vk

    Proton Experimental gets fixes for Rocket League, Crimson Desert, Helldivers 2 and more:
    gamingonlinux.com/2026/05/prot

    Goverlay 1.8.1 Update Fixes Missing Icons and Adds a Clear Configuration Button:
    linuxcompatible.org/story/gove

    TUXEDO BM 15 Is an Upgradable Business Linux Laptop with Smartcard and 4G LTE:
    9to5linux.com/tuxedo-bm-15-is-

    Fish shell 4.7 refines interactivity, shell history, UI consistency, completions, and more:
    alternativeto.net/news/2026/5/

    Mesa 26.1 Open-Source Graphics Stack Officially Released, Here’s What’s New:
    9to5linux.com/mesa-26-1-open-s

    Dirty Frag Linux Kernel Flaw Allows Local Privilege Escalation, Patch Now:
    9to5linux.com/dirty-frag-linux

    Linux Liquorix Kernel 7.0-5 Brings Faster Responsiveness to Linux Desktops and Gaming Rigs:
    linuxcompatible.org/story/liqu

    Linux Kernel Update Fixes Networking Bug in Versions 5.15.206 and 6.1.172:
    linuxcompatible.org/story/linu

    Flatpak 1.17.7 released:
    github.com/flatpak/flatpak/rel

    (FOSS news in comments)

    #WeeklyNews #News #Linux #LinuxNews #VKD3D #D7VK #ProtonExperimental #Goverlay #TUXEDO #LinuxLaptop #FishShell #Mesa #DirtyFrag #LinuxKernel #Security #LiquorixKernel #Flatpak #LinuxGaming #FosseryTech

  17. Updated post!

    I like to install `keychain` to manage my SSH keys. When logging in for the first time after boot, it prompts me for the passphrase to unlock my key, then will maintain a single `ssh-agent` process across multiple login sessions.

    Added a note about setting up keychain to launch at login for the fish shell.

    dwarmstrong.org/freebsd-ssh-ke

  18. Updated post!

    I like to install `keychain` to manage my SSH keys. When logging in for the first time after boot, it prompts me for the passphrase to unlock my key, then will maintain a single `ssh-agent` process across multiple login sessions.

    Added a note about setting up keychain to launch at login for the fish shell.

    dwarmstrong.org/freebsd-ssh-ke

    #SSH #FishShell #FreeBSD #RunBSD

  19. Updated post!

    I added a note about switching the user shell from 'sh' to 'fish'.

    dwarmstrong.org/freebsd-after-

  20. Someone here posted about the #Starship prompt for the terminal once. I liked it a lot and decided to try. Then I found out #iTerm2 - a better terminal emulator. Then there were themes, color schemes, and finally, I discovered #Fish shell.

    I now want to spend more time in my terminal than in UI.

    Starship prompt: starship.rs
    Fish shell: fishshell.com
    iTerm2: iterm2.com

    #terminalEmulator #FishShell #StarshipPrompt #terminal #console #homelab

  21. Someone here posted about the #Starship prompt for the terminal once. I liked it a lot and decided to try. Then I found out #iTerm2 - a better terminal emulator. Then there were themes, color schemes, and finally, I discovered #Fish shell.

    I now want to spend more time in my terminal than in UI.

    Starship prompt: starship.rs
    Fish shell: fishshell.com
    iTerm2: iterm2.com

    #terminalEmulator #FishShell #StarshipPrompt #terminal #console #homelab

  22. Hey #fishshell fans: fish_update_completions is an astoundingly useful command that I just discovered today.

    It searches all your man pages and generates completions for any commands that may have been installed since you installed fish. I might need to run this on a scheduled basis. #linux

  23. Hey #fishshell fans: fish_update_completions is an astoundingly useful command that I just discovered today.

    It searches all your man pages and generates completions for any commands that may have been installed since you installed fish. I might need to run this on a scheduled basis. #linux

  24. How marginal are you?

    Me: Firefox, Thunderbird, Android, Pear Launcher, Fedora Linux, COSMIC desktop, Fish shell, Mastodon

    Somewhere between “mainstream-adjacent” and “fully self-inflicted” 😄

  25. How marginal are you?

    Me: Firefox, Thunderbird, Android, Pear Launcher, Fedora Linux, COSMIC desktop, Fish shell, Mastodon

    Somewhere between “mainstream-adjacent” and “fully self-inflicted” 😄

    #Linux #Fedora #COSMIC #FishShell #Firefox #Thunderbird #Android #Fediverse

  26. (more Linux news in previous posts)

    Proton Experimental brings fixes for Crimson Desert, Steam Overlay with EA games, Death Stranding 2:
    gamingonlinux.com/2026/03/prot

    GE-Proton 10-34 brings fixes for God of War Ragnarök, Assassin's Creed, Final Fantasy XIV:
    gamingonlinux.com/2026/03/ge-p

    D7VK version 1.6 gets improved vertex processing and VSync handling:
    gamingonlinux.com/2026/03/d7vk

    Pine64 teases PineTime Pro with AMOLED, GPS and ‘custom’ chip:
    omgubuntu.co.uk/2026/03/pine64

    GTK3 Toolkit Winding Down To One Release Per Year:
    phoronix.com/news/GTK3-Annual-

    Qt 6.11 Toolkit Released With "The Same 3D Capabilities As A Game Engine":
    phoronix.com/news/Qt-6.11-Tool

    wlroots 0.20 Released,Sway 1.12-rc1 Available For Testing With Color Management:
    phoronix.com/news/wlroots-0.20

    Fish 4.6 Shell Brings Support For Recent systemd Environment Variables:
    phoronix.com/news/Fish-4.6-Rel

    GStreamer 1.30 to Support HDR10+ Metadata Parsing from H.265 & AV1 Bitstreams:
    9to5linux.com/gstreamer-1-30-t

    Mesa 26.0 Will Make It In Time For The Fedora 44 Release:
    phoronix.com/news/Mesa-26.0-Fo

    NVIDIA 595 Linux Graphics Driver Released as Latest Production Branch Version:
    9to5linux.com/nvidia-595-linux

    Electron's Investment Into Good Wayland Support:
    phoronix.com/news/Electron-Goo

    (FOSS news in comments)

    #WeeklyNews #News #Linux #LinuxNews #Proton #ProtonExperimental #GEProton #D7VK #Pine64 #PineTime #PineTimePro #GTK #GTK3 #Qt #wlroots #FishShell #GStreamer #Mesa #NVIDIA #NVIDIADriver #Electron #Smartwatch #LinuxSmartwatch #FosseryTech

  27. (more Linux news in previous posts)

    Proton Experimental brings fixes for Crimson Desert, Steam Overlay with EA games, Death Stranding 2:
    gamingonlinux.com/2026/03/prot

    GE-Proton 10-34 brings fixes for God of War Ragnarök, Assassin's Creed, Final Fantasy XIV:
    gamingonlinux.com/2026/03/ge-p

    D7VK version 1.6 gets improved vertex processing and VSync handling:
    gamingonlinux.com/2026/03/d7vk

    Pine64 teases PineTime Pro with AMOLED, GPS and ‘custom’ chip:
    omgubuntu.co.uk/2026/03/pine64

    GTK3 Toolkit Winding Down To One Release Per Year:
    phoronix.com/news/GTK3-Annual-

    Qt 6.11 Toolkit Released With "The Same 3D Capabilities As A Game Engine":
    phoronix.com/news/Qt-6.11-Tool

    wlroots 0.20 Released,Sway 1.12-rc1 Available For Testing With Color Management:
    phoronix.com/news/wlroots-0.20

    Fish 4.6 Shell Brings Support For Recent systemd Environment Variables:
    phoronix.com/news/Fish-4.6-Rel

    GStreamer 1.30 to Support HDR10+ Metadata Parsing from H.265 & AV1 Bitstreams:
    9to5linux.com/gstreamer-1-30-t

    Mesa 26.0 Will Make It In Time For The Fedora 44 Release:
    phoronix.com/news/Mesa-26.0-Fo

    NVIDIA 595 Linux Graphics Driver Released as Latest Production Branch Version:
    9to5linux.com/nvidia-595-linux

    Electron's Investment Into Good Wayland Support:
    phoronix.com/news/Electron-Goo

    (FOSS news in comments)

    #WeeklyNews #News #Linux #LinuxNews #Proton #ProtonExperimental #GEProton #D7VK #Pine64 #PineTime #PineTimePro #GTK #GTK3 #Qt #wlroots #FishShell #GStreamer #Mesa #NVIDIA #NVIDIADriver #Electron #Smartwatch #LinuxSmartwatch #FosseryTech

  28. All these quality of life improvements in . 😍 Congrats to the whole team for 1.3.

    The native notification on command finish! I've had a plugin for I don't know how many years for this... I'm going to need to test this magic. 😎

    ghostty.org/docs/install/relea

  29. All these quality of life improvements in #ghostty. 😍 Congrats to the whole team for 1.3.

    The native notification on command finish! I've had a #fishshell plugin for I don't know how many years for this... I'm going to need to test this magic. 😎

    ghostty.org/docs/install/relea

  30. (more Linux news in original post)

    System76 Preparing To Introduce Redesigned Thelio Hardware:
    phoronix.com/news/System76-The

    PipeWire 1.6 Released with Support for Audio Channel Layouts, LDAC Decoder:
    9to5linux.com/pipewire-1-6-rel

    DNF 5.4 Released With Some New Options & AI Contributions Policy:
    phoronix.com/news/DNF-5.4-Rele

    TrueNAS 25.10.2 brings 100+ fixes, OpenZFS 2.3.4, and NVMe-oF support:
    alternativeto.net/news/2026/2/

    It's now easier to install MGSHDFix for Metal Gear games on Linux / Steam Deck:
    gamingonlinux.com/2026/02/its-

    GE-Proton 10-31 brings fixes for Arknights: Endfield, Duet Night Abyss and more:
    gamingonlinux.com/2026/02/ge-p

    Lutris 0.5.20 Game Manager Adds Support for Importing Commodore 64 ROMs:
    9to5linux.com/lutris-0-5-20-ga

    Fish 4.5.0 fixes Vi mode regressions and drops terminfo dependency:
    alternativeto.net/news/2026/2/

    Intel Hiring More Linux Developers - Including For GPU Drivers / Linux Gaming Stack:
    phoronix.com/news/Intel-Linux-

    wlroots 0.20 Nears Release With New Protocols, Enhanced Vulkan Renderer:
    phoronix.com/news/wlroots-0.20

    Linux Begins Seeing Early Preparations For PCIe 7.0:
    phoronix.com/news/Linux-Early-

    KVM In Linux 7.0 Adds Support For Virtualizing AMD ERAPS:
    phoronix.com/news/Linux-7.0-KVM

    Experimental code ready for testing to enable HDMI 2.1 FRL with AMDGPU on Linux:
    gamingonlinux.com/2026/02/expe

    Apple M3 With Asahi Linux Continues Making Progress, No ETA Yet For Shipping:
    phoronix.com/news/Apple-M3-Asa

    NTFS3 Driver Sees Improvements In Linux 7.0 While "NTFS Remake" Driver Bakes:
    phoronix.com/news/NTFS3-Linux-

    Linux 7.0 Merges The Code To Replace The Tux Boot Logo At Build Time:
    phoronix.com/news/Linux-7.0-FB

    exFAT Achieves Better Sequential Read Performance With Linux 7.0:
    phoronix.com/news/Linux-7.0-ex

    Linux 7.0 Makes Preparations For Rust 1.95:
    phoronix.com/news/Linux-7.0-Ru

    AppArmor Enhancements Merged For Linux 7.0:
    phoronix.com/news/Linux-7.0-Ap

    (FOSS news in comments)

    #WeeklyNews #News #Linux #LinuxNews #News #PipeWire #DNF #System76 #TrueNAS #GEProton #Lutris #FishShell #wlroots #KVM #LinuxKernel #AsahiLinux #NTFS3 #exFAT #AppArmor #FosseryTech

  31. (more Linux news in original post)

    System76 Preparing To Introduce Redesigned Thelio Hardware:
    phoronix.com/news/System76-The

    PipeWire 1.6 Released with Support for Audio Channel Layouts, LDAC Decoder:
    9to5linux.com/pipewire-1-6-rel

    DNF 5.4 Released With Some New Options & AI Contributions Policy:
    phoronix.com/news/DNF-5.4-Rele

    TrueNAS 25.10.2 brings 100+ fixes, OpenZFS 2.3.4, and NVMe-oF support:
    alternativeto.net/news/2026/2/

    It's now easier to install MGSHDFix for Metal Gear games on Linux / Steam Deck:
    gamingonlinux.com/2026/02/its-

    GE-Proton 10-31 brings fixes for Arknights: Endfield, Duet Night Abyss and more:
    gamingonlinux.com/2026/02/ge-p

    Lutris 0.5.20 Game Manager Adds Support for Importing Commodore 64 ROMs:
    9to5linux.com/lutris-0-5-20-ga

    Fish 4.5.0 fixes Vi mode regressions and drops terminfo dependency:
    alternativeto.net/news/2026/2/

    Intel Hiring More Linux Developers - Including For GPU Drivers / Linux Gaming Stack:
    phoronix.com/news/Intel-Linux-

    wlroots 0.20 Nears Release With New Protocols, Enhanced Vulkan Renderer:
    phoronix.com/news/wlroots-0.20

    Linux Begins Seeing Early Preparations For PCIe 7.0:
    phoronix.com/news/Linux-Early-

    KVM In Linux 7.0 Adds Support For Virtualizing AMD ERAPS:
    phoronix.com/news/Linux-7.0-KVM

    Experimental code ready for testing to enable HDMI 2.1 FRL with AMDGPU on Linux:
    gamingonlinux.com/2026/02/expe

    Apple M3 With Asahi Linux Continues Making Progress, No ETA Yet For Shipping:
    phoronix.com/news/Apple-M3-Asa

    NTFS3 Driver Sees Improvements In Linux 7.0 While "NTFS Remake" Driver Bakes:
    phoronix.com/news/NTFS3-Linux-

    Linux 7.0 Merges The Code To Replace The Tux Boot Logo At Build Time:
    phoronix.com/news/Linux-7.0-FB

    exFAT Achieves Better Sequential Read Performance With Linux 7.0:
    phoronix.com/news/Linux-7.0-ex

    Linux 7.0 Makes Preparations For Rust 1.95:
    phoronix.com/news/Linux-7.0-Ru

    AppArmor Enhancements Merged For Linux 7.0:
    phoronix.com/news/Linux-7.0-Ap

    (FOSS news in comments)

    #WeeklyNews #News #Linux #LinuxNews #News #PipeWire #DNF #System76 #TrueNAS #GEProton #Lutris #FishShell #wlroots #KVM #LinuxKernel #AsahiLinux #NTFS3 #exFAT #AppArmor #FosseryTech

  32. (more Linux news in original post)

    GNU Coreutils 9.10 Released With Many Improvements:
    phoronix.com/news/GNU-Coreutil

    Rust Coreutils 0.6 Brings Increased Compatibility, Removing Some Unsafe Code & More Perf:
    phoronix.com/news/Rust-Coreuti

    Resources 1.10 can now monitor AMD NPU usage on Linux:
    omgubuntu.co.uk/2026/02/resour

    CLI shell Fish 4.4 brings Vi mode improvements, new color themes, and other enhancements:
    alternativeto.net/news/2026/2/

    Reworked NTFS Linux Driver Posted With More Improvements & Fixes:
    phoronix.com/news/NTFS-Remake-

    Linux 6.19-rc8 Released Ahead Of Linux 6.19 Stable Next Week:
    phoronix.com/news/Linux-6.19-r

    Framework 13 To See Fan Target & Fan Temperature Thresholds Support With Linux 7.0:
    phoronix.com/news/Framework-13

    Linux's b4 Kernel Development Tool Now Dog-Feeding Its AI Agent Code Review Helper:
    phoronix.com/news/Linux-b4-Too

    ML-LIB: Machine Learning Library Proposed For The Linux Kernel:
    phoronix.com/news/Linux-Kernel

    X.Org Developers Conference 2026 Being Hosted By Arm In Toronto:
    phoronix.com/news/XDC2026-Toro

    Mesa 25.3.5 Brings Vulkan Driver Fixes & Other Minor Changes -- Even For The Old R600g:
    phoronix.com/news/Mesa-25.3.5-

    Mesa 26.0-rc3 Released With More Graphics Driver Fixes:
    phoronix.com/news/Mesa-26.0-rc

    GTK Developers Working On Session Saving Support & Better Accessibility This Year:
    phoronix.com/news/GTK-FOSDEM-2

    (FOSS news in comments)

    #WeeklyNews #News #Linux #LinuxNews #Coreutils #GNUCoreutils #RustCoreutils #NPU #FishShell #LinuxKernel #Framework13 #XOrg #Mesa #GTK #FosseryTech

  33. (more Linux news in original post)

    GNU Coreutils 9.10 Released With Many Improvements:
    phoronix.com/news/GNU-Coreutil

    Rust Coreutils 0.6 Brings Increased Compatibility, Removing Some Unsafe Code & More Perf:
    phoronix.com/news/Rust-Coreuti

    Resources 1.10 can now monitor AMD NPU usage on Linux:
    omgubuntu.co.uk/2026/02/resour

    CLI shell Fish 4.4 brings Vi mode improvements, new color themes, and other enhancements:
    alternativeto.net/news/2026/2/

    Reworked NTFS Linux Driver Posted With More Improvements & Fixes:
    phoronix.com/news/NTFS-Remake-

    Linux 6.19-rc8 Released Ahead Of Linux 6.19 Stable Next Week:
    phoronix.com/news/Linux-6.19-r

    Framework 13 To See Fan Target & Fan Temperature Thresholds Support With Linux 7.0:
    phoronix.com/news/Framework-13

    Linux's b4 Kernel Development Tool Now Dog-Feeding Its AI Agent Code Review Helper:
    phoronix.com/news/Linux-b4-Too

    ML-LIB: Machine Learning Library Proposed For The Linux Kernel:
    phoronix.com/news/Linux-Kernel

    X.Org Developers Conference 2026 Being Hosted By Arm In Toronto:
    phoronix.com/news/XDC2026-Toro

    Mesa 25.3.5 Brings Vulkan Driver Fixes & Other Minor Changes -- Even For The Old R600g:
    phoronix.com/news/Mesa-25.3.5-

    Mesa 26.0-rc3 Released With More Graphics Driver Fixes:
    phoronix.com/news/Mesa-26.0-rc

    GTK Developers Working On Session Saving Support & Better Accessibility This Year:
    phoronix.com/news/GTK-FOSDEM-2

    (FOSS news in comments)

    #WeeklyNews #News #Linux #LinuxNews #Coreutils #GNUCoreutils #RustCoreutils #NPU #FishShell #LinuxKernel #Framework13 #XOrg #Mesa #GTK #FosseryTech

  34. @thelinuxcast Pssst, #fishshell has abbreviations that can do completely the same but are better usable, as they actually expand into the original code.

    #propaganda 🐟

  35. It's time for a new blog article!

    This time, I present some #tips and tricks for the #FishShell inspired by a recent video from Dreams of Code on Youtube.

    beeb.li/blog/fish-shell-tips-a

    #fish_shell #shell #FOSS #blog #BlogPost #SmallWeb