gimp/etc/gimprc

480 lines
16 KiB
Plaintext
Raw Normal View History

2002-12-30 03:02:05 +08:00
# This is the system-wide gimprc file. Any change made in this file
# will affect all users of this system, provided that they are not
# overriding the default values in their personal gimprc file.
#
# Lines that start with a '#' are comments. Blank lines are ignored.
#
# By default everything in this file is commented out. The file then
# documents the default values and shows what changes are possible.
# The variable ${gimp_dir} is set to the value of the environment
# variable GIMP_DIRECTORY or, if that is not set, the compiled-in
# default value is used. If GIMP_DIRECTORY is not an absolute path,
# it is interpreted relative to your home directory.
2002-12-30 03:02:05 +08:00
# Sets the temporary storage directory. Files will appear here during the
# course of running the GIMP. Most files will disappear when the GIMP exits,
# but some files are likely to remain, so it is best if this directory not be
# one that is shared by other users. This is a single folder.
2002-12-30 03:02:05 +08:00
#
# (temp-path "${gimp_dir}/tmp")
# Sets the swap file location. The gimp uses a tile based memory allocation
2002-12-30 03:02:05 +08:00
# scheme. The swap file is used to quickly and easily swap tiles out to disk
# and back in. Be aware that the swap file can easily get very large if the
# GIMP is used with large images. Also, things can get horribly slow if the
2002-12-30 03:02:05 +08:00
# swap file is created on a directory that is mounted over NFS. For these
# reasons, it may be desirable to put your swap file in "/tmp". This is a
# single folder.
2002-12-30 03:02:05 +08:00
#
# (swap-path "${gimp_dir}")
# There is always a tradeoff between memory usage and speed. In most cases,
# the GIMP opts for speed over memory. However, if memory is a big issue,
# try to enable this setting. Possible values are yes and no.
2002-12-30 03:02:05 +08:00
#
# (stingy-memory-use no)
# On multiprocessor machines, if GIMP has been compiled with --enable-mp this
# sets how many processors GIMP should use simultaneously. This is an
# integer value.
2002-12-30 03:02:05 +08:00
#
# (num-processors 1)
# The tile cache is used to make sure the GIMP doesn't thrash tiles between
# memory and disk. Setting this value higher will cause the GIMP to use less
# swap space, but will also cause the GIMP to use more memory. Conversely, a
# smaller cache size causes the GIMP to use more swap space and less memory.
2002-12-30 03:02:05 +08:00
# The integer size can contain a suffix of 'B', 'K', 'M' or 'G' which makes
# GIMP interpret the size as being specified in bytes, kilobytes, megabytes
# or gigabytes. If no suffix is specified the size defaults to being
# specified in kilobytes.
2002-12-30 03:02:05 +08:00
#
# (tile-cache-size 32M)
# Sets the level of interpolation used for scaling and other transformations.
# Possible values are none, linear and cubic.
2002-12-30 03:02:05 +08:00
#
# (interpolation-type linear)
# Sets the plug-in search path. This is a colon-separated list of folders to
# search.
2002-12-30 03:02:05 +08:00
#
# (plug-in-path "${gimp_dir}/plug-ins:${gimp_plug_in_dir}/plug-ins")
# Sets the tool-plug-in search path. This is a colon-separated list of
# folders to search.
2002-12-30 03:02:05 +08:00
#
# (tool-plug-in-path "${gimp_dir}/tool-plug-ins:${gimp_plug_in_dir}/tool-plug-ins")
# Sets the module search path. This is a colon-separated list of folders to
# search.
2002-12-30 03:02:05 +08:00
#
# (module-path "${gimp_dir}/modules:${gimp_plug_in_dir}/modules")
# Sets the environ search path. This is a colon-separated list of folders to
# search.
2002-12-30 03:02:05 +08:00
#
# (environ-path "${gimp_dir}/environ:${gimp_plug_in_dir}/environ")
# Sets the brush search path. This is a colon-separated list of folders to
2002-12-30 03:02:05 +08:00
# search.
#
# (brush-path "${gimp_dir}/brushes:${gimp_data_dir}/brushes")
# Sets the pattern search path. This is a colon-separated list of folders to
# search.
2002-12-30 03:02:05 +08:00
#
# (pattern-path "${gimp_dir}/patterns:${gimp_data_dir}/patterns")
# Sets the palette search path. This is a colon-separated list of folders to
# search.
2002-12-30 03:02:05 +08:00
#
# (palette-path "${gimp_dir}/palettes:${gimp_data_dir}/palettes")
# Sets the gradient search path. This is a colon-separated list of folders
# to search.
2002-12-30 03:02:05 +08:00
#
# (gradient-path "${gimp_dir}/gradients:${gimp_data_dir}/gradients")
# Specify a default brush. The brush is searched for in the specified brush
# path. This is a string value.
#
# (default-brush "Circle (11)")
# Specify a default pattern. The pattern is searched for in the specified
# pattern path. This is a string value.
#
# (default-pattern "Pine")
# Specify a default palette. The palette is searched for in the specified
# palette path. This is a string value.
#
# (default-palette "Default")
# Specify a default gradient. The gradient is searched for in the specified
# gradient path. This is a string value.
#
# (default-gradient "FG to BG (RGB)")
# Sets the default comment. This is a string value.
2002-12-30 03:02:05 +08:00
#
# (default-comment "Created with The GIMP")
# Sets the default image type in the File/New dialog. Possible values are
# rgb, gray and indexed.
2002-12-30 03:02:05 +08:00
#
# (default-image-type rgb)
# Sets the default image width in the File/New dialog. This is an integer
2002-12-30 03:02:05 +08:00
# value.
#
# (default-image-width 256)
# Sets the default image height in the File/New dialog. This is an integer
2002-12-30 03:02:05 +08:00
# value.
#
# (default-image-height 256)
# Sets the default unit for new images and for the File/New dialog. This
# units will be used for coordinate display when not in dot-for-dot mode.
# The unit can be one inches, millimeters, points or picas plus those in your
# user units database.
2002-12-30 03:02:05 +08:00
#
# (default-unit inches)
# Sets the default horizontal resolution for new images and for the File/New
# dialog. This value is always in dpi (dots per inch). This is a float
# value.
2002-12-30 03:02:05 +08:00
#
# (default-xresolution 72.000000)
# Sets the default vertical resolution for new images and for the File/New
# dialog. This value is always in dpi (dots per inch). This is a float
# value.
2002-12-30 03:02:05 +08:00
#
# (default-yresolution 72.000000)
# Sets the units for the display of the default resolution in the File/New
# dialog. The unit can be one inches, millimeters, points or picas plus
# those in your user units database.
2002-12-30 03:02:05 +08:00
#
# (default-resolution-unit inches)
# Sets the number of operations kept on the undo stack. This is an integer
2002-12-30 03:02:05 +08:00
# value.
#
# (undo-levels 5)
# Sets the maximum memory used by operations kept on the undo stack. The
# integer size can contain a suffix of 'B', 'K', 'M' or 'G' which makes GIMP
# interpret the size as being specified in bytes, kilobytes, megabytes or
# gigabytes. If no suffix is specified the size defaults to being specified
# in kilobytes.
#
# (undo-size 1024k)
# Sets the pluginrc search path. This is a single filename.
2002-12-30 03:02:05 +08:00
#
# (pluginrc-path "${gimp_dir}/pluginrc")
# To inhibit loading of a module, add its name here. This is a string value.
#
# (module-load-inhibit "foo")
# Sets the default preview size. Possible values are none, tiny,
# extra-small, small, medium, large, extra-large, huge, enormous and
# gigantic.
2002-12-30 03:02:05 +08:00
#
# (preview-size small)
# Sets the size of the thumbnail saved with each image. Possible values are
# none, normal and large.
2002-12-30 03:02:05 +08:00
#
# (thumbnail-size normal)
# This setting is ignored. This is a float value.
#
# (gamma-correction 1.000000)
# Install a private colormap; might be useful on pseudocolor visuals.
# Possible values are yes and no.
#
# (install-colormap no)
# Generally only a concern for 8-bit displays, this sets the minimum number
# of system colors allocated for the GIMP. This is an integer value.
2002-12-30 03:02:05 +08:00
#
# (min-colors 144)
# Speed of marching ants in the selection outline. This value is in
# milliseconds (less time indicates faster marching). This is an integer
# value.
#
# (marching-ants-speed 300)
# Specify that marching ants for selected regions will be drawn with colormap
# cycling as opposed to be drawn as animated lines. This color cycling
# option works only with 8-bit displays. Possible values are yes and no.
2002-12-30 03:02:05 +08:00
#
# (colormap-cycling no)
# When zooming into and out of images, setting this option to yes enables the
# automatic resizing of windows. Possible values are yes and no.
2002-12-30 03:02:05 +08:00
#
# (resize-windows-on-zoom no)
# When the physical image size changes, setting this option to yes enables
# the automatic resizing of windows. Possible values are yes and no.
2002-12-30 03:02:05 +08:00
#
# (resize-windows-on-resize no)
# When set to yes, this will ensure that each pixel of an image gets mapped
# to a pixel on the screen. Possible values are yes and no.
2002-12-30 03:02:05 +08:00
#
# (default-dot-for-dot yes)
# When set to yes, the X server is queried for the mouse's current position
# on each motion event, rather than relying on the position hint. This means
2002-12-30 03:02:05 +08:00
# painting with large brushes should be more accurate, but it may be slower.
# Perversely, on some X servers turning on this option results in faster
# painting. Possible values are yes and no.
#
# (perfect-mouse no)
# Sets the mode of cursor the GIMP will use. Possible values are tool-icon,
# tool-crosshair and crosshair.
2002-12-30 03:02:05 +08:00
#
# (cursor-mode tool-icon)
# Context-dependent cursors are cool. They are enabled by default. However,
# they require overhead that you may want to do without. Possible values are
# yes and no.
#
# (cursor-updating yes)
# Sets the text to appear in image window titles. This is a format string;
# certain % character sequences are recognised and expanded as follows:
2002-12-30 03:02:05 +08:00
#
# %% literal percent sign
# %f bare filename, or "Untitled"
# %F full path to file, or "Untitled"
# %p PDB image id
# %i view instance number
# %t image type (RGB, grayscale, indexed)
# %z zoom factor as a percentage
# %s source scale factor
# %d destination scale factor
# %Dx expands to x if the image is dirty, the empty string otherwise
# %Cx expands to x if the image is clean, the empty string otherwise
# %m memory used by the image
# %l the number of layers
# %L the name of the active layer/channel
# %w image width in pixels
# %W image width in real-world units
# %h image height in pixels
# %H image height in real-world units
# %u unit symbol
# %U unit abbreviation
#
#
# (image-title-format "%f-%p.%i (%t)")
# Sets the text to appear in image window status bars. This is a format
# string; certain % character sequences are recognised and expanded as
# follows:
#
# %% literal percent sign
# %f bare filename, or "Untitled"
# %F full path to file, or "Untitled"
# %p PDB image id
# %i view instance number
# %t image type (RGB, grayscale, indexed)
# %z zoom factor as a percentage
# %s source scale factor
# %d destination scale factor
# %Dx expands to x if the image is dirty, the empty string otherwise
# %Cx expands to x if the image is clean, the empty string otherwise
# %m memory used by the image
# %l the number of layers
# %L the name of the active layer/channel
# %w image width in pixels
# %W image width in real-world units
# %h image height in pixels
# %H image height in real-world units
# %u unit symbol
# %U unit abbreviation
#
2002-12-30 03:02:05 +08:00
#
# (image-status-format "%f-%p.%i (%t)")
# Sets the default menubar visibility. This can also be toggled with the
# View->Toggle Menubar command. Possible values are yes and no.
2002-12-30 03:02:05 +08:00
#
# (show-menubar no)
# Sets the default ruler visibility. This can also be toggled with the
# View->Toggle Rulers command. Possible values are yes and no.
2002-12-30 03:02:05 +08:00
#
# (show-rulers yes)
# Set to yes to make the statusbar visible by default. This can also be
# toggled with the View->Toggle Statusbar command. Possible values are yes
# and no.
2002-12-30 03:02:05 +08:00
#
# (show-statusbar yes)
# Ask for confirmation before closing an image without saving. Possible
# values are yes and no.
#
# (confirm-on-close yes)
# Sets the monitor's horizontal resolution, in dots per inch. If set to 0,
2002-12-30 03:02:05 +08:00
# forces the X server to be queried for both horizontal and vertical
# resolution information. This is a float value.
#
# (monitor-xresolution 72.000000)
# Sets the monitor's vertical resolution, in dots per inch. If set to 0,
2002-12-30 03:02:05 +08:00
# forces the X server to be queried for both horizontal and vertical
# resolution information. This is a float value.
#
# (monitor-yresolution 72.000000)
# Set to yes if the GIMP should use the monitor resolution from the windowing
# system. Possible values are yes and no.
2002-12-30 03:02:05 +08:00
#
# (monitor-resolution-from-windowing-system yes)
# Sets the size of the navigation preview available in the lower right corner
# of the image window. Possible values are none, tiny, extra-small, small,
# medium, large, extra-large, huge, enormous and gigantic.
2002-12-30 03:02:05 +08:00
#
# (navigation-preview-size medium)
# Specifies how the area around the image should be drawn. Possible values
# are default, light-check, dark-check and custom.
2002-12-30 03:02:05 +08:00
#
# (canvas-padding-mode default)
# Sets the canvas padding color used if the padding mode is set to custom
# color. The color is specified in the form (color-rgba red green blue
# alpha) with channel values as floats between 0.0 and 1.0.
2002-12-30 03:02:05 +08:00
#
# (canvas-padding-color (color-rgba 1.000000 1.000000 1.000000 1.000000))
# Sets the size of the checkerboard used to display transparency. Possible
# values are small-checks, medium-checks and large-checks.
#
# (transparency-size medium-checks)
# Sets the manner in which transparency is displayed in images. Possible
# values are light-checks, gray-checks, dark-checks, white-only, gray-only
# and black-only.
2002-12-30 03:02:05 +08:00
#
# (transparency-type gray-checks)
# Tools such as fuzzy-select and bucket fill find regions based on a
# seed-fill algorithm. The seed fill starts at the intially selected pixel
# and progresses in all directions until the difference of pixel intensity
# from the original is greater than a specified threshold. This value
# represents the default threshold. This is an integer value.
2002-12-30 03:02:05 +08:00
#
# (default-threshold 15)
# When set to yes, the GIMP will use a different info window per image view.
# Possible values are yes and no.
2002-12-30 03:02:05 +08:00
#
# (info-window-per-display no)
# When set to yes, the GIMP will not save if the image is unchanged since
# opening it. Possible values are yes and no.
2002-12-30 03:02:05 +08:00
#
# (trust-dirty-flag no)
# Remember the current tool, pattern, color, and brush across GIMP sessions.
# Possible values are yes and no.
#
# (save-device-status no)
# Save the positions and sizes of the main dialogs when the GIMP exits.
2002-12-30 03:02:05 +08:00
# Possible values are yes and no.
#
# (save-session-info yes)
# Let GIMP try to restore your last saved session on each startup. Possible
# values are yes and no.
2002-12-30 03:02:05 +08:00
#
# (restore-session yes)
# To display a handy GIMP tip on startup, set to yes. Possible values are
# yes and no.
2002-12-30 03:02:05 +08:00
#
# (show-tips yes)
# To display tooltips, set to yes. Possible values are yes and no.
2002-12-30 03:02:05 +08:00
#
# (show-tool-tips yes)
# When set to yes, enables tear off menus. Possible values are yes and no.
2002-12-30 03:02:05 +08:00
#
# (tearoff-menus yes)
# How many recently opened image filenames to keep on the File menu. This is
# an integer value.
#
# (last-opened-size 4)
# GIMP will warn the user if an attempt is made to create an image that would
# take more memory than the size specified here. The integer size can
# contain a suffix of 'B', 'K', 'M' or 'G' which makes GIMP interpret the
# size as being specified in bytes, kilobytes, megabytes or gigabytes. If no
# suffix is specified the size defaults to being specified in kilobytes.
2002-12-30 03:02:05 +08:00
#
# (max-new-image-size 32M)
# Sets the theme search path. This is a colon-separated list of folders to
# search.
2002-12-30 03:02:05 +08:00
#
# (theme-path "${gimp_dir}/themes:${gimp_data_dir}/themes")
# The name of the theme to use. This is a string value.
#
# (theme "Default")
# When set to no the F1 help binding will be disabled. Possible values are
# yes and no.
2002-12-30 03:02:05 +08:00
#
# (use-help yes)
# Sets the browser used by the help system. Possible values are gimp and
# netscape.
2002-12-30 03:02:05 +08:00
#
# (help-browser gimp)
2002-12-30 09:31:27 +08:00
# Where to search for fractals used by the Fractal Explorer plug-in. This is
# a colon-separated list of folders to search.
#
# (fractalexplorer-path "${gimp_dir}/fractalexplorer:${gimp_data_dir}/fractalexplorer")
# Where to search for Gfig figures used by the Gfig plug-in. This is a
# colon-separated list of folders to search.
#
# (gfig-path "${gimp_dir}/gfig:${gimp_data_dir}/gfig")
# Where to search for gflares used by the GFlare plug-in. This is a
# colon-separated list of folders to search.
#
# (gflare-path "${gimp_dir}/gflare:${gimp_data_dir}/gflare")
# Where to search for data used by the Gimpressionist plug-in. This is a
# colon-separated list of folders to search.
#
# (gimpressionist-path "${gimp_dir}/gimpressionist:${gimp_data_dir}/gimpressionist")
2002-12-30 09:31:27 +08:00
# This path will be searched for scripts when the Script-Fu plug-in is run.
# This is a colon-separated list of folders to search.
2002-12-30 09:31:27 +08:00
#
# (script-fu-path "${gimp_dir}/scripts:${gimp_data_dir}/scripts")