From cb5dbf0436beb9c0c0c1b9b4a89470bb6de679f0 Mon Sep 17 00:00:00 2001 From: mTvare6 Date: Thu, 20 May 2021 21:26:09 +0530 Subject: [PATCH] (fix): list only installed not available --- uwufetch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uwufetch.c b/uwufetch.c index 87682ec..a69d98b 100644 --- a/uwufetch.c +++ b/uwufetch.c @@ -223,7 +223,7 @@ int pkgman() #ifdef __APPLE__ // we use a completely different struct because some commands in the other actually work in mac os, but they are not what you would expect (try running "apt"), but still doesn't work, maybe because of popen() struct package_manager pkgmans[] = { - {"brew list 2>/dev/null | wc -l | sed \"s/ //g\" && touch test", "(brew)"}}; + {"ls $(brew --cellar)| wc -l | sed \"s/ //g\" && touch test", "(brew)"}}; #else struct package_manager pkgmans[] = { {"apt list --installed 2> /dev/null | wc -l", "(apt)"},