7 lines
187 B
Bash
7 lines
187 B
Bash
|
|
#!/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 .
|