fzpac
fzpac copied to clipboard
🔎 Arch Linux package finder with fzf
[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" 
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 ``` ##...