Difference between revisions of "Thunar"

From NixOS Wiki
Jump to: navigation, search
(add thunar page)
 
m (rollback unauthorized mass edits)
Tag: Rollback
 
(8 intermediate revisions by 6 users not shown)
Line 1: Line 1:
Thunar is a gtk file manager originally made for xfce
+
Thunar is a GTK file manager originally made for [[Xfce]].
  
 
== Installation ==
 
== Installation ==
  
=== NixOS ===
+
Thunar will automatically be installed by [https://nixos.wiki/wiki/Xfce#Enabling enabling Xfce].
  
 +
If you want to install Thunar standalone, add to your <code>configuration.nix</code>:
 +
 +
<syntaxhighlight lang="nix">
 +
programs.thunar.enable = true;
 +
</syntaxhighlight>
 +
 +
== Configuration ==
 +
 +
If xfce is not used as desktop and therefore <code>xfconf</code> is not enabled, preference changes are discarded.
 +
In that case enable the <code>xfconf</code> program manually to be able to save preferences:
 
<syntaxhighlight lang="nix">
 
<syntaxhighlight lang="nix">
environment.systemPackages = with pkgs; [ xfce.thunar xfce.xfconf xfce.tumbler xfce.exo ]
+
programs.xfconf.enable = true;
 
</syntaxhighlight>
 
</syntaxhighlight>
  
xfconf is needed to save settings
+
=== Plugins ===
  
tumbler is needed for thumbnails
+
You can add plugins by including them in <code>programs.thunar.plugins</code> to your <code>configuration.nix</code>. For example:
  
exo is needed for <code>open terminal here</code> to function
+
<syntaxhighlight lang="nix">
 +
programs.thunar.plugins = with pkgs.xfce; [
 +
  thunar-archive-plugin
 +
  thunar-volman
 +
];
 +
</syntaxhighlight>
  
=== Home Manager ===
+
=== Other functionalities ===
  
Same as above but replace <code>environment.systemPackages</code> with <code>home.packages</code>
+
You can extend Thunar's functionalities by adding to your <code>configuration.nix</code>:
 +
 
 +
<syntaxhighlight lang="nix">
 +
services.gvfs.enable = true; # Mount, trash, and other functionalities
 +
services.tumbler.enable = true; # Thumbnail support for images
 +
</syntaxhighlight>
  
=== Non-NixOS ===
+
You can extend Tumbler's support to other file formats by adding more packages to <code>environment.systemPackages</code>. See [https://wiki.archlinux.org/title/File_manager_functionality#Thumbnail_previews here] for a list (the names may not match 1:1).
[https://nixos.org/manual/nixpkgs/stable/#sec-declarative-package-management declarative package management on non-nixos]
 
  
 +
== See also ==
 +
* [[PCManFM]]
  
 
[[Category:Applications]]
 
[[Category:Applications]]

Latest revision as of 11:02, 6 April 2024

Thunar is a GTK file manager originally made for Xfce.

Installation

Thunar will automatically be installed by enabling Xfce.

If you want to install Thunar standalone, add to your configuration.nix:

programs.thunar.enable = true;

Configuration

If xfce is not used as desktop and therefore xfconf is not enabled, preference changes are discarded. In that case enable the xfconf program manually to be able to save preferences:

programs.xfconf.enable = true;

Plugins

You can add plugins by including them in programs.thunar.plugins to your configuration.nix. For example:

programs.thunar.plugins = with pkgs.xfce; [
  thunar-archive-plugin
  thunar-volman
];

Other functionalities

You can extend Thunar's functionalities by adding to your configuration.nix:

services.gvfs.enable = true; # Mount, trash, and other functionalities
services.tumbler.enable = true; # Thumbnail support for images

You can extend Tumbler's support to other file formats by adding more packages to environment.systemPackages. See here for a list (the names may not match 1:1).

See also