VERSION 1.0 🥳
This commit is contained in:
parent
1ba2367452
commit
81aff500e1
2
PKGBUILD
2
PKGBUILD
|
@ -1,7 +1,7 @@
|
|||
# Maintainer: Eric Lay <ericlaytm@gmail.com>
|
||||
# Contributor: Yochananmarqos
|
||||
pkgname=fuzzy-pkg-finder
|
||||
pkgver=0.9.9
|
||||
pkgver=1.0
|
||||
pkgrel=1
|
||||
pkgdesc="Simple cli command for using fzf to search and install packages"
|
||||
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) \
|
||||
\
|
||||
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. \
|
||||
\
|
||||
*For use with Pacman/Yay/Paru package managers only.*\
|
||||
|
@ -26,20 +26,32 @@ makepkg -sric
|
|||
\
|
||||
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
|
||||
|
||||
Searching for a package:
|
||||
ex: fpf [pkg name] for official repo search
|
||||
ex: fpf -a [pkg name] for aur search
|
||||
|
||||
options:
|
||||
-a Search/List and install from AUR with Yay
|
||||
-l Search/List installed packages from official repo
|
||||
-la Search/List installed packages from AUR
|
||||
-R Search/List installed packages for removal
|
||||
-o Search/List orphaned packages for removal
|
||||
-h Print this help screen.
|
||||
Options:
|
||||
-a, --aur
|
||||
Search/List and install from AUR with Yay
|
||||
|
||||
-l, --list-installed
|
||||
Search/List installed packages from official repo
|
||||
|
||||
-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:
|
||||
|
|
Loading…
Reference in New Issue