This adds a way to run the gsettings command for configuring dconf settings usually used by GNOME applications.
12 lines
335 B
Plaintext
12 lines
335 B
Plaintext
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')]",
|
|
}
|