VERSION 1.0 🥳 #7
2
PKGBUILD
2
PKGBUILD
|
@ -1,7 +1,7 @@
|
||||||
# Maintainer: Eric Lay <ericlaytm@gmail.com>
|
# Maintainer: Eric Lay <ericlaytm@gmail.com>
|
||||||
# Contributor: Yochananmarqos
|
# Contributor: Yochananmarqos
|
||||||
pkgname=fuzzy-pkg-finder
|
pkgname=fuzzy-pkg-finder
|
||||||
pkgver=0.9.9
|
pkgver=1.0
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="Simple cli command for using fzf to search and install packages"
|
pkgdesc="Simple cli command for using fzf to search and install packages"
|
||||||
arch=('x86_64' 'aarch64' 'armv7h')
|
arch=('x86_64' 'aarch64' 'armv7h')
|
||||||
|
|
30
README.md
30
README.md
|
@ -8,7 +8,7 @@
|
||||||
\
|
\
|
||||||
![Screenshot](https://gitlab.com/airclay/fuzzy-pkg-finder/-/raw/master/fpf.png) \
|
![Screenshot](https://gitlab.com/airclay/fuzzy-pkg-finder/-/raw/master/fpf.png) \
|
||||||
\
|
\
|
||||||
Leverages the power of fzf to search package names and presents complete package information in preview pane. \
|
Leverages the power of fzf to search package names and descriptions then presents complete package information in preview pane. \
|
||||||
On selection will hand off to Pacman or Paru/Yay to complete transaction. \
|
On selection will hand off to Pacman or Paru/Yay to complete transaction. \
|
||||||
\
|
\
|
||||||
*For use with Pacman/Yay/Paru package managers only.*\
|
*For use with Pacman/Yay/Paru package managers only.*\
|
||||||
|
@ -26,20 +26,32 @@ makepkg -sric
|
||||||
\
|
\
|
||||||
Usage:
|
Usage:
|
||||||
```
|
```
|
||||||
Syntax: fpf -[a|l|la|R|o|h]
|
Syntax: fpf [-a| --aur] [-l| --list-installed] [-la| --list-aur-installed]
|
||||||
|
[R| --remove] [-o| --orphans] [-h | --help]
|
||||||
Defaults to Pacman if no options passed
|
Defaults to Pacman if no options passed
|
||||||
|
|
||||||
Searching for a package:
|
Searching for a package:
|
||||||
ex: fpf [pkg name] for official repo search
|
ex: fpf [pkg name] for official repo search
|
||||||
ex: fpf -a [pkg name] for aur search
|
ex: fpf -a [pkg name] for aur search
|
||||||
|
|
||||||
options:
|
Options:
|
||||||
-a Search/List and install from AUR with Yay
|
-a, --aur
|
||||||
-l Search/List installed packages from official repo
|
Search/List and install from AUR with Yay
|
||||||
-la Search/List installed packages from AUR
|
|
||||||
-R Search/List installed packages for removal
|
-l, --list-installed
|
||||||
-o Search/List orphaned packages for removal
|
Search/List installed packages from official repo
|
||||||
-h Print this help screen.
|
|
||||||
|
-la, --list-aur-installed
|
||||||
|
Search/List installed packages from AUR
|
||||||
|
|
||||||
|
-R, -remove
|
||||||
|
Search/List installed packages for removal
|
||||||
|
|
||||||
|
-o, --orphans
|
||||||
|
Search/List orphaned packages for removal
|
||||||
|
|
||||||
|
-h, --help
|
||||||
|
Print this help screen
|
||||||
```
|
```
|
||||||
\
|
\
|
||||||
Keybinds:
|
Keybinds:
|
||||||
|
|
Loading…
Reference in New Issue