[ Home | About | Licence | About author | Contact ]

Written by Oleksandr Gavenko (AKA gavenkoa), compiled at 2015-10-05 from rev 764bb173578d.

FVWM.

Obtain FVWM capabilities.

$ fvwm-config --supports
$ if fvwm-config --supports-xft; then echo yes; else echo no; fi

$ fvwm-config --info
$ fvwm-config --prefix
$ fvwm-config --bindir
$ fvwm-config --fvwm-moduledir

Dump Fvwm configuration in runtime.

Run in Fvwm console:

PrintInfo style 2
PrintInfo bindings

and check results in ~/.xsession-errors.

Check functions from fvwm/functable.c:

$ FvwmCommand -i1 send_configinfo
$ FvwmCommand -i1 send_windowlist
$ FvwmCommand -i3 send_windowlist

Perl module for FVWM.

#!/usr/bin/perl -w
use lib `fvwm-perllib dir`;
use FVWM::Module;

or:

use lib `fvwm-config -p | tr -d '0`;
use FVWM::Module;