• 314 Posts
  • 15.6K Comments
Joined 3 years ago
cake
Cake day: June 13th, 2023

help-circle









  • Took me a minute to find it again, but there was an excellent essay answering this question. From https://thompson2026.com/blog/deviancy-signal/ :

    There’s a special kind of contempt I reserve for the person who says, “I have nothing to hide.” It’s not the gentle pity you’d have for the naive. It’s the cold, hard anger you hold for a collaborator. Because these people aren’t just surrendering their own liberty. They’re instead actively forging the chains for the rest of us. They are a threat, and I think it’s time they were told so.

    On a societal scale, this inaction becomes a collective betrayal. The power of the Deviancy Signal is directly proportional to the number of people who live transparently. Every person who refuses to practice privacy adds another gallon of clean, clear water to the state’s pool, making any ripple of dissent … any deviation … starkly visible. This is not a passive choice. By refusing to help create a chaotic, noisy baseline of universal privacy, you are actively making the system more effective. You are failing to do your part to make the baseline all deviant, and in doing so, you make us all more vulnerable.











  • What I want is to set the default filter to “All Files” for every application that uses the file picker. I don’t want to do it per application. If there’s a setting for the file picker itself, I want to use that.

    It’s not just the save dialog, I mentioned the file selection dialog (for uploading) in the post. The Librewolf “save page as” is just one singular example, not the entire problem!

    Oh! In that case, KFileDialog might actually be (roughly) the part you want to patch.

    (That was just what I found in a couple of minutes of looking, BTW. I’ve never programmed anything related to KDE – not even applications, let alone the library itself – so do your own research. I’m just going by generic software engineering principles, not anything specific to how KDE works, either technically or administratively.)

    What would the effects be?

    Depends on exactly which bits you change. The “save” dialog probably inherits from an abstract dialog or something. If you change the base class everything will be affected; if you change the derived class only the derived class will be affected. The trick is to find the right layer in the hierarchy that changes everything you want while leaving everything else alone.

    How would I go about this? Would I need to alter the source code and recompile? What would happen when I update the software?

    Yes, you’d have to alter the source and recompile. At that point, you’re basically maintaining your own small private fork of the software, so you’d have to merge your changes back in on each update.

    Alternatively, you could try to get the KDE project to accept the changes, but I have no idea how receptive they would be.

    “Saving HTML files with their file extension” can still be accomplished if I can see all the files at once. I’m not changing the extension, I just want to see where I’m putting them. There is no reason why viewing all files would prevent me from saving the same file types together.

    If you’re saying that you’d like to decouple the filter of what file types you can see from the filter of what file types you can save as, that’s interesting. It might have merit in terms of user experience, but I suspect it might be a slightly more invasive change to code – and an even more invasive change to the public-facing API, which developers of applications that use KDE might have something to say about.