Quantcast
Username/Email:  Password: 

Useful Things You Can Do with FVWM

Learn how to take screenshots quickly, change window titles and reconfigure a running FVWM instance.


FVWM is a window manager used with the
X Window System, which is the standard GUI for UNIX. This article explains a few
useful things you can do with FVWM, including how to take screenshots
conveniently, how to easily change a window's title and how to
reconfigure easily a running FVWM instance.

This article is aimed at fairly knowledgeable UNIX users. A little
programming experience would be helpful, but you probably can manage
without it. No knowledge of X or FVWM is assumed.

The ideas presented in this document were tested with FVWM 2.4.16. They
should work with any FVWM 2 version, however. Scripts presented in this
document are written in Bash; I used the 2.05a.0(1)-release, but they
should work in any version. Finally, I run Debian Linux 3.0. This means
the utilities invoked from the shell scripts are assumed to be the
standard Linux ones or to behave like them.
Taking Screenshots Conveniently
The method I present here allows you to save a screenshot of the
current window by selecting an option from one of FVWM's window menus.
If you use FVWM, it's almost certainly configured to put one or more
buttons on the titlebar of each window. When clicked, one of these buttons--probably
the one in the top left corner--brings up a menu that lists window operations
such as move, resize and so on. We're going to modify this menu to have
two new options, Take screenshot and Take named screenshot. Selecting the former
will cause a screenshot with a unique name to be put in a standard directory.
Selecting the latter will do the same thing, except it will prompt you for a
name for the new image.

You may ask, why is this useful? You may go on to ask, can I not simply
use a standard window-dumping utility, such as xwd, to take my screenshot?
These are good questions, but the method I'm outlining offers several advantages.
First, my method is more convenient than switching to another window and giving a
command to take a screenshot. Second, my method chooses a filename for you,
relieving you of the burden. The filename chosen is unique, ensuring that
screenshots can be ordered according to the time at which they were taken.

The savings in time and trouble may seem minor, but when you need to
take a series of screenshots from a particular window, they add up.
Imagine that you want to explain to a client how to perform a particular
operation. A good way of doing so is to send him a series of screenshots
showing him every step in the sequence. Saving such a series is much
less trouble with the method I'm about to outline.
FVWM Menu Definitions
As mentioned above, we're going to add two new options to an FVWM menu. To
begin, let's look at how FVWM menus are defined. The following code, taken
from a sample configuration file shipped with FVWM 2.4.16, defines an FVWM
menu called Window-Ops2. More precisely, it adds elements to the end of the menu.


  AddToMenu Window-Ops2   "&Move"          Move
  +                       "&Resize"        Resize
  +                       "&Raise"         Raise
  +                       "&Lower"         Lower
  +                       "(De)&Iconify"   Iconify
  +                       "(Un)&Stick"     Stick
  +                       "(Un)&Maximize"  Maximize
  +                       ""               Nop
  +                       "&Delete"        Delete
  +                       "&Close"         Close
  +                       "&Destroy"       Destroy
  +                       "&ScrollBar"     Module FvwmScroll 2 2
  +                       "&Print"         PrintFunction
  +                       "&Print Reverse" PrintReverseFunction

A full description of how to define menus in FVWM is unnecessary for our
purposes, so I'm not going to give one. An outline is necessary,
however. I begin by recapitulating the above command in the following
table, labeling each component:
Command for Adding to Menu DefinitionName of MenuMenu LabelFVWM Code for Menu Action AddToMenu Window-Ops2&MoveMovePlus Sign Menu LabelFVWM Code for Menu Action+ &ResizeResize+ &RaiseRaise+ &LowerLower+ (De)&IconifyIconify+ (Un)&StickStick+ (Un)&MaximizeMaximize+  Nop+ &DeleteDelete+ &CloseClose+ &DestroyDestroy+ &ScrollBarModule+ &PrintPrint Function+ &PrintReverseReverse Print Function
This table shows the structure of the command. The first element is
AddToMenu, an FVWM command. Next comes Window-Ops2, the name of the
menu. After that comes &Move, which defines a menu label; I explain the
function of the ampersand in a minute. Then comes Move, which is an
FVWM command that is executed if the user chooses Move from the menu.
Following this are a number of lines. Each line begins with a plus
sign, which is followed by a label and then an FVWM command, possibly
with arguments. In summary, the essence of the AddToMenu command is to
bind menu labels to actions.

Now, about those ampersands: they're used in labels to define hotkeys.
FVWM looks at the character after the ampersand to find out what the
hotkey is. For example, a label of &Move defines M as a hotkey. If
the user presses the M key after bringing up the menu, this is
equivalent to clicking on the Move option.
Adding Our Own Action to the Menu
Suppose we want a simple way of saving a screenshot of the current window, so that
when we select the correct option from a menu, a screenshot is saved to
the file /tmp/screenshot. We can achieve this by adding the following line
to the end of the AddToMenu command listed above:


  + "Take screenshot" Exec xwd -id $w -out /tmp/screenshot

Let's examine how this works. As already explained, the first two elements
of the line are a plus sign and a label. Then comes the FVWM command,
which in this case is:


  Exec xwd -id $w -out /tmp/screenshot

The command name is Exec, which allows one to execute an external
command. Its arguments are the external command, followed by the
external command's arguments. In this case, the external command is
xwd,
and the arguments passed to it by FVWM are -id $w -out
/tmp/screenshot.

The notation $w in these arguments needs some explanation. It's a
special FVWM variable that stands for the window ID of the current
window. When FVWM runs the above xwd command, it replaces the argument
$w with the relevant window ID.

What is a window ID? The X Window System needs a way of identifying
and referring to windows. It does so by assigning each window a unique
number, known as the window ID.

For our purposes, you don't need to understand xwd's other arguments
just yet. For now, all you need to know is that the command given above
causes xwd to put a screenshot of the current window in the file
/tmp/screenshot.

At this point, you may be asking, FVWM has many menus; how do I
identify the one I need to modify? The answer is the correct one
probably is the one called Window-Ops2, but it all depends on whoever
packaged and configured FVWM for you. The best way to find the correct
menu is to search your FVWM config file for a menu that uses all or
most of the following functions: Move, Resize, Raise, Lower, Iconify, Close.
If you find such a menu, it's almost certainly the right one.
Running Our Window-Dumping Program
We've completed the preliminaries and now are ready to start looking
at the promised solution. It involves a program I call savescreenshot.
To have FVWM run it to take a screenshot, we add the following line to
the appropriate AddToMenu command:


  + "Take screens&hot" Exec savescreenshot $w
  + "Take &named screenshot" Exec savescreenshot -n $w

You need to make sure savescreenshot can be found by searching
the PATH that was defined when FVWM was invoked. If it can't, you can
use an absolute pathname for savescreenshot. Also, notice that the
above labels make H and N into hotkeys.
xwd, xwud and Conversion Programs
To actually take the screenshot, savescreenshot relies on xwd. Although
several screenshot utilities exist, I chose xwd because it comes packaged
with X. xwd's basic usage is as follows:


xwd [-id window_ID] [-out output_file]

where window_ID and output_file should be replaced by the actual names of the window ID and output
file, respectively.

The -out option, as the summary above suggests, directs xwd's output to
the specified output file; if you don't supply it, xwd writes to its
standard output. The -id option tells xwd to use the window with the
specified window ID. If you don't supply it, xwd changes the mouse
pointer's shape to indicate that it wants you to click in a window to
select it. When you've done so, it takes a screenshot of that window.

xwd uses its own special image format. This format doesn't use
compression, so output files often are quite large. You usually
want to convert the output file to a format such as PNG; I'll cover this
in a minute.

To view xwd's output files, you can use xwud, which also comes packaged
with X. You can specify an input file with the -in option. The
command xwud -in browser-window would display
the screenshot stored in the file browser-window.

To convert files in xwd format, you can use convert from the
ImageMagick suite.
The following commands convert an image to various common formats and
should be self-explanatory:


  convert browser-window browser-window.png
  convert browser-window browser-window.jpg

If you want to use the
netpbm tools,
the following two commands correspond to the two commands above:


  xwdtopnm < browser-window | pnmtopng > browser-window.png
  xwdtopnm < browser-window | pnmtojpeg > browser-window.jpg

Converting Made Easy
I have a script called convert-xwd that makes the process of converting a slew of
XWD files much easier. If you supply arguments, it assumes they're
the names of XWD files and converts them to PNG format. If you
supply no arguments, it finds all of the XWD files in the current
directory and converts them. After successfully converting an XWD file
to PNG, it deletes the XWD file. Here's the script:


  #!/bin/bash

  main() {
    if [ $# = 0 ]
    then
      do_files *
    else
      do_files "$@"
    fi
  }

  do_files() {
    local file

    for file in "$@"
    do
      if file "$file" | fgrep -q ": XWD X-Windows Dump image data,"
      then
	echo "Doing $file"
	convert "$file" "$file.png" && rm "$file"
      fi
    done
  }

  main "$@"

I've given two sample invocations of savescreenshot. Now it's time
to explain what they do. As the accompanying labels suggest,
when run with no arguments, savescreenshot simply saves a screenshot,
and when passed the -n option, it saves and names a screenshot.

savescreenshot uses two directories, $HOME/.screenshots/t and
$HOME/.screenshots/n. If they don't exist, it creates them. In the first
directory, savescreenshot saves a screenshot whose name has the form of
NNN-HHMM.SS. NNN is a three-digit number representing the number of the
day in the year, HH is a two-digit number representing the hour, MM is a
two-digit number for the minute and SS is a two-digit number for the second.

The second directory, $HOME/.screenshots/n, is left untouched unless the -n option was given.
If it was, savescreenshot pops up a window to ask the user what name the
screenshot should have. After the user has answered, savescreenshot
creates a symbolic link, using the name entered in the popup window, in
$HOME/.screenshots/n pointing to the screenshot in $HOME/.screenshots/t.

The user needs to know when the screenshot has been taken so that he
can continue interacting with the window he's dumped. xwd beeps
when it's finished, but in case you have the bell disabled, as I do,
savescreenshot also makes the screen flash red when xwd has completed.

Here's the savescreenshot program. I don't believe it needs much
comment. One thing to note, however, is it handles prompting the
user for a name by invoking itself again with a private option.

Another interesting feature is the savescreenshot program attempts
to delay the screenshot a little if it believes the window may be
slow to update. This can happen with windows whose contents are
fetched over a network. Examples of applications that create such
windows are remote administration programs such as VNC and rdesktop.


  #!/bin/bash

  main() {
    dir=~/.screenshots
    timedir=$dir/t
    namedir=$dir/n

    test -e "$timedir" || mkdir -p "$timedir"
    test -e "$namedir" || mkdir -p "$namedir"

    menu_linger_time=.1

    # we wait this amount of time to allow for the menu obscuring the
    # window to disappear.

    prompt_for_name=false

    timestamp=`date +%j-%H%M.%S`

    case "$1" in
      -n)
	prompt_for_name=true
	shift
      ;;
      -p)
	timestamp=$2
	read -p "Please supply name for screenshot: " name
	ln -s "../t/$timestamp" "$namedir/$name" 
	exit
    esac

    window_id=$1

    sleep $menu_linger_time

    sleep `get_delay_for_update $window_id`

    xwd -id "$window_id" -out "$timedir/$timestamp"

    xrefresh -solid red
    # this is to inform the user that xwd has finished.

    sleep .5
    xrefresh -solid red

    # just in case the user blinked and missed the first flash.

    if $prompt_for_name
    then
      title="Please supply name..."
      x rxvt -T "$title" -n "$title" -e "$0" -p "$timestamp"
    fi
  }

  # this function estimates how long it will take the application to repaint
  # the part of the window uncovered when the FVWM menu obscuring it disappears.
  # most applications repaint almost instantaneously, but some applications which
  # need to fetch data over a network in order to repaint take a little time.
  # 
  # this method isn't failsafe, because the window's title may have been 
  # manually changed.

  get_delay_for_update() {
    local window_id=$1

    case "`window_title "$window_id"`" in
      TightVNC:\ *)
	echo 2
      ;;
      rdesktop\ *)
	echo 1
      ;;
      *)
	echo 0
    esac
  }

  window_title() {
    local window_id=$1

    xwininfo -id "$window_id" | perl -ne 'if(/"(.*)"\s*$/) { print $1; exit }'
  }

  main "$@"

Making screenshots is a good thing to know how to do, but sometimes
you want to capture continuous video.
Here's
a link
to an interesting article on Newsforge that describes how
to do this task.
Changing a Window Title
Your FVWM undoubtedly is configured to put a titlebar at the top of every
window. To be entirely accurate here, I should have said nearly
every window. Some applications, such as xbiff, create
small persistent windows, and putting a titlebar on them would clutter the
screen needlessly. These titles also are used by window-listing
facilities, such as FVWM's WindowList command or its FvwmWinList module.

Below I present a program that easily changes the title on a window. It
is invoked by opening the window operations menu--the same one we
modified in the previous section--choosing the Change title option and
entering the new title when prompted, whereupon the window's title
is changed.

I often find that I have many windows open at one time. They obscure one
another, of course, so the only way to manage them and bring up the
one I want when I need it is to use some window-listing facility.

In order for me to be able to find the window I want in the list,
windows need to have informative titles. Applications don't always
choose informative titles for their windows, however. Furthermore, sometimes
the functions of windows change over time, making the initial title
inappropriate. Other times, I start several instances of one
application, and they all use the same title, making it impossible to
distinguish between them.

I've covered modifying FVWM menu definitions in an earlier section (see FVWM
Menu Definitions), so I won't go over it again. Instead, below is the
line you need to add to the relevant menu definition in order to be able
to change the title:


+   "Change &title" Exec set-new-title $w

As before, if set-new-title isn't in the PATH, you have to use an
absolute pathname.

Here's the program, called set-new-title. It relies on
xwit, which is the
utility that actually changes the title.


  #!/bin/bash

  set -u

  main() {
    window_id=$1

    title=`xwininfo -id "$window_id" | perl -ne 'print $1 if /"(.*)"\s*$/'`

    if ! tempfile=`mktemp` 
    then
      echo "Cannot create temporary file" 1>&2
      exit 1
    fi

    echo "$title" > "$tempfile"

    popup_window_title="Choose new title in editor, then save and exit..."

    rxvt -T "$popup_window_title" -n "$popup_window_title" \
      -e "${EDITOR:-vi}" "$tempfile"

    newtitle=`head -c 1000 "$tempfile"`

    xwit -id "$window_id" -name "$newtitle"
  }

  main "$@"

Reconfiguring a Running FVWM Instance
Sometimes one wants to temporarily reconfigure FVWM, perhaps to test the
effect of some configuration command. One way to do this is to modify
the config file and then restart FVWM. You probably will find, depending,
of course, on how your FVWM is configured, that if you click on the root
window, you get a menu containing the option Restart FVWM. This is a little
tedious, however. Maneuvering the mouse to the root window, clicking on it
and choosing the option to restart FVWM takes time, particularly if the
root window is completely obscured by windows. And the restart of FVWM
takes a significant fraction of a second. There's a better and faster
way--the program FvwmCommand, which comes packaged with FVWM.

FvwmCommand can perform a number of functions. We're only interested in
one function, however: sending commands to FVWM. Sending commands is a
simple task: one simply runs FvwmCommand
command_to_send. For example, the command to restart FVWM is called
Restart, so to restart FVWM, one only need give the command FvwmCommand
Restart at the shell prompt.

In order for FvwmCommand to work, it needs to talk to FVWM. It
doesn't do so directly, however; instead, it does so through an
intermediary, called FvwmCommandS. FvwmCommandS is an FVWM module, which is
a program started by FVWM that communicates with it by means of a special protocol.

The best way to get FVWM to start FvwmCommandS is to put a command to
this effect in FVWM's config file. The command to use is Module, and it
takes as its argument the name of the module to start. So in this case,
the full command is Module FvwmCommandS. Once you've put
this command into the FVWM config file and restarted FVWM, you should find that
FvwmCommand works for you.
Resources
"Basic FVWM
Configuration"

"A Toolbox for the
X User"

Ronan McGoran is a UNIX system administrator. His home page can be found
here.

______________________

Comments

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.

Useful Things You Can Do with FVWM

Thomas Adam's picture

Not a bad article on the whole. :) My only gripe with it is that you seem to ignore Fvwm's internal functionality in favour of using superfluous external shell-scripts. Why? For instance, you could use Fvwm{Script,Form} to do all of the preconfigurations easily enough. Not to mention this is the whole reason "PipeRead" exists.

Your title change of window is slightly OTT as well. It would be better to outline the power of Fvwm by actually using its features rather than showing us how good it is to call external scripts. One trick that you can do to title windows:


AddToFunc TitleMeDifferently
+ I ThisWindow ($0) PipeRead 'echo exec xprop -id $[w.id] -set WM_NAME \"$1\"'

Then you can use:


TitleMeDifferently xterm somenewtitle

FVWM for Artists

Anonymous's picture

FVWM can be set up with multiple desktops and zero edge resistance so that an aquired graphic can be stretched across as many desktops as required so that one aquired dot or one print out dot equals one screen pixel.
The results of modifying edges and shading can be seen on a real looking picture as it would appear in the output.

Nice, but what's with all the shell scripts?

Paul Smith's picture

FVWM has a number of modules, including things like FvwmForm which give you a very simple-to-use graphical form generator, that is much nicer for asking users for input than popping an xterm/rxvt and asking from the shell. Someone else commented on starting a new xterm on a remote system; as an example of using FvwmForm I show one I use to do this:


$ cat ~/.fvwm/XTermForm
# -*-fvwm-*-
#
# This is an FvwmForm definition file for creating specific xterms

DestroyModuleConfig XTermForm*

*XTermForm: WarpPointer

*XTermForm: Line center
*XTermForm: Text "Create New XTerm"
*XTermForm: Line left
*XTermForm: Text "Username:"
*XTermForm: Input UserName 12 "psmith"
*XTermForm: Line left
*XTermForm: Text "Login to host:"
*XTermForm: Input HostName 32 "localhost"
*XTermForm: Line left
*XTermForm: Text "Start on host:"
*XTermForm: Selection LocalSel single
*XTermForm: Choice Local Local on "Local"
*XTermForm: Choice Remote Remote off "Remote"
*XTermForm: Line expand
*XTermForm: Button quit "Create" ^M
*XTermForm: Command Exec rterm -l $(UserName) $(Remote?-r) $(HostName)
*XTermForm: Button restart "Clear"
*XTermForm: Button quit "Cancel" ^[
*XTermForm: Command Nop

Then in one of my menus I have:


+ "%menu/terminal.xpm%XTerm" Module FvwmForm XTermForm

(the stuff between the %...% in the menu title is the name of an icon to put in the menu.)

The rterm mentioned above is a script I wrote that handles creating terminals remotely (with DISPLAY set to my local host) or locally (then logging in within the xterm), with different users, etc. It's sort of customized to my environment so I won't include it but it should be straightforward to write your own, or you can simplify things by leaving out the local/remote option altogether.

I actually have a bunch of these forms for different kinds of things; it really helps create a more integrated desktop.

Or, if you're using Gnome with FVWM you can invoke zenity (see the man page) from your shell script to get a GTK dialog which looks nice. I'm sure KDE has something similar.

And there is another, even more powerful FVWM module for this kind of thing called FvwmScript; I've not used that one though.

rxvt is used so user has favourite editor available

The author's picture

Hi Paul. The reason for popping up a terminal
emulator, rather than using FvwmForm or any other
graphical dialog program, is that I want to give
the user the opportunity to use their favourite
text editor. I know that I'm much faster with
vi than I would be with FvwmForm.

Besides, hardened command-line junkies like me
regard GUIs as a necessary evil, and choose
atavistic command-line solutions whenever
possible.

xwd vs import

tjw's picture

I've found that ImageMagick's import utility is in most cases better at capturing screenshots than xwd. xwd often has troubles with windows such as media players, rdesktop, and emulators.

The equivalent of:

xwd -id $w -out /tmp/screenshot && convert /tmp/screenshot /tmp/screenshot.jpg

is:

import -window $w /tmp/screenshot.jpg

Two additional tricks

Anonymous's picture

Two additional tricks I've found useful:

1) create a root window menu item that opens a new xterm connected to a remote host. This requires setting up SSH to support X11 forwarding and using RSA keys so you don't have to use a password.

main-menu-pre.hook:

+ "chaos" Exec /usr/bin/ssh -X -f chaos.example.com "/usr/bin/X11/xterm -T chaos"

You should only use this with trusted systems, but it can be a real timesaver since you can then easily launch any remote X application.

2) set up a dynamic background image that indicates system load. Many people find this annoying, but I've found it useful (in those rare occasions when the desktop isn't wallpapered by windows) since it provides some visual feedback when the system is overloaded.

init.hook:

+ "I" Exec /usr/X11R6/bin/xlock -inroot -mode qix &

If this is too busy you could use xearth, xfishtank, or any other screensaver that can be run on the root window.

This has one other cute "feature" - it tends to blow away Windows users. :-)

xscreensaver hacks

Anonymous's picture

All of the xscreensaver display modes, or "hacks", are separate programs that you can use to animate your desktop background by running with the -root command-line option. Each xscreensaver hack has its own man page, so if you want a slow-motion desktop pattern, check the man page for a speed or "-cycle-delay" option.

Post new comment

  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <pre> <ul> <ol> <li> <dl> <dt> <dd> <i> <b>
  • Lines and paragraphs break automatically.
  • Use to create page breaks.

More information about formatting options