7 lines
187 B
Bash
Executable File
7 lines
187 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# archypr:summary=Detect whether Vulkan is available.
|
|
|
|
[[ -d /usr/share/vulkan/icd.d ]] &&
|
|
find /usr/share/vulkan/icd.d -maxdepth 1 -name "*.json" -print -quit | grep -q .
|