Skip to content

Commit 9aba57c

Browse files
Bedrock package support
1 parent 0dffd8d commit 9aba57c

File tree

4 files changed

+188
-142
lines changed

4 files changed

+188
-142
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ if(ENABLE_CHAFA)
343343
message(WARNING "Package chafa>=1.10 not found. Building without support.")
344344
endif()
345345
else()
346-
message(WARNING "Chafa not enabled, because neither ImageMagick6 nor ImageMagick7 is found. Builting without support.")
346+
message(WARNING "Chafa not enabled, because neither ImageMagick6 nor ImageMagick7 is found. Building without support.")
347347
endif()
348348
endif()
349349

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Fastfetch dynamically loads needed libraries if they are available. Therefore it
2020

2121
The following libraries are used if present at runtime:
2222
* [`libpci`](https://github.com/pciutils/pciutils): GPU output.
23-
* [`libvulkan`](https://www.vulkan.org/): Fallback for GPU output.
23+
* [`libvulkan`](https://www.vulkan.org/): Vulkan module & fallback for GPU output.
2424
* [`libxcb-randr`](https://xcb.freedesktop.org/),
2525
[`libXrandr`](https://gitlab.freedesktop.org/xorg/lib/libxrandr),
2626
[`libxcb`](https://xcb.freedesktop.org/),

src/fastfetch.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,14 +93,16 @@ static inline void printCommandHelp(const char* command)
9393
}
9494
else if(strcasecmp(command, "packages-format") == 0)
9595
{
96-
constructAndPrintCommandHelpFormat("packages", "{2} (pacman){?3}[{3}]{?}, {4} (dpkg), {5} (rpm), {6} (emerge), {7} (xps), {8}, (flatpak), {9} (snap)", 9,
96+
constructAndPrintCommandHelpFormat("packages", "{2} (pacman){?3}[{3}]{?}, {4} (dpkg), {5} (rpm), {6} (emerge), {7} (xbps), {8} (nix-user), {9} (nix-default), {10} (flatpak), {11} (snap)", 11,
9797
"Number of all packages",
9898
"Number of pacman packages",
9999
"Pacman branch on manjaro",
100100
"Number of dpkg packages",
101101
"Number of rpm packages",
102102
"Number of emerge packages",
103103
"Number of xbps packages",
104+
"Number of nix-user packages",
105+
"Number of nix-default packages",
104106
"Number of flatpak packages",
105107
"Number of snap packages"
106108
);

0 commit comments

Comments
 (0)