Difference between revisions of "PCManFM"

From NixOS Wiki
Jump to: navigation, search
(Add warning about the new wiki)
m (rollback unauthorized mass edits)
Tag: Rollback
 
Line 1: Line 1:
{{warning|1=You are reading an article on the deprecated unofficial wiki. For the up to date version of this article, see https://wiki.nixos.org/wiki/PCManFM.}}
 
 
 
[https://wiki.lxde.org/en/PCManFM PCManFM] is a free file manager application and the standard file manager of LXDE.
 
[https://wiki.lxde.org/en/PCManFM PCManFM] is a free file manager application and the standard file manager of LXDE.
  

Latest revision as of 10:56, 6 April 2024

PCManFM is a free file manager application and the standard file manager of LXDE.

Installation

Install the pcmanfm package.

Additional features

Add lxmenu-data to be offered a list of "Installed applications" when opening a file.

Add shared-mime-info to recognise different file types.

USB Automounting

For USB mounting support, add the following line to your configuration:

    services.gvfs.enable = true;

If automounting still does not work you may need to explicitly enable devmon and udisks2. Keep in mind that all removable media will automatically mounted even without pcmanfm running.

configuration.nix

    services.udisks2.enable = true;
    services.devmon.enable = true;

SAMBA mount support

Configuration can be found under the Samba wiki page.