You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-6Lines changed: 14 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -61,10 +61,10 @@ For the image logo, iTerm with iterm image protocol should work. Apple Terminal
61
61
62
62
### Windows
63
63
64
-
*[`libcJSON`](https://github.com/DaveGamble/cJSON): Used for Windows Terminal font detection.
65
64
*[`wlanapi`](https://learn.microsoft.com/en-us/windows/win32/api/wlanapi/): A system dll which isn't supported by Windows Server by default. Used for Wifi info detection.
66
-
*[`libvulkan`](https://www.vulkan.org/): Vulkan module. Usually has been provided by GPU drivers.
*[`libcJSON`](https://github.com/DaveGamble/cJSON): Used for Windows Terminal font detection. [`cjson`](https://github.com/msys2/MINGW-packages/tree/master/mingw-w64-cjson)
66
+
*[`libvulkan`](https://www.vulkan.org/): Vulkan module. Usually has been provided by GPU drivers. [`vulkan-loader`](https://github.com/msys2/MINGW-packages/tree/master/mingw-w64-vulkan-loader)[`vulkan-headers`](https://github.com/msys2/MINGW-packages/tree/master/mingw-w64-vulkan-headers)
Note: In Windows 7, 8 and 8.1, [ConEmu](https://conemu.github.io/en/AnsiEscapeCodes.html) is required to run fastfetch due to [the lack of ASCII escape code native support](https://en.wikipedia.org/wiki/ANSI_escape_code#DOS,_OS/2,_and_Windows). In addition, special build `fastfetch-windows-old` in [Github Actions](https://github.com/LinusDierheimer/fastfetch/actions) is provided to support these old systems, which
70
70
@@ -75,8 +75,8 @@ For the image logo, only chafa is supported due to [the design flaw of ConPTY](h
75
75
76
76
### Android
77
77
78
-
*[`freetype`](https://www.freetype.org/): Used for Termux font detection.
79
-
*[`libvulkan`](https://www.vulkan.org/): Vulkan module, also used for GPU detection. Usually has been provided by Android system.
78
+
*[`freetype`](https://www.freetype.org/): Used for Termux font detection.[`freetype`](https://github.com/termux/termux-packages/tree/master/packages/freetype)
79
+
*[`libvulkan`](https://www.vulkan.org/): Vulkan module, also used for GPU detection. Usually has been provided by Android system.[`vulkan-loader-android`](https://github.com/termux/termux-packages/tree/master/packages/vulkan-loader-android)[`vulkan-headers`](https://github.com/termux/termux-packages/tree/master/packages/vulkan-headers)
80
80
81
81
## Support status
82
82
All categories not listed here should work without needing a specific implementation.
@@ -130,7 +130,15 @@ If the build process fails to find the headers for a library listed in [dependen
130
130
131
131
### Building on Windows
132
132
133
-
Currently GCC or clang is required (MSVC is not supported). MSYS2 with CLANG64 sub system is suggested (and tested) to build fastfetch.
133
+
Currently GCC or clang is required (MSVC is not supported). MSYS2 with CLANG64 subsystem (or CLANGARM64 if needed) is suggested (and tested) to build fastfetch. If you need Windows 7 / 8.x support, using MINGW64 is suggested.
0 commit comments