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 |
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 | |
# 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 | |
# git-corectrl.sh | |
# Easily download, build and install latest CoreCtrl master from Gitlab | |
# Created 2023-04-24 - updated 2023-05-04 | |
# Written for Siduction (Debian sid based distro) | |
# By dpanter https://gist.github.com/dpanter | |
# make install requires elevated privileges | |
PROJECT="corectrl" | |
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 | |
# git-mangohud.sh | |
# Easily download, build and install latest MangoHud master from Github | |
# Created 2023-04-21 - updated 2024-01-30 | |
# Written for Siduction (Debian sid based distro) | |
# By dpanter https://gist.github.com/dpanter | |
# Meson install requires elevated privileges | |
PROJECT="MangoHud" | |
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 | |
# git-gamescope.sh | |
# Easily download, build and install latest gamescope master from Github | |
# Created 2023-04-21 - updated 2024-01-30 | |
# Written for Siduction (Debian sid based distro) | |
# By dpanter https://gist.github.com/dpanter | |
# Meson install requires elevated privileges | |
# Dependency list https://github.com/ValveSoftware/gamescope/issues/838 | |
PROJECT="gamescope" |
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 | |
# gpuperf.sh | |
# Easily change AMDGPU power DPM forced performance level | |
# Created 2022-03-09 | |
# Written for Siduction (Debian sid based distro) | |
# By dpanter https://gist.github.com/dpanter | |
# Requires _sudo_ or root login | |
# setting color variables for fancy pants output | |
WHITE='\e[1;37m' |
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 | |
# keyb_rgbsaver.sh | |
# Automatically mute keyboard RGB when xscreensaver activates, turn back up when deactivating | |
# Created 2021-08-28 | |
# Written for Siduction (Debian sid based distro) | |
# By dpanter https://gist.github.com/dpanter | |
# Requires _xscreensaver_ and _openrgb_ | |
process() { | |
while read input; do |
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 | |
# ping_tester.sh | |
# A collection of basic tests for internet connections, like troubleshooting your ISP | |
# Useful for logging long running tests to file | |
# Created 2021-01-01 - updated 2021-02-05 | |
# Written for Siduction (Debian sid based distro) | |
# By dpanter https://gist.github.com/dpanter | |
# requires speedtest-cli (provided by Debian package _speedtest-cli_) | |
# setting up variables |
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 | |
# compatcheck.sh | |
# Check which compatibility tools Steam is configured to use on installed games | |
# What's the point? Steam has no easy way to tell you which compat tools are used where. | |
# If you delete a custom proton version that is in use, Steam lists those games as not installed | |
# Created 2020-08-12 - Updated 2020-08-13 | |
# Written for Siduction (Debian sid based distro) | |
# By dpanter https://gist.github.com/dpanter | |
# kudos to MoistGoat |
NewerOlder