-
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.
* Combined FvwmPrompt, FvwmCommand, FvwmConsole, and FvwmMFL into a single SendToFvwm group. * Update the FvwmIdent page. * Some formatting changes, removed Module Description header, and put the table of contents under the main header.
- Loading branch information
1 parent
defb7b5
commit b14cd00
Showing
19 changed files
with
176 additions
and
143 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 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,54 @@ | ||
--- | ||
layout: wiki | ||
title: FvwmConsole | ||
type: sendtofvwm | ||
weight: 650 | ||
description: | | ||
FvwmConsole runs in a terminal (such as xterm) and allows one to send | ||
commands to the running instance of fvwm. This is a very useful module | ||
in testing new configurations. | ||
--- | ||
# FvwmConsole | ||
|
||
The FvwmConsole module allows the user to type fvwm configuration commands | ||
into a terminal that are sent to fvwm to be executed immediately. This tool | ||
is particularly useful for testing new configuration ideas, or opening up | ||
a console to send fvwm commands without having previously configured a | ||
menu, button, keybinding, etc in the configuration file. | ||
|
||
{% highlight fvwm %} | ||
# Launch FvwmConsole when fvwm starts. | ||
AddToFunc StartFunction Module FvwmConsole | ||
|
||
# Add FvwmConsole to a menu | ||
AddToMenu MenuName | ||
... | ||
+ "Fvwm&Console" Module FvwmConsole -terminal xterm | ||
{% endhighlight %} | ||
|
||
On fvwm3 and newer installs, FvwmConsole may no longer be installed. | ||
If launching FvwmConsole fails, then it has been replaced[^1] by [FvwmPrompt]( | ||
{{ "/Modules/SendToFvwm/FvwmPrompt" | prepend: site.wikiurl }}), | ||
and you must use that instead. Another useful tool to send commands to | ||
send commands to fvwm is [FvwmCommand]( | ||
{{ "/Modules/SendToFvwm/FvwmCommand" | prepend: site.wikiurl }}), | ||
which can be run from any current command line, without having | ||
to launch a full console. | ||
|
||
# Configuration Options | ||
|
||
FvwmConsole inherits its resources from the terminal it is ran in (xterm by | ||
default). You can append options to FvwmConsole to pass to the terminal to | ||
change the style of the terminal. You can also use the `-terminal` option | ||
to change the terminal FvwmConsole uses. | ||
|
||
{% highlight fvwm %} | ||
# Change FvwmConsole's style | ||
Module FvwmConsole -g 40x10 -fg black -bg green3 | ||
|
||
# Change FvwmConsole's terminal | ||
Module FvwmConsole -terminal rxvt | ||
{% endhighlight %} | ||
|
||
--- | ||
[^1]: Fvwm will only build and install one of FvwmConsole or FvwmPrompt |
Oops, something went wrong.