• Dave.
    link
    fedilink
    298 months ago

    Article summary:

    Linux: Do this.

    Apple: Do this.

    Windows: Conspicuously absent.

    Config state is an absolute shitshow on windows. Is this application’s config in $APPDATA/local? Roaming? The registry? Under HKEY_LOCAL_MACHINE? USERS? In its own folder in Program Files, oh Program Files(x86)? Maybe it’s just in a folder in $USER.

    Gives me the shits.

    Article is good though, just wanted to vent.

    • @jcg@halubilo.social
      link
      fedilink
      7
      edit-2
      8 months ago

      Shit like this just contributes to this overall messy feeling I have on Windows. For many reasons I can’t get off the OS completely, but man every time I use Linux (for servers/my personal laptop/etc.) it just feels so clean in comparison.

      Feels Good

    • @Abnorc
      link
      48 months ago

      I don’t even remember the difference between LocalLow, Local, and Roaming anymore. I looked it up some time back, but it didn’t exactly help me find what I was looking for.

      • Dave.
        link
        fedilink
        5
        edit-2
        8 months ago

        All I know is that the stuff in roaming generally follows you around on domain logins. So if you’re bouncing around on corporate computers with the same standard set of apps installed, if they save their stuff in roaming they can retrieve it anywhere you log in.

        Which can be a blessing and a curse because once roaming fills up with all sorts of crap your logins on new computers take forever as the network has to transfer X gigabytes of stuff in roaming to that PC.

        • @Abnorc
          link
          18 months ago

          Interesting. I always was annoyed that the computers at my workplace don’t transfer my settings between machines, but it may be a blessing in disguise with respect to the login times.

  • @lysdexic@programming.dev
    link
    fedilink
    English
    128 months ago

    This article seems to be well-meaning but contrasts with the de-facto standard way of storing dotfiles. The Linux Filesystem Hierarchy Standard is quite unambiguous in how it specifies that the purpose of $HOME is to store dotfiles.

    https://refspecs.linuxfoundation.org/FHS_3.0/fhs/ch03s08.html

    FHS also specifies that applications can store their dotfiles in subdirectories, and this is leveraged by other standards like the Freedesktop’s xdg-user-dirs spec to default to ~/.config

    https://www.freedesktop.org/wiki/Software/xdg-user-dirs/

    I’m not sure what’s the point of arguing against the standard way of storing dotfiles while basing the remarks on no standard or reference.

    • @jeremyparker@programming.dev
      link
      fedilink
      98 months ago

      You’re right that that’s extremely unambiguous, but I still don’t love the idea that users don’t get to decide what’s in $HOME, like, maybe we could call it “$STORAGE_FOR_RANDOM_BULLSHIT” instead?

      If anything in computing conventions implies “user space” it’s a global variable named HOME. And it makes sense that there should be a $STORAGE_FOR_RANDOM_BULLSHIT location too - but maybe not the same place? Then users could symlink the dotfiles they personally find relevant.

      I know you’re not Linus, but, I just had to express that.

      • @lysdexic@programming.dev
        link
        fedilink
        English
        98 months ago

        You’re right that that’s extremely unambiguous, but I still don’t love the idea that users don’t get to decide what’s in $HOME, like, maybe we could call it “$STORAGE_FOR_RANDOM_BULLSHIT” instead?

        That’s basically what $HOME is is used for in UNIX: a place for applications to store user-specific files, including user data and user files.

        https://www.linfo.org/home_directory.html

        If anything in computing conventions implies “user space” it’s a global variable named HOME. And it makes sense that there should be a $STORAGE_FOR_RANDOM_BULLSHIT location too - but maybe not the same place?

        UNIX, and afterwards Unix-like OSes, were designed as multi-user operating systems that supported individual user accounts. Each user needs to store it’s data, and there’s a convenient place to store it: it’s $HOME directory. That’s how things have been designed and have been working for close to half a century.

        Some newer specs such as Freedesktop’s directory specification build upon the UNIX standard and Unix-like tradition, but the truth of the matter is that there aren’t that many reasons to break away from this practice.

    • @Spott@lemmy.world
      link
      fedilink
      68 months ago

      This isn’t an argument against the standard way of doing things, it is an argument to follow the xdg standard, and use xdg environment variables, rather than creating a new unconfigurable directory in $HOME.

  • @ck_@discuss.tchncs.de
    link
    fedilink
    58 months ago

    If anyone feels adventurous, give this little experiment a try:

    • Create the top level hierarchy of folders in your $HOME
    • remove write permissions for everyone from $HOME

    That way, programs won’t be able to clutter your $HOME anymore and it’ll be easy to find any culprits