GNOME: Difference between revisions

(drop 23.11 code)
(improve indendation)
Line 50: Line 50:


<syntaxhighlight lang="nixos">
<syntaxhighlight lang="nixos">
dconf = {
{
        enable = true;
  dconf = {
        settings = {
    enable = true;
                "org/gnome/shell" = {
    settings = {
                        disabled-user-extensions = false; # enables user extensions (disabled by default)
      "org/gnome/shell" = {
                        enabled-extensions = [
        disabled-user-extensions = false; # enables user extensions (disabled by default)
                                "blur-my-shell@aunetx"
        enabled-extensions = [
                                # ****
          "blur-my-shell@aunetx"
                        ];
          # ****
                };
        ];
      };


                # Configure individual extensions
      # Configure individual extensions
                "org/gnome/shell/extensions/blur-my-shell" = {
      "org/gnome/shell/extensions/blur-my-shell" = {
                        brightness = 0.75;
        brightness = 0.75;
                        noise-amount = 0;
        noise-amount = 0;
                };
      };
        };
    };
};
  };
}
</syntaxhighlight>
</syntaxhighlight>


To learn about settings that can be configured with dconf either look into "dconf editor" program or type <syntaxhighlight lang="shell">dconf watch /</syntaxhighlight> in the terminal and change settings from the GUI and see which options are responsible for that component/element.
To learn about settings that can be configured with dconf either look into "dconf editor" program or type <syntaxhighlight lang="shell">dconf watch /</syntaxhighlight> in the terminal and change settings from the GUI and see which options are responsible for that component/element.


=== Dark mode ===
=== Dark mode ===