this post was submitted on 12 May 2026
94 points (94.3% liked)

Linux

65253 readers
1594 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 7 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] Vincent@feddit.nl 1 points 2 days ago (1 children)

I was trying to make the point that the way a control looks gives you some information on how it will behave, because software has generally been consistent with associating those looks with those behaviours.

So if you see multiple options with a circle in front of them, selecting one, then selecting another will usually deselect the first one.

On the other hand, if those options have squares in front of them, selecting one, then selecting another will usually result in both of them being selected.

And in both cases, usually they will be part of a form and will only take effect when you submit that form using a button.

On the other hand, something that looks like a toggle usually takes effect immediately on toggling.

Of course it is technically always possible to have each of those behave like any of the others, but you will be breaking conventions if you do so. Styling is an affordance to inform the user about the behaviour.

[–] FishFace@piefed.social 2 points 2 days ago (1 children)

Taking effect instantly is not really indicated by the control shape; it's indicated by whether or not the form has a button equivalent to "apply". Settings pages with checkboxes that applied immediately have been common for years; this distinction is not nearly as clear cut as you make out. I suspect what is going on is that both toggle switches and the removal of a separate apply step has gone on gradually at the same time.

But a good thing to think about is all the other controls: drop downs, text entry boxes, date pickers - these have no second version which might apply instantly or not! So it's a mistake to think that information is conveyed by the look of the control.

[–] Vincent@feddit.nl 1 points 2 days ago (1 children)

Well, I'd encourage you to keep an eye out; I think you'll find that the majority of controls on the web behave as I described. And I think that's a good thing, too: it's far quicker and easier to be able to deduce behaviour from the control you're handling at the moment, than having to scan the complete context. And especially if e.g. you're visually impaired, the latter can be a major hassle.

(And indeed, the other controls you mention almost never apply instantly, so their behaviour is still predictable. When they do, they'll often still have some other affordances to indicate that they do apply instantly.)

[–] FishFace@piefed.social 2 points 2 days ago (1 children)

GNOME settings pages don't have "apply" buttons. When do you think a selection from a drop-down or numerical selector takes effect?

Yes, most settings now take effect immediately, and that's great. (I think KDE still prefers a separate "apply" step though). That is (still) separate from the decision of how to style something which turns something on and off, which is what I'm complaining about. I don't take any issue with having things apply immediately.

You raise visual impairment, which is exactly why I'm complaining. Look at the image and tell me, which of the controls is on, and which is off?

image

[–] Vincent@feddit.nl 1 points 2 days ago (1 children)

True, there are exceptions (that's why I keep saying most), and I think the pattern is more common on web than on desktop. (Though I think Gnome also compensates a bit with their boxed lists as an additional affordance.)

Note that I am 100% on your side in saying that there are annoying toggle boxes that are unclear. In your image, I can only tell that the second is probably on because the right-hand side is usually used for the on state in LTR locales. But they can be better, e.g. with an on/off label integrated. Ironically, GNOME has a toggle to enable this:

[–] FishFace@piefed.social 1 points 2 days ago (1 children)

So (unsurprisingly) I modified the image to make my point. I don't know whether you will find it convincing with this revealed: I flipped the image because I too understand now (I did not when these switches were first introduced) that right = on. And I also desaturated the image to mimic colourblindness (achromatopsia). (Indeed, when they were first introduced I remember them being two shades of grey...)

[–] Vincent@feddit.nl 1 points 1 day ago

No, I was already convinced that relying on colour alone is insufficient. I still think they can be useful helpful if they don't rely on colour alone.