Nemo: Difference between revisions

m remove redundant category
Added using extensions
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
[https://github.com/linuxmint/nemo Nemo] is the default file manager for Cinnamon.
[https://github.com/linuxmint/nemo Nemo] is the default file manager for [[Cinnamon]].


== Installation ==
== Installation ==
Line 9: Line 9:
=== Set Nemo as default file browser ===
=== Set Nemo as default file browser ===


==== Home-Manager ====
To set Nemo as the default file browser, [[Default_applications|create a desktop entry]] and set it as a default application using [[Home Manager]]:
To set Nemo as the default file browser, [[Default_applications|create a desktop entry]] and set it as a default application using [[Home Manager]]:


Line 23: Line 24:
     };
     };
};}}
};}}
==== NixOS ====
On NixOS, you don't need to create a nemo.desktop file. Just add the following to your configuration:<syntaxhighlight lang="nixos"># configuration.nix
{ config, pkgs, ... }:
{
  # ...
  xdg = {
    mime.defaultApplications = {
      "inode/directory" = [ "nemo.desktop" ];
      "application/x-gnome-saved-search" = [ "nemo.desktop" ];
    };
  };
  # ...
}</syntaxhighlight>


=== Change the default terminal emulator for Nemo ===
=== Change the default terminal emulator for Nemo ===
Line 59: Line 75:
{{ic|<Alt>}}, {{ic|<Primary>}}, and {{ic|<Shift>}} can be used as key modifiers (for example, {{ic|<Primary><Shift>t}}).
{{ic|<Alt>}}, {{ic|<Primary>}}, and {{ic|<Shift>}} can be used as key modifiers (for example, {{ic|<Primary><Shift>t}}).


See [https://wiki.archlinux.org/index.php?title=Nemo Nemo - ArchWiki] for further information.
=== With extensions ===
When using {{nixos:package|nemo-with-extensions}}, the default Mint installation plugins (aside from nemo-share) are provided by default: {{Nixos:package|nemo-emblem}}, {{Nixos:package|folder-color-switcher}}, {{Nixos:package|nemo-python}}, and {{Nixos:package|nemo-fileroller}} are provided.<syntaxhighlight lang="nixos">
# configuration.nix
 
{ config, pkgs, ... }:
{
  environment.systemPackages = (with pkgs; [
    (nemo-with-extensions.override {
      extensions = with pkgs; [ nemo-seahorse ];
      # useDefaultExtensions = false;  # Uncomment to not add default extensions
    })
  ]);
}
</syntaxhighlight>See [https://wiki.archlinux.org/index.php?title=Nemo Nemo - ArchWiki] for further information.


[[Category:Applications]]
[[Category:File Manager]]
[[Category:File Manager]]