Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions migrations/1780929365.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
echo "Install missing Mesa Vulkan driver for Intel/AMD GPUs"

# Backfill for systems installed before install/config/hardware/vulkan.sh existed.
# install/ scripts only run at initial setup, so machines set up earlier never
# received a Mesa Vulkan ICD for their iGPU (leaving e.g. NVIDIA as the only Vulkan
# device on hybrid laptops). omarchy-pkg-add is idempotent, so this is a no-op when
# the driver is already present.

declare -A VULKAN_DRIVERS=(
[Intel]=vulkan-intel
[AMD]=vulkan-radeon
)
Comment on lines +9 to +12

PACKAGES=()

for vendor in "${!VULKAN_DRIVERS[@]}"; do
if lspci | grep -iE "(VGA|Display).*$vendor" >/dev/null; then
PACKAGES+=("${VULKAN_DRIVERS[$vendor]}")
fi
done
Comment on lines +16 to +20

if (( ${#PACKAGES[@]} > 0 )); then
omarchy-pkg-add "${PACKAGES[@]}"
fi