parent
8e63a77335
commit
cf83073200
1 changed files with 59 additions and 18 deletions
49
neofetch
49
neofetch
|
@ -214,6 +214,18 @@ mem_precision=2
|
|||
package_managers="on"
|
||||
|
||||
|
||||
# Show separate user and system packages for supported package managers
|
||||
#
|
||||
# Default: 'on'
|
||||
# Values: 'on', 'off'
|
||||
# Flag: --package_separate
|
||||
#
|
||||
# Example:
|
||||
# on: '8 packages (flatpak-system), 9 packages (flatpak-user)'
|
||||
# off: '17 packages (flatpak)'
|
||||
package_separate="on"
|
||||
|
||||
|
||||
# Shell
|
||||
|
||||
|
||||
|
@ -2041,6 +2053,8 @@ get_packages() {
|
|||
# Other (Needs complex command)
|
||||
has kpm-pkg && ((packages+=$(kpm --get-selections | grep -cv deinstall$)))
|
||||
|
||||
# Separate system and user packages
|
||||
if [[ $package_separate == on ]]; then
|
||||
has guix && {
|
||||
manager=guix-system && tot guix package -p /run/current-system/profile -I
|
||||
manager=guix-user && tot guix package -I
|
||||
|
@ -2057,6 +2071,35 @@ get_packages() {
|
|||
manager=nix-default && tot nix-store -qR /nix/var/nix/profiles/default
|
||||
}
|
||||
|
||||
has flatpak && {
|
||||
manager=flatpak-system && tot flatpak list --system
|
||||
manager=flatpak-user && tot flatpak list --user
|
||||
}
|
||||
else
|
||||
has guix && {
|
||||
guix-all() {
|
||||
guix package -p /run/current-system/profile -I
|
||||
guix package -I
|
||||
guix package -p ~/.guix-home/profile -I
|
||||
}
|
||||
manager=guix && tot guix-all
|
||||
}
|
||||
|
||||
has nix-store && {
|
||||
nix-all() {
|
||||
nix-store -qR ~/.nix-profile
|
||||
nix-store -qR /etc/profiles/per-user/"$USER"
|
||||
nix-store -qR /run/current-system/sw
|
||||
nix-store -qR /nix/var/nix/profiles/default
|
||||
}
|
||||
manager=nix && tot nix-all
|
||||
}
|
||||
|
||||
has flatpak && {
|
||||
manager=flatpak && tot flatpak list
|
||||
}
|
||||
fi
|
||||
|
||||
# pkginfo is also the name of a python package manager which is painfully slow.
|
||||
# TODO: Fix this somehow.
|
||||
has pkginfo && tot pkginfo -i
|
||||
|
@ -2079,10 +2122,6 @@ get_packages() {
|
|||
esac
|
||||
|
||||
# List these last as they accompany regular package managers.
|
||||
has flatpak && {
|
||||
manager=flatpak-system && tot flatpak list --system
|
||||
manager=flatpak-user && tot flatpak list --user
|
||||
}
|
||||
has spm && tot spm list -i
|
||||
has puyo && dir ~/.puyo/installed
|
||||
|
||||
|
@ -6072,6 +6111,7 @@ INFO:
|
|||
|
||||
--title_fqdn on/off Hide/Show Fully Qualified Domain Name in title.
|
||||
--package_managers on/off Hide/Show Package Manager names. (on, tiny, off)
|
||||
--package_separate on/off Whether to separate system/user modes for supported package managers
|
||||
--os_arch on/off Hide/Show OS architecture.
|
||||
--speed_type type Change the type of cpu speed to display.
|
||||
Possible values: current, min, max, bios,
|
||||
|
@ -6332,6 +6372,7 @@ get_args() {
|
|||
# Info
|
||||
"--title_fqdn") title_fqdn="$2" ;;
|
||||
"--package_managers") package_managers="$2" ;;
|
||||
"--package_separate") package_separate="$2" ;;
|
||||
"--os_arch") os_arch="$2" ;;
|
||||
"--cpu_cores") cpu_cores="$2" ;;
|
||||
"--cpu_speed") cpu_speed="$2" ;;
|
||||
|
|
Loading…
Reference in a new issue