It peaked at 4.05% in March. The last 2 months it went just below 4% as the Unknown category increased. For June the reverse happened, so 4.04% seems to be the real current share of Linux on Desktop as desktop clients were read properly/werent spoofed.

    • dan@upvote.au
      link
      fedilink
      arrow-up
      5
      ·
      edit-2
      2 days ago

      User agent strings are frozen these days, at least in Chrome. They still have the browser major version and OS name at least, but Windows will always report Windows 10, Android will always report Android 10, MacOS will always report 10.15.7, and Linux is just “Linux x86_64”: https://www.chromium.org/updates/ua-reduction/

      User agent strings are essentially deprecated and nobody should be using them any more. They’ve been replaced by User-Agent Client Hints, where the site can request the data it needs, and some high-entropy things (ie fields that vary a lot between users) can prompt the user for permission to share them first.

        • dan@upvote.au
          link
          fedilink
          arrow-up
          5
          ·
          2 days ago

          User agents were commonly used for the wrong reasons - fingerprinting, sites that block particular browsers rather than using proper feature detection, etc. so I’m glad to see them slowly going away.

      • woelkchen@lemmy.world
        link
        fedilink
        arrow-up
        1
        ·
        2 days ago

        Shit started hitting the fan when everyone started faking Netscape’s “Mozilla” user agent. Then “KHTML, like Gecko” and after that every fork kept the originating name in the string and extended it.

        • dan@upvote.au
          link
          fedilink
          arrow-up
          1
          ·
          edit-2
          1 day ago

          There’s a good explanation about that here: https://webaim.org/blog/user-agent-string-history/

          The issue is that a lot of sites used the user-agent to determine if the browser supported particular features (e.g. show a fancy version of a site if the user is using Netscape, otherwise show a basic version for Mosaic, lynx, etc). New browsers had to pretend to be the old good browsers to get the good versions of sites

          This is why getting rid of the user agent is a good thing. Sniffing the UA is a mess.