mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 00:47:30 +00:00
04d7d89020
Of note: The rpm/yum thing seems to be coupled, so I put it into one function that tries the yum helper and uses the rpm path otherwise. Zypper is already its own thing, so this should only be used for yum and probably dnf (does that still have the helper?) Zypper can be dropped, as that already used a separate function in the file. Apk can just be inlined - it's literally one line for installed and another for all packages.
28 lines
759 B
Fish
28 lines
759 B
Fish
function __fish_print_pacman_packages
|
|
# Caches for 5 minutes
|
|
type -q -f pacman || return 1
|
|
|
|
argparse i/installed -- $argv
|
|
or return 1
|
|
|
|
set -l xdg_cache_home (__fish_make_cache_dir)
|
|
or return
|
|
|
|
if not set -q _flag_installed
|
|
set -l cache_file $xdg_cache_home/.pac-cache.$USER
|
|
if test -f $cache_file
|
|
cat $cache_file
|
|
set -l age (math (date +%s) - (stat -c '%Y' $cache_file))
|
|
set -l max_age 250
|
|
if test $age -lt $max_age
|
|
return
|
|
end
|
|
end
|
|
# prints: <package name> Package
|
|
pacman -Ssq | sed -e 's/$/\t'Package'/' >$cache_file &
|
|
return 0
|
|
else
|
|
pacman -Q | string replace ' ' \t
|
|
return 0
|
|
end
|
|
end
|