Created
February 28, 2026 05:21
-
-
Save fadookie/fc61e0426eed6b01c9ecb811a0f53bba to your computer and use it in GitHub Desktop.
VESPER.5 save file backup script for Steam Deck
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
| #!/usr/bin/env bash | |
| set -o errexit | |
| set -o nounset | |
| set -o pipefail | |
| STEAMAPP_ID='4114721647' # You'll need to determine the steamapp ID of the app using protontricks or some other method | |
| SAVE_BAK_DIR="$HOME/Applications/brough/VESPER.5/save-bak" #set this to the path you want your saves to be backed up to | |
| FILENAME="savefile_$(date '+%Y%m%d_%H%M').bak" | |
| cp -v "$HOME/.local/share/Steam/steamapps/compatdata/$STEAMAPP_ID/pfx/drive_c/users/steamuser/AppData/Roaming/vesper5/savefile" "$SAVE_BAK_DIR/$FILENAME" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment