|
NAMEFvwmPerl - the fvwm perl manipulator and preprocessorSYNOPSISFvwmPerl should be spawned by fvwm(1) for normal functionality.To run this module, place this command somewhere in the configuration: Module FvwmPerl [params] or: ModuleSynchronize FvwmPerl [params] if you want to immediately start to send commands to FvwmPerl. DESCRIPTIONThis module is intended to extend fvwm commands with the perl scripting power. It enables to embed perl expressions in the fvwm config files and construct fvwm commands.INVOCATIONIf you want to invoke the unique and persistent instanse of FvwmPerl, it is suggested to do this from the StartFunction. Calling it from the top is also possible, but involves some issues not discussed here.AddToFunc StartFunction I Module FvwmPerl There are several command line switches: FvwmPerl [ --eval line ] [ --load file ] [ --preprocess [ --quote char ] [ --winid wid ] [ --cmd ] [ --nosend ] [ --noremove ] [ line | file ] ] [ --export [names] ] [ --stay ] [ --nolock ] [ alias ] Long switches may be abbreviated to short one-letter switches. -e|--eval line - evaluate the given perl code -l|--load file - evaluate perl code in the given file -p|--preprocess [ file ] - preprocess the given fvwm config file The following 5 options are only valid together with --preprocess option. -c|--cmd line - an fvwm command to be preprocessed instead of file -q|--quote char - change the default '%' quote -w|--winid wid - set explicit window context (should begin with digit, may be in oct or hex form; this window id overwrites implicit window context if any) --nosend - do not send the preprocessed file to fvwm for Reading, the default is send. Useful for preprocessing non fvwm config files. --noremove - do not remove the preprocessed file after sending it to fvwm for Reading, the default is remove. Useful for debugging. -x|--export [names] - define fvwm shortcut functions (by default, two functions named "Eval" and "."). This option implies --stay. -s|--stay - continues an execution after --eval, --load or --preprocess are processed. By default, the module is not persistent in this case, i.e. --nostay is assumed. --nolock - when one of the 3 action options is given, this option causes unlocking fvwm immediately. By default the requested action is executed synchronously; this only makes difference when invoked like: ModuleSynchronous FvwmPerl --preprocess someconfig.ppp If --nolock is added here, ModuleSynchronous returns immediately. Note that Module returns immediately regardless of this option. USING ALIASAliases allow one to have several module invocations and work separately with all invocations, here is an example:ModuleSynchronous FvwmPerl FvwmPerl-JustTest SendToModule FvwmPerl-JustTest eval $a = 2 + 2; $b = $a SendToModule FvwmPerl-JustTest eval cmd("Echo 2 + 2 = $b") KillModule FvwmPerl FvwmPerl-JustTest PREPROCESSING EXAMPLEOne of the effective proprocessing solutions is to pass the whole fvwm configuration with embedded perl code to "FvwmPerl --preprocess". An alternative approach is to write a perl script that produces fvwm commands and sends them for execution, this script may be loaded using "FvwmPerl --load". There are however intermediate solutions that preprocess only separate configuration lines (or alternatively, execute separate perl commands that produce fvwm commands).The following code snippet adds ability of arithmetics and string scripting to certain lines that need this. To use this, you want to start FvwmPerl as your first command so that other commands may be asked to be preprosessed. ModuleSynchronize FvwmPerl AddToFunc . + I SendToModule FvwmPerl preprocess -c -- $* . Exec exec xterm -name xterm-%{++$i}% # use unique name . GotoDesk 0 %{ $[desk.n] + 1 }% # go to next desk . Exec exec %{ -x "/usr/bin/X11/aterm" ? "aterm" : "xterm" }% -sb # center a window Next (MyWindow) . Move \ %{($WIDTH - $[w.width]) / 2}%p %{($HEIGHT - $[w.height]) / 2}%p . Exec exec xmessage %{2 + 2}% # simple calculator . %{main::show_message(2 + 2, "Yet another Calculator"); ""}% ACTIONSThere are several actions that FvwmPerl may perform:
Examples: %Prefix "AddToFunc SwitchToWindow I" Iconify off WindowShade off Raise WarpToWindow 50 50 %End %ModuleConfig FvwmPager destroy Colorset 0 Font lucidasans-10 DeskTopScale 28 MiniIcons %End ModuleConfig FvwmPager %Prefix "All (MyWindowToAnimate) ResizeMove " 100 100 %{($WIDTH - 100) / 2}% %{($HEIGHT - 100) / 2}% %Repeat %{$count}% br w+2c w+2c w-1c w-1c %End %Repeat %{$count}% br w-2c w-2c w+1c w+1c %End %End Prefix Additional preprocess parameters --nosend and --noremove may be given too. See their description at the top.
These 4 actions may be requested in one of 3 ways: 1) in the command line when FvwmPerl is invoked (in this case FvwmPerl is short-lived unless --stay or --export is also given), 2) by sending the corresponding message in fvwm config using SendToModule, 3) by calling the corresponding perl function in perl code. FUNCTIONSThere are several functions that perl code may call:
VARIABLESThere are several global variables in the main namespace that may be used in the perl code:$a, $b, ... $h @a, @b, ... @h %a, %b, ... %h They all are initialized to the empty value and may be used to store a state between different calls to FvwmPerl actions (eval and load). If you need more readable variable names, either write "no strict 'vars';" at the start of every perl code or use a hash for this, like: $h{id} = $h{first_name} . " " . $h{second_name} or use a package name, like: @MyMenu::terminals = qw( xterm rxvt ); $MyMenu::item_num = @MyMenu::terminals; There may be a configuration option to turn strictness on and off. MESSAGESFvwmPerl may receive messages using the fvwm command SendToModule. The names, meanings and parameters of the messages are the same as the corresponding actions, described above.Additionally, a message stop causes a module to quit. A message unexport [func-names] undoes the effect of export, described in the ACTIONS section. A message dump dumps the contents of the changed variables (not yet). EXAMPLESA simple test:SendToModule FvwmPerl eval $h{dir} = $ENV{HOME} SendToModule FvwmPerl eval load($h{dir} . "/test.fpl") SendToModule FvwmPerl load $[HOME]/test.fpl SendToModule FvwmPerl preprocess config.ppp SendToModule FvwmPerl export Eval,PerlEval,PerlLoad,PerlPP SendToModule FvwmPerl unexport PerlEval,PerlLoad,PerlPP SendToModule FvwmPerl stop The following example handles root backgrounds in fvwmrc. All these commands may be added to StartFunction. Module FvwmPerl --export PerlEval # find all background pixmaps for a later use PerlEval $a = $ENV{HOME} . "/bg"; \ opendir DIR, $a; @b = grep { /xpm$/ } readdir(DIR); closedir DIR # build a menu of background pixmaps AddToMenu MyBackgrounds "My Backgrounds" Title PerlEval foreach $b (@b) \ { cmd("AddToMenu MyBackgrounds '$b' Exec fvwm-root $a/$b") } # choose a random background to load on start-up PerlEval cmd("AddToFunc \ InitFunction + I Exec exec fvwm-root $a/" . $b[int(random(@b))]) ESCAPINGSendToModule just like any other fvwm commands expands several dollar prefixed variables. This may clash with the dollars perl uses. You may avoid this by prefixing SendToModule with a leading dash. The following 2 lines in each pair are equivalent:SendToModule FvwmPerl eval $$d = "$[DISPLAY]" -SendToModule FvwmPerl eval $d = "$ENV{DISPLAY}" SendToModule FvwmPerl eval \ cmd("Echo desk=$d, display=$$d") SendToModule FvwmPerl preprocess -c \ Echo desk=%("$d")%, display=%{$$d}% Another solution to avoid escaping of special symbols like dollars and backslashes is to create a perl file in ~/.fvwm and then load it: SendToModule FvwmPerl load build-menus.fpl If you need to preprocess one command starting with a dash, you should precede it using "--". # this prints the current desk, i.e. "0" SendToModule FvwmPerl preprocess -c Echo "$%{$a = "c"; ++$a}%" # this prints "$d" SendToModule FvwmPerl preprocess -c -- -Echo "$%{"d"}%" # this prints "$d" (SendToModule expands $$ to $) SendToModule FvwmPerl preprocess -c -- -Echo "$$%{"d"}%" # this prints "$$d" -SendToModule FvwmPerl preprocess -c -- -Echo "$$%{"d"}%" Again, it is suggested to put your command(s) into file and preprocess the file instead. CAVEATSFvwmPerl being written in perl and dealing with perl, follows the famous perl motto: "There's more than one way to do it", so the choice is yours.Here are more pairs of equivalent lines: Module FvwmPerl --load "my.fpl" --stay Module FvwmPerl -e 'load("my.fpl")' -s SendToModule FvwmPerl preprocess --quote '@' my.ppp SendToModule FvwmPerl eval preprocess({quote => '@'}, "my.ppp"); Warning, you may affect the way FvwmPerl works by evaluating appropriate perl code, this is considered a feature not a bug. But please don't do this, write your own fvwm module in perl instead. SEE ALSOThe fvwm(1) man page describes all available commands.Basically, in your perl code you may use any function or class method from the perl library installed with fvwm, see the man pages of perl packages General::FileSystem, General::Parse and FVWM::Module. AUTHORMikhael Goikhman <migo@homemail.com>.
Visit the GSP FreeBSD Man Page Interface. |