The Windows equivilent would be instead of putting application data in the AppData folder, it throws it in Documents, My Games, or just in the home folder directly.
Better, it could be literally anywhere and there’s nothing you can do about it. Also symlinks practically look like regular folders and files to most apps.
That’s why i prefer to use Wine for games. Just change the symlinks in C:/users/<you> to somewhere sane, like .local/Games/<game>/save. Guess you could also use the variables in .config/user-dirs.dirs while creating the prefix, but i haven’t tested that yet.
There’s no game related dirs in your My Documents dir? Most don’t even use My Games they just dump directly into My Documents. I guarantee most game devs don’t understand the difference between local and roaming either. They just put shit randomly wherever they want
Most software on Linux is configured to place their config files in ~/.config. Some others, like the ones in the pic, just dump them directly into your home folder.
Many applications have configuration files. Historically these files were placed in your home directory aka “on the floor”. The variable mentioned defines a directory where these files should go. Many applications ignore this.
$XDG_CONFIG_HOME is an environment variable that programs can (and should) read to determine the location for storing dotfiles (config files, kind of). Not reading (or caring about) the environment variable, and not adhering to the default of /home/username/.config/ results in them ending up in the home directory.
Haven’t used much of Linux before, can someone explain the joke?
The Windows equivilent would be instead of putting application data in the AppData folder, it throws it in Documents, My Games, or just in the home folder directly.
ah so like every fucking game and it’s save files for some reason?
Better, it could be literally anywhere and there’s nothing you can do about it. Also symlinks practically look like regular folders and files to most apps.
That’s why i prefer to use Wine for games. Just change the symlinks in C:/users/<you> to somewhere sane, like .local/Games/<game>/save. Guess you could also use the variables in .config/user-dirs.dirs while creating the prefix, but i haven’t tested that yet.
I haven’t run into a game that does this 🤷♂️
There’s no game related dirs in your My Documents dir? Most don’t even use My Games they just dump directly into My Documents. I guarantee most game devs don’t understand the difference between local and roaming either. They just put shit randomly wherever they want
… or just imagine all of it being thrown on the Desktop (the bare user directory is rarely visited in Windows)
Hahahaha oh man I know exactly what you’re talking about too 😭 hate when they do that
Most software on Linux is configured to place their config files in ~/.config. Some others, like the ones in the pic, just dump them directly into your home folder.
Yes.
Many applications have configuration files. Historically these files were placed in your home directory aka “on the floor”. The variable mentioned defines a directory where these files should go. Many applications ignore this.
A non-linux version of this meme might go,
“Here is the pizza you ordered”
“Great, could you put it in my hands”
“Lol (throws pizza on floor)”
$XDG_CONFIG_HOME is an environment variable that programs can (and should) read to determine the location for storing dotfiles (config files, kind of). Not reading (or caring about) the environment variable, and not adhering to the default of /home/username/.config/ results in them ending up in the home directory.