PCManFM: Difference between revisions

From NixOS Wiki
imported>Krey
Created page with "[https://wiki.lxde.org/en/PCManFM PCManFM] is a free file manager application and the standard file manager of LXDE. == Installation == Install the <code>pcmanfm</code> pack..."
 
imported>Samueldr
m Use syntaxhighlight
Line 7: Line 7:
For USB mounting support, install <code>gvfs</code> and add the following line to your configuration:[https://github.com/NixOS/nixpkgs/issues/29137]
For USB mounting support, install <code>gvfs</code> and add the following line to your configuration:[https://github.com/NixOS/nixpkgs/issues/29137]


<code>
<syntaxhighlight lang="nix">
environment.variables.GIO_EXTRA_MODULES = [ "${pkgs.gvfs}/lib/gio/modules" ];
  environment.variables.GIO_EXTRA_MODULES = [ "${pkgs.gvfs}/lib/gio/modules" ];
</code>
</syntaxhighlight>

Revision as of 21:37, 10 January 2018

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

Installation

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

For USB mounting support, install gvfs and add the following line to your configuration:[1]

  environment.variables.GIO_EXTRA_MODULES = [ "${pkgs.gvfs}/lib/gio/modules" ];