Gschema overrides not reliably sticking?
Something I've noticed (particularly with making images off of Bazzite) is that only about half of the gschemas I define (using BlueBuild's gschema module) seem to actually stick. My assumption here is that there's a race condition happening and I need to somehow push my settings lower down the chain of events.
What's the best way to do that? Should I just rename my gschema files like
zz50-whatever
or something as opposed to zz1-
?Solution:Jump to solution
Bazzite uses dconf for their customization, so maybe some of the settings from them are overriding your gschema-overrides
5 Replies
Solution
Bazzite uses dconf for their customization, so maybe some of the settings from them are overriding your gschema-overrides
It would be ideal if Ublue utilized gschema-overrides too, but that's currently not the priority for them
Ah, butts. So gotta put these overrides in a different way
either delete conflicting dconf settings from Bazzite,
or use dconf instead of gschema-overrides unfortunately
for the 1st method, sed can be used I believe
Okay, I'll take a look into this. Thanks for the advice!