985
top 50 comments
sorted by: hot top controversial new old
[-] Kalcifer@sh.itjust.works 164 points 10 months ago

Firefox has an issue that's been open for 20 years regarding implementing the XDG Base Directory Specification.

[-] const_void@lemmy.ml 52 points 10 months ago

Firefox is the biggest offender for me. ~/.mozilla instead of something sane like ~/.config/firefox

[-] uuhhhhmmmm@sh.itjust.works 64 points 10 months ago

Even worse, Thunderbird doesn't save data in ~/.mozilla/thunderbird, but in ~/.thunderbird.

[-] voidMainVoid@lemmy.world 5 points 10 months ago

At least Thunderbird configs are stored in ~/.config/.mozilla/thunderbird. Right? Right...?

load more comments (2 replies)
[-] backhdlp@iusearchlinux.fyi 85 points 10 months ago

my favourite part is Steam throwing in a symlink, a broken symlink, and a directory of 4 files and 7 more symlinks that all point to a more reasonable point in ~/.local/share/steam/

[-] JDubbleu@programming.dev 24 points 10 months ago

Which indirectly led to this wild as fuck bug that nuked some poor user's data.

https://youtu.be/qzZLvw2AdvM?si=FznMm9CQxD-da9S6

[-] PipedLinkBot@feddit.rocks 7 points 10 months ago

Here is an alternative Piped link(s):

https://piped.video/qzZLvw2AdvM?si=FznMm9CQxD-da9S6

Piped is a privacy-respecting open-source alternative frontend to YouTube.

I'm open-source; check me out at GitHub.

load more comments (1 replies)
[-] KrapKake@lemmy.world 15 points 10 months ago* (last edited 10 months ago)

Haha you just reminded me of that damn flashing broken steam sym link in my home folder, it's been there for years and I've yet to investigate or do anything about it.

[-] Redjard@lemmy.dbzer0.com 15 points 10 months ago

It's there for ancient compatibility reasons and recreated when steam starts, iirc. I've looked a bit into removing it last year but didn't get far

[-] victorz@lemmy.world 6 points 10 months ago

lol that's great. Does flatpak Steam do that too? I can't see anything from Steam directly in my home directory, and I use the flatpak version.

[-] Samueru@lemmy.world 51 points 10 months ago* (last edited 10 months ago)

Flatpak itself violates the xdg base dir spec by making ~/.var

load more comments (1 replies)
[-] backhdlp@iusearchlinux.fyi 10 points 10 months ago

Flatpaks can't just access your home directory.

load more comments (2 replies)
load more comments (1 replies)
[-] massive_bereavement@kbin.social 76 points 10 months ago
[-] PropaGandalf@lemmy.world 41 points 10 months ago

Ninja can't help if the program does not want to cooperate :(

[-] Samueru@lemmy.world 13 points 10 months ago

You can use a wrapper script on PATH that launches the app in a fake home wherever you want.

[-] 5714@lemmy.dbzer0.com 58 points 10 months ago* (last edited 10 months ago)

It's one thing when they have legacy hardcode mountains preventing a standardisation, but I really dislike developers who just disagree with the standard and take away the choice as well and justify it with some made up problems with that standard.

https://github.com/minetest/minetest/issues/864

https://bugzilla.mozilla.org/show_bug.cgi?id=735285

etc...

Archlinux Wiki even has an article about those.

https://wiki.archlinux.org/title/XDG_Base_Directory#Hardcoded

[-] merthyr1831@lemmy.world 28 points 10 months ago

who would win?

dozens of conflicting standards on where to store files over years of poorly enforced linux development practice

vs

some symlink bois


for real tho, I discovered gnu-stow the other day and it looks like the ideal solution for this sorta stuff

load more comments (3 replies)
[-] nymphlode@pawb.social 47 points 10 months ago

Haven't used much of Linux before, can someone explain the joke?

[-] refurbishedrefurbisher@lemmy.sdf.org 94 points 10 months ago

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.

[-] funkless_eck@sh.itjust.works 77 points 10 months ago

ah so like every fucking game and it's save files for some reason?

[-] nexussapphire@lemm.ee 23 points 10 months ago

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.

[-] MonkderZweite@feddit.ch 5 points 10 months ago* (last edited 10 months ago)

That's why i prefer to use Wine for games. Just change the symlinks in C:/users/ to somewhere sane, like .local/Games//save. Guess you could also use the variables in .config/user-dirs.dirs while creating the prefix, but i haven't tested that yet.

load more comments (7 replies)
[-] Prunebutt@slrpnk.net 35 points 10 months ago

... or just imagine all of it being thrown on the Desktop (the bare user directory is rarely visited in Windows)

[-] nymphlode@pawb.social 9 points 10 months ago

Hahahaha oh man I know exactly what you're talking about too 😭 hate when they do that

[-] Hubi@feddit.de 61 points 10 months ago

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.

[-] MimicJar@lemmy.world 48 points 10 months ago* (last edited 10 months ago)

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)"

[-] neidu2@feddit.nl 39 points 10 months ago* (last edited 10 months ago)

$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.

load more comments (1 replies)
[-] unhinge@programming.dev 28 points 10 months ago* (last edited 10 months ago)

Meanwhile kde scattering everything in .config/

Image

[-] janAkali@lemmy.one 25 points 10 months ago

In theory this issue can be solved with LD_PRELOAD trick. E.g. redirect all/most/some fopen calls to "$HOME" to some other directory. But before I try to tackle it myself: is there already a similar solution like that?

[-] Corngood@lemmy.ml 4 points 10 months ago

You could probably do it with bubblewrap or something equivalent. Here's someone asking about this exact thing:

https://unix.stackexchange.com/questions/651788/redirect-single-file-or-directory-using-bubblewrap

load more comments (1 replies)
load more comments (1 replies)
[-] pathief@lemmy.world 25 points 10 months ago* (last edited 10 months ago)

If plasma could put all their damn files inside a "plasma" folder that'd be great too.

load more comments (1 replies)
[-] jeremyparker@programming.dev 23 points 10 months ago* (last edited 10 months ago)

I love you all very much but just please be aware that "the floor" is literally where the files are supposed to go, according to the spec. I don't like it, you don't like it, nobody likes it. But that's why it's happening.

Relevant section quoted for the lazy:

User specific configuration files for applications are stored in the user's home directory in a file that starts with the '.' character (a "dot file"). If an application needs to create more than one dot file then they should be placed in a subdirectory with a name starting with a '.' character, (a "dot directory"). In this case the configuration files should not start with the '.' character.

[-] zephr_c@lemm.ee 25 points 10 months ago

You know everything on that site was written in 2004 or earlier, right? That hasn't been the relevant spec for a long, long time now. We use xdg for that now. Configs go in xdg_config_home.

load more comments (4 replies)
[-] spujb@lemmy.cafe 17 points 10 months ago* (last edited 10 months ago)

i understand the linux side of the joke but can someone explain what this meme format means? /gen

is this pizza guy known for chucking pizzas?

[-] Classy@sh.itjust.works 13 points 10 months ago

They probably just found an image of a pizza delivery guy and fitted it for the meme. I am not aware of any memes of pizza throwers other than Walter White

[-] spujb@lemmy.cafe 11 points 10 months ago

i am the one who yeets

load more comments (2 replies)
[-] SaltyIceteaMaker@iusearchlinux.fyi 6 points 10 months ago

Set your config directory to be your home directory and outplay those apps

[-] QuazarOmega@lemy.lol 4 points 10 months ago
load more comments
view more: next ›
this post was submitted on 03 Feb 2024
985 points (98.3% liked)

linuxmemes

21611 readers
1362 users here now

Hint: :q!


Sister communities:


Community rules (click to expand)

1. Follow the site-wide rules

2. Be civil
  • Understand the difference between a joke and an insult.
  • Do not harrass or attack members of the community for any reason.
  • Leave remarks of "peasantry" to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
  • Bigotry will not be tolerated.
  • These rules are somewhat loosened when the subject is a public figure. Still, do not attack their person or incite harrassment.
  • 3. Post Linux-related content
  • Including Unix and BSD.
  • Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of sudo in Windows.
  • No porn. Even if you watch it on a Linux machine.
  • 4. No recent reposts
  • Everybody uses Arch btw, can't quit Vim, and wants to interject for a moment. You can stop now.
  •  

    Please report posts and comments that break these rules!


    Important: never execute code or follow advice that you don't understand or can't verify, especially here. The word of the day is credibility. This is a meme community -- even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don't fork-bomb your computer.

    founded 2 years ago
    MODERATORS