https://github.com/wunkolo/vkfetch
vkfetch is a fetch-program that displays basic information about your vulkan-compatible graphic card(s)!
https://github.com/wunkolo/vkfetch
graphics vulkan
Last synced: about 1 year ago
JSON representation
vkfetch is a fetch-program that displays basic information about your vulkan-compatible graphic card(s)!
- Host: GitHub
- URL: https://github.com/wunkolo/vkfetch
- Owner: Wunkolo
- License: mit
- Created: 2021-07-24T03:58:16.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2025-03-05T16:59:40.000Z (over 1 year ago)
- Last Synced: 2025-03-31T05:24:56.130Z (about 1 year ago)
- Topics: graphics, vulkan
- Language: C++
- Homepage:
- Size: 114 KB
- Stars: 28
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vkfetch [](LICENSE) [](https://github.com/Wunkolo/vkfetch/actions/workflows/cmake.yml)
`vkfetch` is a fetch-program that displays basic information about your vulkan-compatible graphic card(s)!
`vkfetch` will also display some vendor-specific information about your GPU, when available.





# Building
`vkfetch` will require the vulkan SDK headers for your platform to build. Check out [lunarg](https://vulkan.lunarg.com/) to get started or use your linux distro's package manager!
This is a CMake project, so a typical [Cmake out-of-source build procedure](http://preshing.com/20170511/how-to-build-a-cmake-based-project/#running-cmake-from-the-command-line) will get you going on both Windows and Linux:
```
git clone git@github.com:Wunkolo/vkfetch.git
cd vkfetch
mkdir build
cd build
cmake ..
cmake --build .
./vkfetch
```