Skip to content

Instantly share code, notes, and snippets.

@dpanter
dpanter / git-dolphin.sh
Last active January 30, 2024 13:36
git-dolphin.sh - Easily download, build and install latest dolphin emulator master from Github
#!/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`"
@dpanter
dpanter / vulkanreport.sh
Created March 3, 2024 12:18
vulkanreport.sh - Easily run vulkancapsviewer with AMD GPU (RADV ACO/RADV LLVM/AMDVLK/AMDGPU-PRO)
#!/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
@dpanter
dpanter / ntg.sh
Created April 13, 2025 17:51
ntg.sh - NameThatGame (by MoistGoat)
#!/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