Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions setup
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,15 @@ install_ripgrep() {

install_fd() {
install_package fd-find

# Debian and Ubuntu ship the binary as "fdfind" because "fd" is taken
# by an unrelated package; put the upstream name on PATH
local dest="$HOME/.local/bin"
local fdfind
if fdfind=$(command -v fdfind); then
mkdir -p "$dest"
ln -sf "$fdfind" "$dest/fd"
Comment on lines +339 to +340
fi
}

install_rofi_greenclip() {
Expand Down