fzf-scripts
This is a collection of scripts I've written that use fzf
Almost all of them require various tools from coreutils like awk sed cut, and probably make use of GNU extensions.
dkr
an interactive wrapper around some docker commands
fv
Lists or searches for files and opens them with a command, defaults to vim. Kind of a shortcut for vim $(ag 'foo' | fzf), lists files if no search string is given.
fzgit
Interactive git wrapper. Very much still a work in progress, but it has some very cool functions already.
depends on git and perl
fzaur
Search and install packages from the Arch User Repository (AUR). Clones the package, opens the PKGBUILD for review, and runs makepkg -si.
depends on curl, jq, and git
fzbuku
A small wrapper around buku to search bookmarks
fzmp
Lists and searches for songs in an MPD library by artist, album, or playlist. I wrote a blog post about writing this script.
depends on mpc
fzmv
Interactively move files. It was originally just an experiment to see what it would be like to make a file explorer with fzf.
fzrepl
runs stdin against programs like sed, awk, jq and shows the result in the preview window
ddgsearch
A wrapper around ddgr to search the web using DuckDuckGo.
Accepts all ddgr command line arguments. For example, to search Wikipedia for "hello world":
ddgsearch \!w hello worlddepends on jq and ddgr
fztop
Interactive process viewer using fzf. Allows searching and killing processes with ctrl-x (SIGTERM) or F9 (SIGKILL).
gitup
Search for git repositories and pull updates in parallel. Supports multiple directories and can run non-interactively with -F.
depends on git
igr
Interactive grep/rg wrapper
ix
Uploads files to ix.io and allows listing and editing of uploads.
depends on curl
js
Searches npmjs.com and installs packages with yarn if available or npm.
depends on npm and jq
pkgsearch
Searches repos and installs multiple packages. Currently works with Debian, Ubuntu and Arch, and experimental support for Fedora and Void.
pkgrm
Lists and removes packages, optionally sorts by size.
depends on pacman
pkgup
Interactively select and upgrade packages. Works with various AUR helpers (pacaur, trizen, packer, apacman) or falls back to pacman.
sshget
Lists files from remote servers and rsyncs them to the current directory
wifi
List and connect to wifi networks
depends on nmcli
Install
Clone the repo and use make install:
# Install to /usr/local/bin (requires sudo)
sudo make install
# Or install to ~/.local/bin
make PREFIX=~/.local install
# Install a single script
make install-fzgit
# Uninstall
make uninstall
make uninstall-fzgit
# or with PREFIX
make PREFIX=~/.local uninstallNotable Mentions
- fzf-tab - use fzf to tab-complete everything in zsh
- forgit - zsh alternative to/inspiration for fzgit
Legal
Copyright (C) 2023 Ronald Joe Record ronaldrecord@gmail.com
Copyright (C) 2016 Daniel F Gray DanielFGray@gmail.com
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.