mirror of
https://github.com/Jguer/yay.git
synced 2025-10-08 00:04:37 -04:00
commit
89586fd23d
@ -17,7 +17,7 @@ Yay was created with a few objectives in mind and based on the design of [yaourt
|
|||||||
|
|
||||||
## Features
|
## Features
|
||||||
- AUR Tab completion
|
- AUR Tab completion
|
||||||
- Download PKGBuild from ABS or AUR
|
- Download PKGBUILD from ABS or AUR
|
||||||
- Ask all questions first and then start building
|
- Ask all questions first and then start building
|
||||||
- Search narrowing (`yay linux header` will first search linux and then narrow on header)
|
- Search narrowing (`yay linux header` will first search linux and then narrow on header)
|
||||||
- No sourcing of PKGBUILD is done
|
- No sourcing of PKGBUILD is done
|
||||||
@ -30,7 +30,7 @@ Yay was created with a few objectives in mind and based on the design of [yaourt
|
|||||||
- `yay -Ps` prints system statistics
|
- `yay -Ps` prints system statistics
|
||||||
- `yay -Pu` prints update list
|
- `yay -Pu` prints update list
|
||||||
- `yay -Yc` cleans unneeded dependencies
|
- `yay -Yc` cleans unneeded dependencies
|
||||||
- `yay -Yg` `yay -g` downloads PKGBuild from ABS or AUR
|
- `yay -Yg` `yay -g` downloads PKGBUILD from ABS or AUR
|
||||||
- `yay -Y --gendb` generates development package DB used for devel updates.
|
- `yay -Y --gendb` generates development package DB used for devel updates.
|
||||||
|
|
||||||
<img src="http://jguer.github.io/yay/yayupgrade.png" width="450">
|
<img src="http://jguer.github.io/yay/yayupgrade.png" width="450">
|
||||||
|
2
cmd.go
2
cmd.go
@ -53,7 +53,7 @@ Print specific options:
|
|||||||
-u --upgrades Print update list
|
-u --upgrades Print update list
|
||||||
|
|
||||||
Yay specific options:
|
Yay specific options:
|
||||||
-g --getpkgbuild Download PKGBuild from ABS or AUR
|
-g --getpkgbuild Download PKGBUILD from ABS or AUR
|
||||||
-c --clean Remove unneeded dependencies
|
-c --clean Remove unneeded dependencies
|
||||||
--gendb Generates development package DB used for updating.
|
--gendb Generates development package DB used for updating.
|
||||||
|
|
||||||
|
2
yay.fish
2
yay.fish
@ -69,7 +69,7 @@ complete -c $progname -n "not $noopt" -l notimeupdate -d 'Check only package ver
|
|||||||
|
|
||||||
# Yay options
|
# Yay options
|
||||||
complete -c $progname -n $yayspecific -s c -l clean -d 'Remove unneeded dependencies' -f
|
complete -c $progname -n $yayspecific -s c -l clean -d 'Remove unneeded dependencies' -f
|
||||||
complete -c $progname -n $yayspecific -s g -l getpkgbuild -d 'Download PKGBuild from ABS or AUR' -xa "$listall" -f
|
complete -c $progname -n $yayspecific -s g -l getpkgbuild -d 'Download PKGBUILD from ABS or AUR' -xa "$listall" -f
|
||||||
complete -c $progname -n $yayspecific -l gendb -d 'Display system package statistics' -f
|
complete -c $progname -n $yayspecific -l gendb -d 'Display system package statistics' -f
|
||||||
|
|
||||||
# Print options
|
# Print options
|
||||||
|
Loading…
x
Reference in New Issue
Block a user