fuzzy-pkg-finder/fpf

124 lines
4.6 KiB
Plaintext
Raw Normal View History

2020-06-13 15:24:23 -05:00
#!/usr/bin/bash
### Help
Help() {
2020-06-21 15:59:33 -05:00
echo
echo "Use fzf to search and install with Pacman and Yay"
echo "Defaults to Pacman if no options passed"
echo
2020-06-24 19:01:12 -05:00
echo "Syntax: fpf -[a|l|la|R|Ra|h]"
2020-06-21 15:59:33 -05:00
echo
echo "options:"
echo
2020-06-24 19:01:12 -05:00
echo "a Search/List and install from AUR with Yay"
echo
echo "l Search/List installed packages from official repo"
echo
echo "la Search/List installed packages from AUR repo"
echo
echo "R Search/List installed packages from official repos for removal"
echo
echo "Ra Search/List installed packages from AUR repo for removal"
2020-06-21 15:59:33 -05:00
echo
echo "h Print this help screen."
echo
2020-06-13 15:24:23 -05:00
}
2020-06-23 14:58:21 -05:00
### Manjaro Repo
2020-06-26 19:28:37 -05:00
#Get pkg infos and files lists, bypassing 'sudo pacman -Fy' because entering a password to view pkg info is silly
GetDB() {
wget -P /tmp/core/ https://mirror.datacenter.by/pub/mirrors/manjaro/stable/core/"$type"/core.files.tar.gz >/dev/null 2>&1 && tar xzf /tmp/core/core.files.tar.gz -C /tmp/core 2> /dev/null
}
#Double check things are up to date
UpdateInfos() {
[ -f /tmp/core/core.files.tar.gz ] || GetDB
d1=$(stat -c %y /tmp/core/core.files.tar.gz)
d2=$(stat -c %y /var/lib/pacman/sync/core.db)
d1="${d1:0:10}"
d2="${d2:0:10}"
[[ "${d2///-/}" > "${d1//-/}" ]] && GetDB
}
2020-06-23 15:22:31 -05:00
#Get Manjaro package list, sort, mark installed, preview infos and finally hand off to pacman for install
Mrepo() {
2020-06-22 14:43:06 -05:00
echo "Setting things up..."
2020-06-26 19:28:37 -05:00
sort <(comm -23 <(pacman -Sl | sort) <(pacman -Q | sort)) <(comm -12 <(pacman -Sl | sort) <(pacman -Q | sort) | awk '{$1=""; print $0" \033[32m*\033[0m"}') > /tmp/packages
cat /tmp/packages |fzf -q "$1" -e -m --preview 'cat <(cat /tmp/core/{1}/desc) <(cat /tmp/core/{1}/files)' --preview-window=wrap --layout=reverse --marker='>>' --header="Select packages to install (use TAB to toggle selection)" --info=hidden --ansi | xargs -ro sudo pacman -S
2020-06-24 18:20:28 -05:00
}
# List installed pkgs
Installed() {
sort <(pacman -Qqs) |fzf -q "$1" -e -m --preview 'cat <(pacman -Qi {1}) <(pacman -Fl {1} | awk "{print \$2}")' --preview-window=wrap --layout=reverse --marker='>>' --header="Select packages to install (use TAB to toggle selection)" --info=hidden --ansi | xargs -ro pacman -Qik
}
# Remove installed pkgs
Remove() {
sort <(pacman -Qqs) |fzf -q "$1" -e -m --preview 'cat <(pacman -Si {1}) <(pacman -Fl {1} | awk "{print \$2}")' --preview-window=wrap --layout=reverse --marker='>>' --header="Select packages to install (use TAB to toggle selection)" --info=hidden --ansi | xargs -ro sudo pacman -Rsn
2020-06-23 14:58:21 -05:00
}
### AUR Repo
2020-06-23 15:22:31 -05:00
#Get AUR package database, remove unwanted lines, sort, mark installed, preview infos and finally hand off to yay for install
Arepo() {
2020-06-23 14:58:21 -05:00
wget -P /tmp/aur/ https://aur.archlinux.org/packages.gz >/dev/null 2>&1 && gunzip -f /tmp/aur/packages.gz
echo "$(tail -n +2 /tmp/aur/packages)" > /tmp/aur/packages
2020-06-24 18:20:28 -05:00
sort <(comm -23 <(sort /tmp/aur/packages) <(pacman -Qq | sort)) <(comm -12 <(sort /tmp/aur/packages) <(pacman -Qq | sort) | awk '{print $0" \033[32m*\033[0m"}') > /tmp/aur_packages
cat /tmp/aur_packages | fzf -q "$1" -e -m --preview 'cat <(yay -Si {1}) <(pacman -Ql {1} 2>/dev/null | awk "{print \$2}")' --preview-window=wrap --layout=reverse --marker='>>' --header="Select packages to install (use TAB to toggle selection)" --info=hidden --ansi | xargs -ro yay -S
}
# List installed pkgs from AUR
AurInstalled() {
sort <(pacman -Qqm) |fzf -q "$1" -e -m --preview 'cat <(yay -Qi {1}) <(pacman -Ql {1} | awk "{print \$2}")' --preview-window=wrap --layout=reverse --marker='>>' --header="Select packages to install (use TAB to toggle selection)" --info=hidden --ansi | xargs -ro pacman -Qik
}
# Remove installed pkgs from AUR
Remove() {
sort <(pacman -Qqm) |fzf -q "$1" -e -m --preview 'cat <(yay -Qi {1}) <(pacman -Ql {1} | awk "{print \$2}")' --preview-window=wrap --layout=reverse --marker='>>' --header="Select packages to install (use TAB to toggle selection)" --info=hidden --ansi | xargs -ro sudo pacman -Rsn
2020-06-23 14:58:21 -05:00
}
2020-06-24 18:20:28 -05:00
### ORPHANS
#Orphans() {
#}
2020-06-23 14:58:21 -05:00
### MAIN
# Test for AUR option, if not run with pacman
2020-06-24 18:20:28 -05:00
if [[ ! "$1" =~ "-" ]]; then
2020-06-26 19:28:37 -05:00
UpdateInfos
2020-06-24 18:20:28 -05:00
Mrepo "$1"
2020-06-23 14:58:21 -05:00
else
for opt in "$@"; do
case $opt in
2020-06-24 18:20:28 -05:00
-a|--aur)
2020-06-23 15:22:31 -05:00
echo -e "Syncing AUR package database..."
2020-06-24 18:20:28 -05:00
Arepo "$2"
2020-06-23 15:22:31 -05:00
;;
2020-06-24 18:20:28 -05:00
-l|--list-installed)
Installed "$2"
;;
-la|--list-aur-installed)
AurInstalled "$2"
;;
-o|--orphans)
Orphans "$2"
;;
-R|--remove)
Remove "$2"
;;
-Ra|--remove-aur)
AurRemove "$2"
;;
2020-06-23 14:58:21 -05:00
-h|--help) #Usage // Help
Help
2020-06-24 18:20:28 -05:00
;;
2020-06-23 14:58:21 -05:00
-*) #Error catching
echo "Invalid Usage"
Help
;;
esac
done
fi