As I install more games on my computer I am finding it important to know where they store screenshots and saved games. I thought I would share what I found out.
I am using Linux Mint 19.3 – a debian/ubuntu distribution and other flavours of Linux might have different save paths.
Screenshots are easy. Mint comes with the Gnome Screenshot tool and the default save location is your home/username/pictures folder. – but you can set another location. Screenshots are a fun way to record interesting moments in games. Knowing where they are stored makes it easier to view and edit (or delete) them later.
Saved games are more important to find because they can accumulate quickly and make in-game navigation a pain. Deleting saves in-game is slow and I find it easier to go to the save folder and delete them as a group.
You can use the “whereis” command in the terminal to find game folders.
whereis aisleriot
aisleriot: /usr/lib/x86_64-linux-gnu/aisleriot /usr/share/aisleriot
whereis freeorion
freeorion: /snap/bin/freeorion
The usr/share may be the save location for the .deb game saves but Aisleriot Solitaire doesn’t save games. The whereis for Freeorion only leads to the technical info for the game not the saves.
Finding the Freeorion save files was easy because a snap folder was put into my /home/username folder. Saved games are found in:
/home/username/snap/freeorion/common/save
Flatpak and Wine games are a bit harder to find unless you have your home folder set to “show hidden files”. For Flatpak look for the .var folder. For example:
/home/username/.var/app/org.openttd.OpenTTD/data/openttd/save
For Windows games running in Wine you start in the .wine folder. Most of my games in Windows were stored in Program Files so you can look first in:
/home/username/.wine/drive_c/Program Files
I hope this helps you manage your games. Happy gaming!