Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

wmsetbg(1x) [suse man page]

wmsetbg(1x)															       wmsetbg(1x)

NAME
wmsetbg - sets the background on the X11 display SYNOPSIS
wmsetbg [-display] [--version] [--help] [{-b|--back-color} color] [{-t|--tile}|{-e|--center}|{-s|--scale}|{-a|--maxscale} image] [{-d|--dither}|{-m|--match}] [-u|--update-wmaker] [{-D|--update-domain} domain] [{-c|--colors} cpc] [{-p|--parse} texture] [{-w|--workspace} workspace] DESCRIPTION
wmsetbg reads the specified image (XPM, PNG, jpeg, Tiff, raw PPM) and puts it on the root window. It can either scale the image or tile it to make it fit the root window. Window Maker uses this command internally to set the root window image on start up. OPTIONS
-a|--maxscale scales the specified image preserving its aspect ratio -b|--back-color the specified color is used as the background color for the texture. Window Maker temporarely sets the background to this color while loading and processing the texture. You can specify colors using their X11 names or as an RGB tiplet (either as "rgb:RR/GG/BB" or "#RRGGBB") (reference to appropiate manpage should be here). In the later case color is a quoted string. -e|--center centers the specified image -t|--tile tiles the specified image -s|--scale scales the specified image (default) -d|--dither dithers colors -m|--match matches colors -u|--update-wmaker updates the Window Maker defaults database -D|--update-domain updates the specifed domain database -c|--colors colors per channel to use -p|--parse parses the specified texture as a proplist style texture -w|--workspace update background only for the specified workspace --help print a help message --version print version number SEE ALSO
wmaker(1x) AUTHOR
This man page was written by Marcelo Magallon <mmagallo@debian.org>. Window Maker was written by Alfredo K. Kojima <kojima@windowmaker.info>. wmsetbg was written by Dan Pascu <dan@windowmaker.info> January 1999 wmsetbg(1x)

Check Out this Related Man Page

XmInstallImage(library call)											      XmInstallImage(library call)

NAME
XmInstallImage -- A pixmap caching function that adds an image to the image cache SYNOPSIS
#include <Xm/Xm.h> Boolean XmInstallImage( XImage * image, char * image_name); DESCRIPTION
XmInstallImage stores an image in an image cache that can later be used to generate a pixmap. Part of the installation process is to extend the resource converter used to reference these images. The resource converter is given the image name so that the image can be ref- erenced in a .Xdefaults file. Since an image can be referenced by a widget through its pixmap resources, it is up to the application to ensure that the image is installed before the widget is created. image Points to the image structure to be installed. The installation process does not make a local copy of the image. Therefore, the application should not destroy the image until it is uninstalled from the caching functions. image_name Specifies a string that the application uses to name the image. After installation, this name can be used in .Xdefaults for ref- erencing the image. A local copy of the name is created by the image caching functions. The image caching functions provide a set of eight preinstalled images. These names can be used within a .Xdefaults file for generating pixmaps for the resource for which they are provided. +---------------+---------------------------------------------------+ |Image Name | Description | +---------------+---------------------------------------------------+ |background | A tile of solid background | +---------------+---------------------------------------------------+ |25_foreground | A tile of 25% foreground, 75% background | +---------------+---------------------------------------------------+ |50_foreground | A tile of 50% foreground, 50% background | +---------------+---------------------------------------------------+ |75_foreground | A tile of 75% foreground, 25% background | +---------------+---------------------------------------------------+ |horizontal | A tile of horizontal lines of the two colors | +---------------+---------------------------------------------------+ |vertical | A tile of vertical lines of the two colors | +---------------+---------------------------------------------------+ |slant_right | A tile of slanting lines of the two colors | +---------------+---------------------------------------------------+ |slant_left | A tile of slanting lines of the two colors | +---------------+---------------------------------------------------+ |menu_cascade | A tile of an arrow of the foreground color | +---------------+---------------------------------------------------+ |menu_checkmark | A tile of a checkmark of the foreground color | +---------------+---------------------------------------------------+ |menu_dash | A tile of one horizontal line of the foreground | | | color | +---------------+---------------------------------------------------+ +---------------+---------------------------------------------------+ RETURN
Returns True when successful; returns False if NULL image, NULL image_name, or duplicate image_name is used as a parameter value. RELATED
XmUninstallImage(3), XmGetPixmap(3), and XmDestroyPixmap(3). XmInstallImage(library call)
Man Page