Skip to content

Instantly share code, notes, and snippets.

@fffx
Last active April 20, 2024 08:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fffx/aa151af67a95480b1fe82b0eabb28f4b to your computer and use it in GitHub Desktop.
Save fffx/aa151af67a95480b1fe82b0eabb28f4b to your computer and use it in GitHub Desktop.
backup Sekiro save file in steam deck with bash-shortcuts
  1. Install decky-loader and bash-shortcuts
  2. Go to desk mode, you may need Anydesk
  3. Put the bash-shortcuts.json to the path $HOME/homebrew/settings/bash-shortcuts/bash-shortcuts.json

And from now on, you can backup Sekiro progress without switching to deskmode!

image

# Note: you need to replace the id with your own value
{
"shortcuts": {
"fcba1cb4-4601-45d8-b919-515d152c56ef": {
"id": "fcba1cb4-4601-45d8-b919-515d152c56ef",
"name": "restore Sekiro",
"cmd": "cp -aT /home/deck/Documents/sekiro_bak /home/deck/.local/share/Steam/steamapps/compatdata/<ID>/pfx/drive_c/users/steamuser/AppData/Roaming/Sekiro ",
"position": 1,
"isApp": false,
"passFlags": false,
"hooks": []
},
"e8bade32-19cf-43e3-a8c7-07918f2db242": {
"id": "e8bade32-19cf-43e3-a8c7-07918f2db242",
"name": "Sekiro backup",
"cmd": "cp -aT /home/deck/.local/share/Steam/steamapps/compatdata/<ID>/pfx/drive_c/users/steamuser/AppData/Roaming/Sekiro /home/deck/Documents/sekiro_bak",
"position": 2,
"isApp": false,
"passFlags": false,
"hooks": []
}
},
"webSocketPort": "5000"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment