fzpac icon indicating copy to clipboard operation
fzpac copied to clipboard

🔎 Arch Linux package finder with fzf

Results 4 fzpac issues
Sort by recently updated
recently updated
newest added

[feature request] Add option to also fzf the Description of Packages. In my example I'd love to be able to search for "TUI' and "Database" ![image](https://user-images.githubusercontent.com/43231640/213006862-d1eeee89-1b41-425b-abff-009853279280.png)

Remove extra dependencies(cat, env, which), but maybe these are installed in almost all environments... This makes a little bit fast this command invocation because no external command loads.

`pacman -Si PKGNAME` からURLを取得してブラウザで開けるようにしたい ## ワンライナーの例 ```bash pacman -Ssq | fzf --multi | LANG=C pacman -Si - | awk '/^URL/{print $3}' | xargs -I@ -- xdg-open @ >/dev/null ``` ##...

enhancement