This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # git-dolphin.sh | |
| # Easily download, build and install latest dolphin emulator master from Github | |
| # Created 2023-05-27 - updated 2024-01-30 | |
| # Written for Siduction (Debian sid based distro) | |
| # By dpanter https://gist.github.com/dpanter | |
| # make install requires elevated privileges | |
| PROJECT="dolphin" | |
| RUNDATE="`date +%Y%m%d`" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # vulkanreport.sh | |
| # Easily run vulkancapsviewer with AMD GPU (RADV ACO/RADV LLVM/AMDVLK/AMDGPU-PRO) | |
| # Created 2024-03-01 | |
| # Written for Siduction (Debian sid based distro) | |
| # By dpanter https://gist.github.com/dpanter | |
| # Requires an executable vulkancapsviewer appimage, download from https://vulkan.gpuinfo.org/ | |
| # Also assumes the system has icds in the usual locations | |
| # workaround for buggy binary not handling Qt wayland properly |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # creds to MoistGoat from GamingOnLinux.com Discord | |
| # Run this script in your compatdata folder! | |
| CreateLinksAllowed=0 | |
| OutputListToFile=1 | |
| Dependencies() { | |
| if [[ ! $(command -v jq) ]]; then | |
| echo "The package " jq " is missing, it will not work without." | |
| else |
OlderNewer