audiogame-manager/game-scripts/revenge-of-the-undead-update.sh

10 lines
349 B
Bash
Executable File

#!/usr/bin/env bash
cache="${XDG_CONFIG_HOME:-$HOME/.config}/storm-games/audiogame-manager/cache"
url="https://tunmi13.dev/projects/rotu.zip"
wget -o "${cache}/rotu.zip" "$url" || exit 1
unzip -od "$HOME/.local/wine/drive_c/Program Files" "${cache}/rotu.zip"
rm -fv "$HOME/.local/wine/drive_c/Program Files/rotu/nvdaControllerClient32.dll"
exit 0