engine: resources: Add a gsettings resource

This adds a way to run the gsettings command for configuring dconf
settings usually used by GNOME applications.
This commit is contained in:
James Shubin
2025-09-29 21:40:06 -04:00
parent 52fbc31da7
commit f588703474
2 changed files with 402 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
gsettings "org.gnome.desktop.interface clock-show-seconds" {
type => "bool",
value => true,
}
gsettings "org.gnome.desktop.input-sources sources" { # happens to match schema/key args
schema => "org.gnome.desktop.input-sources",
key => "sources",
type => "custom",
value => "[('xkb', 'ca+eng'), ('xkb', 'ca'), ('xkb', 'us')]",
}