Forrest logo
back to context overview

gsettings

List of commands for gsettings:

  • gsettings:ai:4a540 change timezone in gnome using gsettings
    $ gsettings set org.gnome.desktop.interface clock-timezone 'YOUR_TIMEZONE'
    try on your machine
    explain this command
  • gsettings:ai:5c99f Gets the URI of the current desktop background picture
    $ gsettings get org.gnome.desktop.background picture-uri
    try on your machine
    explain this command
  • gsettings:ai:79021 Enable experimental fractional scaling feature in GNOME Mutter
    $ gsettings set org.gnome.mutter experimental-features "${'x11-randr-fractional-scaling'}"
    try on your machine
    explain this command
  • gsettings:ai:8b05e how do I change timezone in gnome using gsettings that works
    $ gsettings set org.gnome.desktop.datetime automatic-timezone false; gsettings set org.gnome.desktop.datetime timezone '${TIMEZONE}'
    try on your machine
    explain this command
  • gsettings:tldr:4d99e gsettings: Display the human-readable description of a key.
    $ gsettings describe ${org-example-schema} ${example-key}
    try on your machine
    explain this command
  • gsettings:tldr:4e7ee gsettings: Display schema-allowed values for a key (helpful with enum keys).
    $ gsettings range ${org-example-schema} ${example-key}
    try on your machine
    explain this command
  • gsettings:tldr:51963 gsettings: Unset a key, so that its schema default value will be used.
    $ gsettings reset ${org-example-schema} ${example-key}
    try on your machine
    explain this command
  • gsettings:tldr:55f95 gsettings: Print the value of a key or the schema-provided default if the key has not been set in `dconf`.
    $ gsettings get ${org-example-schema} ${example-key}
    try on your machine
    explain this command
  • gsettings:tldr:906e5 gsettings: Display all (non-relocatable) schemas, keys, and values.
    $ gsettings list-recursively
    try on your machine
    explain this command
  • gsettings:tldr:d26da gsettings: Display all keys and values (default if not set) from one schema.
    $ gsettings list-recursively ${org-example-schema}
    try on your machine
    explain this command
  • gsettings:tldr:e8add gsettings: Set the value of a key. Fails if the key doesn't exist or the value is out of range.
    $ gsettings set ${org-example-schema} ${example-key} ${value}
    try on your machine
    explain this command
back to context overview