-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Round 1 of wiki module pages updates.
This updates a few modules, and adds weights to the modules so they appear in the same order each time the website is generated.
- Loading branch information
1 parent
9135ae9
commit c79c774
Showing
17 changed files
with
223 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
layout: wiki | ||
title: FvwmCommand | ||
type: module | ||
weight: 660 | ||
description: | | ||
FvwmCommand is a python script which can send commands directly to to | ||
fvwm from any terminal or script, provided FvwmMFL is running. | ||
--- | ||
|
||
# FvwmCommand | ||
|
||
**Note:** In fvwm3, a new module [FvwmPrompt]( | ||
{{ "/Modules/FvwmPrompt" | prepend: site.wikiurl }}) | ||
exists that is a combination of FvwmCommand and [FvwmConsole]( | ||
{{ "/Modules/FvwmConsole" | prepend: site.wikiurl }}). | ||
Though due to golang dependencies, this new module is not in wide use yet. | ||
If FvwmPrompt is installed, you should use it instead. | ||
|
||
FvwmCommand is a command line tool that allows you to send commands | ||
directly to fvwm from any terminal or shell by talking to the | ||
[FvwmMFL]({{ "/Modules/FvwmMFL" | prepend: site.wikiurl }}) socket. | ||
FvwmCommand then sends the command you give it directly to fvwm. | ||
For example to launch [FvwmPager]( | ||
{{ "/Modules/FvwmPager" | prepend: site.wikiurl }}) from a terminal: | ||
|
||
{% highlight sh %} | ||
FvwmCommand Module FvwmPager 0 3 | ||
{% endhighlight %} | ||
|
||
You can send any command to fvwm, using `FvwmCommand <command>`. In | ||
order for FvwmCommand to function, FvwmMFL must be running to give | ||
FvwmCommand a socket to talk to fvwm though. So make sure you have | ||
started FvwmMFL from your start function: | ||
|
||
{% highlight fvwm %} | ||
AddToFunc StartFunction I Module FvwmMFL | ||
{% endhighlight %} | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
layout: wiki | ||
title: FvwmMFL | ||
type: module | ||
weight: 600 | ||
description: | | ||
FvwmMFL opens a unix file socket in which applications can talk to | ||
to and recieve events from fvwm written as JSON data packets. | ||
This allows one to write modules that can inneract via fvwm using | ||
most programing languages and just communicate to the FvwmMFL socket | ||
using JSON. | ||
--- | ||
|
||
# FvwmMFL | ||
|
||
This module has no command line or configuration options, and only | ||
opens a socket for other modules or applications to talk to. FvwmMFL | ||
is used by both [FvwmPrompt]({{ "/Modules/FvwmPrompt" | prepend: site.wikiurl }}) | ||
and [FvwmCommand]({{ "/Modules/FvwmCommand" | prepend: site.wikiurl }}), | ||
and must be started for them to function correctly. FvwmMFL should be started | ||
from the `StartFunction` in your config file. | ||
|
||
{% highlight fvwm %} | ||
AddToFunction StartFunction I Module FvwmMFL | ||
{% endhighlight %} | ||
|
||
Besides being required for FvwmPrompt and FvwmCommand, other applications | ||
can both talk to and receive event information from fvwm using the | ||
FvwmMFL socket. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.