dotfiles-remastered/.local/share/scripts/pacman-install.sh
2020-06-17 21:33:58 +02:00

7 lines
120 B
Bash
Executable File

#!/usr/bin/env sh
PKG=$(pacman -Slq | fzf --preview 'pacman -Si {1}')
if [ -n "$PKG" ]; then
sudo pacman -S "$PKG"
fi