commit
5aa8bae78a
2 changed files with 3 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -4,4 +4,5 @@ uwufetch
|
||||||
*.vscode
|
*.vscode
|
||||||
*.gz
|
*.gz
|
||||||
*.1
|
*.1
|
||||||
|
.DS_STORE
|
||||||
.prettierrc
|
.prettierrc
|
|
@ -223,7 +223,7 @@ int pkgman()
|
||||||
#ifdef __APPLE__
|
#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()
|
// 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[] = {
|
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
|
#else
|
||||||
struct package_manager pkgmans[] = {
|
struct package_manager pkgmans[] = {
|
||||||
{"apt list --installed 2> /dev/null | wc -l", "(apt)"},
|
{"apt list --installed 2> /dev/null | wc -l", "(apt)"},
|
||||||
|
|
Loading…
Reference in a new issue