gxmessage (1) Linux Manual Page
NAME
gxmessage – a GTK-based xmessage clone
SYNOPSIS
gxmessage [OPTIONS] message …
gxmessage [OPTIONS] -file FILENAME
DESCRIPTION
gxmessage opens a window to display a message obtained from the command line, from a file, or from stdin. The window includes a row of buttons, each of which causes the program to exit with a different return code.
The GNU Info entry for gxmessage contains detailed information and examples.
OPTIONS
gxmessage should accept any option xmessage would, although some (such as -bw and -xrm) are silently ignored. Options supported by gxmessage are as follows:
-bgCOLOR- Sets the background color of the message to COLOR. Examples: red, "#c90", "#446a7e".
-borderless-
Opens the
gxmessagewindow without the usual window frame. This option is not compatible withxmessage. -buttonsBUTTON_LIST-
Defines the buttons to be created. BUTTON_LIST is a comma-separated list of LABEL
:VALUE pairs, one for each button. The LABEL is the text that appears on the button. The VALUE (0..255) is the code the program will exit with if that button is pressed. Commas and colons can be escaped using backslashes (\). As well as ordinary text, the LABEL can specify a GTK "stock" button, like "GTK_STOCK_CANCEL", or it can include an underscore (_) to specify a keyboard accelerator. If VALUEs are omitted, they default to 101, 102, 103, etc., in order. If no-buttonsoption is given, BUTTON_LIST defaults to"okay:0".gxmessage -buttons "Foo:42,Bar:63" "Example" echo $? gxmessage -buttons "_Foo,_Bar" "Example" echo $? gxmessage "Example" echo $? gxmessage -buttons "GTK_STOCK_OK:0" "Example" echo $? gxmessage -buttons "Hello\, world" "Example"
-center-
Opens the
gxmessagewindow in the middle of the screen. -defaultLABEL-
Opens the
gxmessagewindow with input focused on the specified button. LABEL is one of the LABELs in BUTTON_LIST (see-buttons, above). -displayDISPLAY- Specifies the X display to use.
-encodingCHARSET-
Specifies the encoding of the message text. By default, the message text is assumed to match the encoding of the current locale. This option is not compatible with
xmessage. -entry-
Adds a text entry box to the
gxmessagewindow. When the window closes, any text in the entry box will be copied to stdout. This option is not compatible withxmessageand can’t be used at the same time as the-printoption. -entrytextTEXT-
Same as
-entry, but sets the default entry box contents to TEXT. This option is not compatible withxmessage. -fgCOLOR- Sets the message text color to COLOR.
-fileFILENAME- Causes the named file to be used as the message source. If a dash (-) is used in place of FILENAME, the message will be read from stdin.
-fn|-fontFONT-
Specifies the message font, using GTK2’s font specification system. For example,
-font "serif italic 14". (GTK2’s font system is not compatible withxmessage. See the Compatibility section, below, for a workaround.) -geometryGEOMETRY-
Sets the window’s size (position is ignored by
gxmessage). Example:-geometry 400×200 -help- Displays basic usage information then exits.
-iconic-
Opens the
gxmessagewindow in its iconized (minimized) state. -nameNAME-
Sets the
gxmessagewindow’s name to NAME. -nearmouse-
Opens the
gxmessagewindow near the mouse pointer. -nofocus-
Prevents the
gxmessagewindow from receiving focus when it opens. This option is not compatible withxmessage. -print- Writes the LABEL of the selected button to stdout.
-timeoutSECONDS-
Automatically closes the
gxmessagewindow with an exit code of 0 if no button is pressed within SECONDS seconds. (The-entryand-entrytextoptions cause-timeoutto be ignored.) -titleTITLE-
Sets the
gxmessagewindow’s title to TITLE. -version-
Displays the program’s version number and Copyright details, then exits. This option is not compatible with
xmessage. -wrap-
Causes lines to wrap rather than exceed the width of the window. This option is not compatible with
xmessage.
GTK DEFAULTS
The program’s default appearance can be adjusted using GTK resource files. The main text display widget is named gxmessage-textview. The text entry widget is named gxmessage-entry.
#Example : ~ /.gtkrc - 2.0
style "gxmsg" {
text[NORMAL] = "#cc9900" base[NORMAL] = "#660000" text[SELECTED] = "#660000" base[SELECTED] = "#cc9900" font_name = "monospace"} widget "*.gxmessage-textview" style "gxmsg" widget "*.gxmessage-entry" style "gxmsg"
EXIT STATUS
If a button is pressed, the program returns the value assigned to that button. The default "okay" button returns 0.
If a timeout event occurs, the program returns 0.
If an error occurs, or if the window is closed without a button-press or timeout event, the program exits with code 1. Pressing the ESC key also causes the program to exit with code 1.
COMPATIBILITY WITH XMESSAGE
Fall back to xmessage if gxmessage isn’t available:
#! /bin/sh XMESSAGE=$(which gxmessage) || XMESSAGE=xmessage $XMESSAGE "hello, world"
If you specify fonts, check which program you’re using:
font = "monospace 14"
["$XMESSAGE" = xmessage] &&font = "fixed" $XMESSAGE $
{
font:
+-fn "$font"
}
"hello, world"
Don’t use double-dashed command line options:
$XMESSAGE "hello, world" -buttons good $XMESSAGE "hello, world" --buttons bad
Don’t use the gxmessage-specific options:
-entry,-entrytext,-borderless,-wrap,-encoding,-nofocus,-version,-h,-?
BUGS
The position component of -geometry values is ignored by gxmessage.
For some reason, opening the gxmessage window with no button set to be the default causes GTK to emit a "beep" sound.
If you discover other bugs in the most recent version of gxmessage, please get in touch.
SEE ALSO
xmessage(1), zenity(1), dialog(1)
The GNU Info entry for gxmessage contains detailed information and examples.
AUTHORS
Timothy Musson <trmusson [at] gmail.com>
COPYRIGHT NOTICE
Copyright © 2003, 2004, 2005, 2006, 2007, 2008, 2009 Timothy Richard Musson
Copying and distribution of this file, with or without modification, are permitted provided the copyright notice and this notice are preserved.
