Skip to content

Instantly share code, notes, and snippets.

@Radfordhound
Created March 13, 2022 23:23
Show Gist options
  • Save Radfordhound/6e6ce00535d14ae87d606ece93f1e336 to your computer and use it in GitHub Desktop.
Save Radfordhound/6e6ce00535d14ae87d606ece93f1e336 to your computer and use it in GitHub Desktop.
Simple shell script to install LunarG's Ubuntu repository for their Vulkan SDK
#!/bin/bash
ubuntu_version=$(lsb_release -cs)
echo $ubuntu_version
wget -qO - http://packages.lunarg.com/lunarg-signing-key-pub.asc | sudo apt-key add -
sudo wget -qO /etc/apt/sources.list.d/lunarg-vulkan-$ubuntu_version.list http://packages.lunarg.com/vulkan/lunarg-vulkan-$ubuntu_version.list
sudo apt update
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment