Nemo: Difference between revisions

Added fork info
Added declarative preference configuration
Line 88: Line 88:
   ]);
   ]);
}
}
</syntaxhighlight>See [https://wiki.archlinux.org/index.php?title=Nemo Nemo - ArchWiki] for further information.
</syntaxhighlight>


=== Declarative preference configuration ===
Certain aspects of Nemo can be configured decoratively.<syntaxhighlight lang="nixos">
{
  programs.dconf.profiles.user.databases = [
    {
      settings = {
        "org/nemo/preferences" = {
          click-policy = "double";
          date-format = "iso";
          show-advanced-permissions = true;
          show-hidden-files = true;
          show-toggle-extra-pane-toolbar = true;
          size-prefixes = "base-10";
          tooltips-in-icon-view = false;
          tooltips-in-list-view = false;
        };
        "org/nemo/preferences/menu-config" = {
          selection-menu-open-as-root = false;
          selection-menu-open-in-new-tab = false;
          selection-menu-pin = false;
        };
      };
    }
  ];
}
</syntaxhighlight>You can use {{Nixpkg|dconf-editor}} to view existing dconf entries made through the Nemo preferences menu, or use [https://github.com/Denperidge/scripts/blob/main/development/dconf-to-nixos dconf-to-nixos] to export your current preferences into copy-pasteable NixOS settings.
See [https://wiki.archlinux.org/index.php?title=Nemo Nemo - ArchWiki] for further information.
[[Category:Applications]]
[[Category:Applications]]
[[Category:File Manager]]
[[Category:File Manager]]