From ed45b739a53213b20099f2a23f530c4532a2205b Mon Sep 17 00:00:00 2001 From: CapCreeperGR Date: Mon, 1 Jul 2024 12:44:22 +0300 Subject: [PATCH] Updated BPM package count fetching --- config/fetch_script_functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/fetch_script_functions.sh b/config/fetch_script_functions.sh index 0de0213..c093773 100644 --- a/config/fetch_script_functions.sh +++ b/config/fetch_script_functions.sh @@ -24,7 +24,7 @@ get_packages() { ARRAY+=("$(xbps-query -l | wc -l) (xbps)") fi if command_exists bpm; then - ARRAY+=("$(bpm list -n) (bpm)") + ARRAY+=("$(bpm list -c) (bpm)") fi if command_exists emerge; then ARRAY+=("$(ls -l /var/db/pkg/* | wc -l) (emerge)")