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 Bug41·10 months 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 corner5·1 year 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.
doas
is relativly simple (a few hundred LOC), especially compared tosudo
. The main benefit ofrun0
overdoas
is that it isn’t a SUID binary, they are similary complex.
NekkoDroid@programming.devto Open Source@lemmy.ml•systemd Rolling Out "run0" As sudo Alternative7·1 year agoBasically.
systemd-run
was already able to do it, all that really changed is the interface for it. The change torun.c
in 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 replacement3·1 year 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
run0
uses 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 reboot
needs to be in thewheel
group) 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 Alternative8·1 year agoThis has already been possible, the patch modifying
run.c
to 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 Alternative2·1 year agoAs the other comment said, no. But I’ve had the idea and will to at some point write a
edit
script (that I can just setEDITOR=
to) that would just choose one of the first common editors. That could in theory have a-0
option to run as root (there also probably looking throughrun0
,doas
,sudo
andsu
). 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 replacement1·1 year 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 replacement41·1 year 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
dlopen
ed 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 replacement8·1 year 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 replacement3·1 year 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 replacement3110·1 year 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 replacement5·1 year agoit does its authorization with polkit (which IIRC defaults to allow all
wheel
group 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 likesudo
doesn’t need configuration.
NekkoDroid@programming.devto Linux@lemmy.ml•Systemd wants to expand to include a sudo replacement1314·1 year agoOne way to notice a person has “systemd derangement syndrome” is by looking at how they write
systemd
: if they write itSystemD
they 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 replacement102·1 year agohomed
isn’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.