bisby@lemmy.worldtoComic Strips@lemmy.world•"It's going to be fun to play this game again!" [Azul Crescent's silly scribbles]English
38·
21 days agoKatamari
Katamari
https://wiki.lineageos.org/devices/beyond1lte/
I just recently got rid of my oneplus 5 because the volume button stopped working. So I understand the motivation. But LineageOS has Android 14 running on the S10 and its very possible that when they release an Android 15 version, they also support the S10
It isn’t just about ungoogling things though. Having a monoculture in the browser space means that if Google makes a push to favor ads, say by removing certain extension support from their browser engine that everyone uses, then the entire internet suffers. It is effectively a monopoly.
Mozilla tries really hard sometimes to be unappealing, but there is value in not just letting Google have full control over the internet.
Which version of of SDDM (and presumably KDE) are you using?
One of the comments one of those threads you linked points out that the bugs you’re sharing are for has changed.
PlasmaExtras.PasswordField
has the button enabled! However, the implementation in the theme explicitly disables it.If you open up
/usr/share/sddm/themes/breeze/Login.qml
and scroll down to line 106. You’ll seerightActions: []
– this bit of code basically overrides the default behavior. It says "normally you have some actions here, but instead use this list, but [] is an empty list.So if you just comment that line out by adding
//
to the front of it… Everything should just work, since it will then revert back to using the built in value.However, the reason this was removed in the first place is in a comment on line 105:
// Disable reveal password action because SDDM does not have the breeze icon set loaded
If the icon set fails to load for whatever reason (if youre using a custom icon theme or something, i dunno why it might not be loaded), the button will fail to load again.
You can test drive the SDDM lockscreen by running
sddm-greeter-qt6 --test-mode --theme /usr/share/sddm/themes/breeze/
from the terminal.And this all assumes that you’re using the default breeze theme. If you are trying to use a different theme, not sure if any of this applies.