On 03/12/2012 11:47 AM, Roman Grazhdan wrote:
It's about FvwmPiazza again. At cruncbanglinux forums Thomas kindly
proposed to use

ModulePath +:$./modules


There is an extra dollar sign in your ModulePath (I think that is causing your issues):

Also you have using ./modules this is a relative path, but this could cause issues depending on the cwd at the time that path is used, best to use full paths.

From the fvwm man page

The ModulePath may contain environment variables such as $HOME (or ${HOME}). Further, a '+' in the path is expanded to the previous value of the path, allowing easy appending or prepending to the path.

              For example:

                  ModulePath ${HOME}/lib/fvwm/modules:+

So I think you want ModulePath +:${HOME}/modules/ Though I think the example in the manpage is better since it makes your custom path be first on the module list over the default (This is useful if you want to patch/use a custom fvwm module that already has the same name in the full path).

Reply via email to