Accent colors are coming with GNOME 47.
- 0 Posts
- 41 Comments
NekkoDroid@programming.devto
Linux@lemmy.ml•Systemd 256.1 Maintenance Release Fixes Home Directory Deletion Bug
41·1 year agoThere were talks a few years ago about changing sd-tmpfiles name but it was decide not worth it due to the churn and bikeshedding it would cause.
sd-tmpfiles is generally used to create, modify (e.g. permissions) and remove directories on the system. The home.conf is intended for systems that only ship /usr/ (e.g. containers) to create /home/ and /srv/ as a separate subvolume on btrfs
The BSOD really isn’t something to be mad at, it actually in theory is good but there is only so much you can do when a kernel panics. What you should be mad at is shitty drivers causing BSODs
which definitely seems out of scope.
Doesn’t seem out of scope for a system and service management suite. Like, the timeperiod where systemd was “just an init” was relativly brief (like half a year).
They should test this much more often and frequently. Unlike Gnome, KDE do actually care about their users, not just about themselves.
It’s not like GNOME is the only outlier here (for the specific icon problem sure), someone on the linux subreddid also posted this screenshot https://imgur.com/a/1ELtsJb. It seems to really just be that KDE apps kinda struggle out side of KDE. And most of the GNOME devs do care about the users as well, just they also care that their apps look as intended.
NekkoDroid@programming.devto
Linux@lemmy.ml•Issue for GTK to make their window decorarions clickable at the corner
5·2 years agoIt’s been a thing I personally have been wondering why this is how it is for a while. Personally I like most of the GNOME stuff, but this decision has always stood out as odd.
But then again I almost always use ctrl+w or alt-f4 to close apps, so I am mostly unaffected.
doasis relativly simple (a few hundred LOC), especially compared tosudo. The main benefit ofrun0overdoasis that it isn’t a SUID binary, they are similary complex.
NekkoDroid@programming.devto
Open Source@lemmy.ml•systemd Rolling Out "run0" As sudo Alternative
7·2 years agoBasically.
systemd-runwas already able to do it, all that really changed is the interface for it. The change torun.cin the patch itself was <400LOC, and the entire patch was <1.4k lines with most being docs, tests and utils for coloring the terminal.
NekkoDroid@programming.devto
Linux@lemmy.ml•Systemd wants to expand to include a sudo replacement
3·2 years agoI don’t understand how this is any improvement over pkexec
That has the same problem as
sudo: the SUID bit is set for it.The fact that
run0uses polkit is more of a byproduct that this kinda authentication is already done with polkit all over the place in systemd. You can have individual subcommand accessible to different users (for example everyone cansystemctl status, butsystemctl rebootneeds to be in thewheelgroup) which is why its generally used within systemd already. And it wouldn’t surprise me if again you can do it with this as well, limiting what commands can unconditionally run, need prompt or are completely blocked.
NekkoDroid@programming.devto
Open Source@lemmy.ml•systemd Rolling Out "run0" As sudo Alternative
8·2 years agoThis has already been possible, the patch modifying
run.cto be able to do this is not even 400 lines long and was mostly just exposing its feature in a different way. (the entire patch was <1.5k lines, with most being docs, tests and a bit of plumbing for the colored terminal)
NekkoDroid@programming.devto
Open Source@lemmy.ml•systemd Rolling Out "run0" As sudo Alternative
2·2 years agoAs the other comment said, no. But I’ve had the idea and will to at some point write a
editscript (that I can just setEDITOR=to) that would just choose one of the first common editors. That could in theory have a-0option to run as root (there also probably looking throughrun0,doas,sudoandsu). Not the editor, but doing the editing on a temp file and then copying with root
NekkoDroid@programming.devto
Linux@lemmy.ml•Systemd wants to expand to include a sudo replacement
1·2 years agoI don’t know, unless I personally allow the admin to have that kinda access to my files I wouldn’t really want it. And for that case you can enroll recovery keys (which would need to be manually stored, but still) or a fido token or whatever other supported mechanism there is, its LUKS2 backed encryption after all. Then there is also the possibility to just not encrypt the home directory at all.
NekkoDroid@programming.devto
Linux@lemmy.ml•Systemd wants to expand to include a sudo replacement
41·2 years ago- The attack surface is there either way, this is just functionality repackaged that existed already before (
systemd-run, which is calling into PID1) - all compression libraries (actually most libraries at this point) are
dlopened on demand (which was planned even before the attack, which is speculated that the attack was accelerated in timeline because he was on a timer before the change was released)
- The attack surface is there either way, this is just functionality repackaged that existed already before (
NekkoDroid@programming.devto
Linux@lemmy.ml•Systemd wants to expand to include a sudo replacement
8·2 years agoI guess my interpretation was too charitable.
Nothing in the protocol prevents you from splitting the server from the window manager, just everyone implementing the wayland server protocol didn’t see any benefit in splitting it out.
NekkoDroid@programming.devto
Linux@lemmy.ml•Systemd wants to expand to include a sudo replacement
3·2 years agoI think what they meant is that there are people that think: “Wayland is too fragmented, there should be 1 ‘Wayland Compositor’ and the rest should be window managers”
NekkoDroid@programming.devto
Linux@lemmy.ml•Systemd wants to expand to include a sudo replacement
3110·2 years agoThis isn’t exactly a “new” attack surface, so removing the attack surface that
sudo(and alternatives) is, is probably a net positive.
NekkoDroid@programming.devto
Linux@lemmy.ml•Systemd wants to expand to include a sudo replacement
5·2 years agoit does its authorization with polkit (which IIRC defaults to allow all
wheelgroup members) and giving users that shouldn’t be allowed root access, root access, is not something you ever want. This is usually referred to as unauthorized privilege escalation. Also, it isn’t likesudodoesn’t need configuration.
NekkoDroid@programming.devto
Linux@lemmy.ml•Systemd wants to expand to include a sudo replacement
1314·2 years agoOne way to notice a person has “systemd derangement syndrome” is by looking at how they write
systemd: if they write itSystemDthey are already in late stages of SDS and it isn’t curable anymore.
NekkoDroid@programming.devto
Linux@lemmy.ml•Systemd wants to expand to include a sudo replacement
102·2 years agohomedisn’t exactly a home directory replacement, more of an extension. You can mix and match homed and normal home directories like you want (on a per-user basis at least, not within a single user). It does have some nice things, such as user-password based encryption of the home directory, so the password is required to unlock it (no admin access) or automatically using subvolumes on btrfs.
Oh I dunno, maybe something with almost 700 comments? (HDR).
If apps don’t want to save their state when they close there isn’t much a window manager can do about that. The only part the window manager would be involved in is with positioning its window and that is hardly something very critical to the functionality of an app.