fix pacman name conflict bug

change to type paclog-pkglist

typo
This commit is contained in:
Mitch Weaver 2018-03-07 04:37:29 +01:00
parent 02fff35f35
commit e39cbbff32
1 changed files with 1 additions and 8 deletions

View File

@ -484,16 +484,9 @@ get_uptime() {
}
get_packages() {
# Remove /usr/games from $PATH.
# This solves issues with neofetch opening the "pacman" game.
local PATH=":${PATH}:"
local PATH="${PATH/':/usr/games:'/:}"
local PATH="${PATH%:}"
local PATH="${PATH#:}"
case "$os" in
"Linux" | "BSD" | "iPhone OS" | "Solaris")
type -p pacman >/dev/null && \
type -p paclog-pkglist >/dev/null && \
packages="$(pacman -Qq --color never | wc -l)"
type -p dpkg >/dev/null && \