Wer einmal **fzf** nutzt, will nie zurück! 🔍

Fuzzy Finder für History, Dateien & Prozesse. In Sekunden genau das finden, was du suchst. Must-Have für CLI-Effizienz!

Heute unser Tipp im #toolsday!

Link: https://github.com/junegunn/fzf

#fzf #Terminal #RadioTux #toolsday #CLI #Productivity #Linux

GitHub - junegunn/fzf: :cherry_blossom: A command-line fuzzy finder

:cherry_blossom: A command-line fuzzy finder. Contribute to junegunn/fzf development by creating an account on GitHub.

GitHub

Going barless and minimal: My journey to a zero-shell, keyboard-driven Hyprland setup

As you may know, I have been aiming for a no-bar, no-shell (Quickshell etc.) and no-heavy GUI setup for a while.

For a week now, I have not used Waybar, Rofi, Thunar, Overskride, nm-tui or Swaync, along with a few other apps that did not suit my lightweight, fanless laptop setup. In fact, I have completely removed all of them from my system.
#Linux #Hyprland #zsh #fzf #MinimalArchSetup #ArchLinux #Python

#WeeklyBrainDump is up. I actually had energy this week so there's been movement and fun experiments had!

- FZap is being built, a CLI launcher built around #FZF
- RFuseFS let me build a filesystem using #Ruby

https://sean.taylormadetech.dev/2026/05/21/weekly-brain-dump-23.html

#Blog #Development #TechNews #IndieDev

Sean - Weekly Brain Dump #23

Fzap: My FZF shenanigans continue RFuseFS: I wrote a filesystem in Ruby Interesting Links: Cool things I found this week

@loon Following up on this, I'm now remembering how annoying I find the "modes" model of rofi, really from the first time you run it without args.

One of the architectural decisions I love about #dmenu (and where my preferences overlap with Suckless in general) is that dmenu itself doesn't care what you're picking between or what you do with it, kinda same model as #fzf. This means that dmenu_run can be a pretty trivial wrapper script that, if pressed, you could probably faithfully rewrite in 20 minutes, give or take the caching feature.

Rofi, on the other hand, incorporates that complexity into a single do-everything program that becomes immediately byzantine to understand or navigate. I bet you could achieve 90% of the same functionality by having an input standard (even something like JSON) that's more advanced than mere lines, allowing for icons and such, while outsourcing the mode-specific complexity.

The one thing I do like, though, is that you can search by program description, like "term".

Rofi / Wofi : Pourquoi j'ai pas découvert ça avant

https://videos.stackgui.de/w/nfaz7w5ZNeFQUs5Cz47jRP

Rofi / Wofi : Pourquoi j'ai pas découvert ça avant

PeerTube

Petite fonction #bash pour trouver un texte dans les fichiers parmi ceux du répertoire actuel, montrer les résultats dans #fzf et ouvrir la sélection dans un éditeur de texte, ici #gedit

where () {
DOSSIER=$PWD
RESULTATS=$(rg -n -i --glob "*.{org,md,txt}" "$1" "$DOSSIER")
SELECTION=$(echo "$RESULTATS" | fzf --prompt "Sélectionner un fichier : ")
FICHIER=$(echo "$SELECTION" | cut -d: -f1)
LIGNE=$(echo "$SELECTION" | cut -d: -f2)
if [ -n "$FICHIER" ]
then
gedit +$LIGNE "$FICHIER"

fi
}

Mining Your History with XC -
Found a goldmine of a command in your history from three days ago?
Use `xc select` to pull up your shell history in a fuzzy-finder, pick the one-liner you need, and save it to your active vault with a proper human readable description in any language you wish.

https://github.com/Rakosn1cek/xc-manager

#Terminal #Productivity #FZF #Linux #MacOS #devOps #SysAdmin #XC #Zsh #FOSS

XC doesn't just run scripts, it hooks into the #Zsh Line Editor (ZLE).
By using custom widgets, it injects commands directly into your buffer.
It’s the difference between a clunky sub-shell and a tool that feels like a native extension of your fingers.
Stop using old school messy cheat-sheets.
#Linux #fzf #cli #commandline #SelfHosted #shell #Terminal
GitHub: https://github.com/Rakosn1cek/xc-manager

Short showcase of using FZF in my Fish shell as fuzzy search autocomplete for .ssh/config. #linux #fish #fzf

https://solariz.de/posts/26/04-cli-sshcompletion-atuin/

FZF+Fish are great in SSH-Completion

I do not want to miss FZF in my linux shell in general, a great tool for parsing things like listing or history with a fuzzy search. But recently I added the functionality to use it for fuzzy search my ssh config too.

solariz.de - Tech & Thoughts
Git and Fzf Match Made In Heaven!

Well, both the tools are amazing to say the least. While combining them gives a stunning effect of productivity. I have written about Fzf1 and Git2 many times on this blog(go and find out). In this…

Unixbhaskar's Blog