home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 February / CMCD0205.ISO / Linux / gimp-2.2.0.tar.gz / gimp-2.2.0.tar / gimp-2.2.0 / etc / gimprc < prev    next >
Text File  |  2004-12-18  |  22KB  |  638 lines

  1. # This is the system-wide gimprc file.  Any change made in this file will
  2. # affect all users of this system, provided that they are not overriding the
  3. # default values in their personal gimprc file.
  4. # Lines that start with a '#' are comments. Blank lines are ignored.
  5. # By default everything in this file is commented out.  The file then
  6. # documents the default values and shows what changes are possible.
  7. # The variable ${gimp_dir} is set to the value of the environment variable
  8. # GIMP2_DIRECTORY or, if that is not set, the compiled-in default value is
  9. # used.  If GIMP2_DIRECTORY is not an absolute path, it is interpreted
  10. # relative to your home directory.
  11.  
  12. # Sets the temporary storage directory. Files will appear here during the
  13. # course of running the GIMP.  Most files will disappear when the GIMP exits,
  14. # but some files are likely to remain, so it is best if this directory not be
  15. # one that is shared by other users.  This is a single folder.
  16. # (temp-path "${gimp_dir}/tmp")
  17.  
  18. # Sets the swap file location. The gimp uses a tile based memory allocation
  19. # scheme. The swap file is used to quickly and easily swap tiles out to disk
  20. # and back in. Be aware that the swap file can easily get very large if the
  21. # GIMP is used with large images. Also, things can get horribly slow if the
  22. # swap file is created on a directory that is mounted over NFS.  For these
  23. # reasons, it may be desirable to put your swap file in "/tmp".  This is a
  24. # single folder.
  25. # (swap-path "${gimp_dir}")
  26.  
  27. # There is always a tradeoff between memory usage and speed.  In most cases,
  28. # the GIMP opts for speed over memory.  However, if memory is a big issue,
  29. # try to enable this setting.  Possible values are yes and no.
  30. # (stingy-memory-use no)
  31.  
  32. # On multiprocessor machines, if GIMP has been compiled with --enable-mp this
  33. # sets how many processors GIMP should use simultaneously.  This is an
  34. # integer value.
  35. # (num-processors 1)
  36.  
  37. # The tile cache is used to make sure the GIMP doesn't thrash tiles between
  38. # memory and disk. Setting this value higher will cause the GIMP to use less
  39. # swap space, but will also cause the GIMP to use more memory. Conversely, a
  40. # smaller cache size causes the GIMP to use more swap space and less memory. 
  41. # The integer size can contain a suffix of 'B', 'K', 'M' or 'G' which makes
  42. # GIMP interpret the size as being specified in bytes, kilobytes, megabytes
  43. # or gigabytes. If no suffix is specified the size defaults to being
  44. # specified in kilobytes.
  45. # (tile-cache-size 128M)
  46.  
  47. # Sets the level of interpolation used for scaling and other transformations.
  48. #  Possible values are none, linear and cubic.
  49. # (interpolation-type linear)
  50.  
  51. # Sets the plug-in search path.  This is a colon-separated list of folders to
  52. # search.
  53. # (plug-in-path "${gimp_dir}/plug-ins:${gimp_plug_in_dir}/plug-ins")
  54.  
  55. # Sets the module search path.  This is a colon-separated list of folders to
  56. # search.
  57. # (module-path "${gimp_dir}/modules:${gimp_plug_in_dir}/modules")
  58.  
  59. # Sets the environ search path.  This is a colon-separated list of folders to
  60. # search.
  61. # (environ-path "${gimp_dir}/environ:${gimp_plug_in_dir}/environ")
  62.  
  63. # Sets the brush search path.  This is a colon-separated list of folders to
  64. # search.
  65. # (brush-path "${gimp_dir}/brushes:${gimp_data_dir}/brushes")
  66.  
  67. #   This is a colon-separated list of folders to search.
  68. # (brush-path-writable "${gimp_dir}/brushes")
  69.  
  70. # Sets the pattern search path.  This is a colon-separated list of folders to
  71. # search.
  72. # (pattern-path "${gimp_dir}/patterns:${gimp_data_dir}/patterns")
  73.  
  74. #   This is a colon-separated list of folders to search.
  75. # (pattern-path-writable "${gimp_dir}/patterns")
  76.  
  77. # Sets the palette search path.  This is a colon-separated list of folders to
  78. # search.
  79. # (palette-path "${gimp_dir}/palettes:${gimp_data_dir}/palettes")
  80.  
  81. #   This is a colon-separated list of folders to search.
  82. # (palette-path-writable "${gimp_dir}/palettes")
  83.  
  84. # Sets the gradient search path.  This is a colon-separated list of folders
  85. # to search.
  86. # (gradient-path "${gimp_dir}/gradients:${gimp_data_dir}/gradients")
  87.  
  88. #   This is a colon-separated list of folders to search.
  89. # (gradient-path-writable "${gimp_dir}/gradients")
  90.  
  91. # Where to look for fonts.  This is a colon-separated list of folders to
  92. # search.
  93. # (font-path "${gimp_dir}/fonts:${gimp_data_dir}/fonts")
  94.  
  95. #   This is a colon-separated list of folders to search.
  96. # (font-path-writable "${gimp_dir}/fonts")
  97.  
  98. # Specify a default brush.  The brush is searched for in the specified brush
  99. # path.  This is a string value.
  100. # (default-brush "Circle (11)")
  101.  
  102. # Specify a default pattern. The pattern is searched for in the specified
  103. # pattern path.  This is a string value.
  104. # (default-pattern "Pine")
  105.  
  106. # Specify a default palette.  The palette is searched for in the specified
  107. # palette path.  This is a string value.
  108. # (default-palette "Default")
  109.  
  110. # Specify a default gradient.  The gradient is searched for in the specified
  111. # gradient path.  This is a string value.
  112. # (default-gradient "FG to BG (RGB)")
  113.  
  114. # Specify a default font.  The font is searched for in the fontconfig font
  115. # path.  This is a string value.
  116. # (default-font "Sans")
  117.  
  118. # When enabled, the selected brush will be used for all tools.  Possible
  119. # values are yes and no.
  120. # (global-brush yes)
  121.  
  122. # When enabled, the selected pattern will be used for all tools.  Possible
  123. # values are yes and no.
  124. # (global-pattern yes)
  125.  
  126. # When enabled, the selected palette will be used for all tools.  Possible
  127. # values are yes and no.
  128. # (global-palette yes)
  129.  
  130. # When enabled, the selected gradient will be used for all tools.  Possible
  131. # values are yes and no.
  132. # (global-gradient yes)
  133.  
  134. # When enabled, the selected font will be used for all tools.  Possible
  135. # values are yes and no.
  136. # (global-font yes)
  137.  
  138. # Sets the default image in the "File/New" dialog.  This is a parameter list.
  139. # (default-image
  140. #     (width 420)
  141. #     (height 300)
  142. #     (unit pixels)
  143. #     (xresolution 72.000000)
  144. #     (yresolution 72.000000)
  145. #     (resolution-unit inches)
  146. #     (image-type rgb)
  147. #     (fill-type background-fill)
  148. #     (comment "Created with The GIMP"))
  149.  
  150. # Specify a default image grid.  This is a parameter list.
  151. # (default-grid
  152. #     (style intersections)
  153. #     (fgcolor (color-rgba 0.000000 0.000000 0.000000 1.000000))
  154. #     (bgcolor (color-rgba 1.000000 1.000000 1.000000 1.000000))
  155. #     (xspacing 10.000000)
  156. #     (yspacing 10.000000)
  157. #     (spacing-unit inches)
  158. #     (xoffset 0.000000)
  159. #     (yoffset 0.000000)
  160. #     (offset-unit inches))
  161.  
  162. # Sets the minimal number of operations that can be undone. More undo levels
  163. # are kept available until the undo-size limit is reached.  This is an
  164. # integer value.
  165. # (undo-levels 5)
  166.  
  167. # Sets an upper limit to the memory that is used per image to keep operations
  168. # on the undo stack. Regardless of this setting, at least as many undo-levels
  169. # as configured can be undone.  The integer size can contain a suffix of 'B',
  170. # 'K', 'M' or 'G' which makes GIMP interpret the size as being specified in
  171. # bytes, kilobytes, megabytes or gigabytes. If no suffix is specified the
  172. # size defaults to being specified in kilobytes.
  173. # (undo-size 16M)
  174.  
  175. # Sets the size of the previews in the Undo History.  Possible values are
  176. # tiny, extra-small, small, medium, large, extra-large, huge, enormous and
  177. # gigantic.
  178. # (undo-preview-size large)
  179.  
  180. # Sets the pluginrc search path.  This is a single filename.
  181. # (pluginrc-path "${gimp_dir}/pluginrc")
  182.  
  183. # Sets whether GIMP should create previews of layers and channels. Previews
  184. # in the layers and channels dialog are nice to have but they can slow things
  185. # down when working with large images.  Possible values are yes and no.
  186. # (layer-previews yes)
  187.  
  188. # Sets the preview size used for layers and channel previews in newly created
  189. # dialogs.  Possible values are tiny, extra-small, small, medium, large,
  190. # extra-large, huge, enormous and gigantic.
  191. # (layer-preview-size medium)
  192.  
  193. # Sets the size of the thumbnail shown in the Open dialog. Note that GIMP can
  194. # not create thumbnails if layer previews are disabled.  Possible values are
  195. # none, normal and large.
  196. # (thumbnail-size normal)
  197.  
  198. # The thumbnail in the Open dialog will be automatically updated if the file
  199. # being previewed is smaller than the size set here.  The integer size can
  200. # contain a suffix of 'B', 'K', 'M' or 'G' which makes GIMP interpret the
  201. # size as being specified in bytes, kilobytes, megabytes or gigabytes. If no
  202. # suffix is specified the size defaults to being specified in kilobytes.
  203. # (thumbnail-filesize-limit 4M)
  204.  
  205. # Install a private colormap; might be useful on 8-bit (256 colors) displays.
  206. #  Possible values are yes and no.
  207. # (install-colormap no)
  208.  
  209. # Generally only a concern for 8-bit displays, this sets the minimum number
  210. # of system colors allocated for the GIMP.  This is an integer value.
  211. # (min-colors 144)
  212.  
  213. # Sets the size of the checkerboard used to display transparency.  Possible
  214. # values are small-checks, medium-checks and large-checks.
  215. # (transparency-size medium-checks)
  216.  
  217. # Sets the manner in which transparency is displayed in images.  Possible
  218. # values are light-checks, gray-checks, dark-checks, white-only, gray-only
  219. # and black-only.
  220. # (transparency-type gray-checks)
  221.  
  222. # This is the distance in pixels where Guide and Grid snapping activates. 
  223. # This is an integer value.
  224. # (snap-distance 8)
  225.  
  226. # Speed of marching ants in the selection outline.  This value is in
  227. # milliseconds (less time indicates faster marching).  This is an integer
  228. # value.
  229. # (marching-ants-speed 300)
  230.  
  231. # When enabled, the image window will automatically resize itself, when
  232. # zooming into and out of images.  Possible values are yes and no.
  233. # (resize-windows-on-zoom no)
  234.  
  235. # When enabled, the image window will automatically resize itself, whenever
  236. # the physical image size changes.  Possible values are yes and no.
  237. # (resize-windows-on-resize no)
  238.  
  239. # When enabled, this will ensure that each pixel of an image gets mapped to a
  240. # pixel on the screen.  Possible values are yes and no.
  241. # (default-dot-for-dot yes)
  242.  
  243. # When enabled, this will ensure that the full image is visible after a file
  244. # is opened, otherwise it will be displayed with a scale of 1:1.  Possible
  245. # values are yes and no.
  246. # (initial-zoom-to-fit yes)
  247.  
  248. # When enabled, the X server is queried for the mouse's current position on
  249. # each motion event, rather than relying on the position hint.  This means
  250. # painting with large brushes should be more accurate, but it may be slower. 
  251. # Perversely, on some X servers enabling this option results in faster
  252. # painting.  Possible values are yes and no.
  253. # (perfect-mouse yes)
  254.  
  255. # Sets the mode of cursor the GIMP will use.  Possible values are tool-icon,
  256. # tool-crosshair and crosshair.
  257. # (cursor-mode tool-icon)
  258.  
  259. # Context-dependent cursors are cool.  They are enabled by default. However,
  260. # they require overhead that you may want to do without.  Possible values are
  261. # yes and no.
  262. # (cursor-updating yes)
  263.  
  264. # When enabled, all paint tools will show a preview of the current brush's
  265. # outline.  Possible values are yes and no.
  266. # (show-brush-outline yes)
  267.  
  268. # When enabled, the cursor will be shown over the image while using a paint
  269. # tool.  Possible values are yes and no.
  270. # (show-paint-tool-cursor yes)
  271.  
  272. # Sets the text to appear in image window titles.  This is a format string;
  273. # certain % character sequences are recognised and expanded as follows:
  274. # %%  literal percent sign
  275. # %f  bare filename, or "Untitled"
  276. # %F  full path to file, or "Untitled"
  277. # %p  PDB image id
  278. # %i  view instance number
  279. # %t  image type (RGB, grayscale, indexed)
  280. # %z  zoom factor as a percentage
  281. # %s  source scale factor
  282. # %d  destination scale factor
  283. # %Dx expands to x if the image is dirty, the empty string otherwise
  284. # %Cx expands to x if the image is clean, the empty string otherwise
  285. # %B  expands to (modified) if the image is dirty, the empty string otherwise
  286. # %A  expands to (clean) if the image is clean, the empty string otherwise
  287. # %l  the number of layers
  288. # %L  the number of layers (long form)
  289. # %m  memory used by the image
  290. # %n  the name of the active layer/channel
  291. # %P  the PDB id of the active layer/channel
  292. # %w  image width in pixels
  293. # %W  image width in real-world units
  294. # %h  image height in pixels
  295. # %H  image height in real-world units
  296. # %u  unit symbol
  297. # %U  unit abbreviation
  298. # (image-title-format "%D*%f-%p.%i (%t, %L) %wx%h")
  299.  
  300. # Sets the text to appear in image window status bars.  This is a format
  301. # string; certain % character sequences are recognised and expanded as
  302. # follows:
  303. # %%  literal percent sign
  304. # %f  bare filename, or "Untitled"
  305. # %F  full path to file, or "Untitled"
  306. # %p  PDB image id
  307. # %i  view instance number
  308. # %t  image type (RGB, grayscale, indexed)
  309. # %z  zoom factor as a percentage
  310. # %s  source scale factor
  311. # %d  destination scale factor
  312. # %Dx expands to x if the image is dirty, the empty string otherwise
  313. # %Cx expands to x if the image is clean, the empty string otherwise
  314. # %B  expands to (modified) if the image is dirty, the empty string otherwise
  315. # %A  expands to (clean) if the image is clean, the empty string otherwise
  316. # %l  the number of layers
  317. # %L  the number of layers (long form)
  318. # %m  memory used by the image
  319. # %n  the name of the active layer/channel
  320. # %P  the PDB id of the active layer/channel
  321. # %w  image width in pixels
  322. # %W  image width in real-world units
  323. # %h  image height in pixels
  324. # %H  image height in real-world units
  325. # %u  unit symbol
  326. # %U  unit abbreviation
  327. # (image-status-format "%n (%m)")
  328.  
  329. # Ask for confirmation before closing an image without saving.  Possible
  330. # values are yes and no.
  331. # (confirm-on-close yes)
  332.  
  333. # Sets the monitor's horizontal resolution, in dots per inch.  If set to 0,
  334. # forces the X server to be queried for both horizontal and vertical
  335. # resolution information.  This is a float value.
  336. # (monitor-xresolution 72.000000)
  337.  
  338. # Sets the monitor's vertical resolution, in dots per inch.  If set to 0,
  339. # forces the X server to be queried for both horizontal and vertical
  340. # resolution information.  This is a float value.
  341. # (monitor-yresolution 72.000000)
  342.  
  343. # When enabled, the GIMP will use the monitor resolution from the windowing
  344. # system.  Possible values are yes and no.
  345. # (monitor-resolution-from-windowing-system yes)
  346.  
  347. # Sets the size of the navigation preview available in the lower right corner
  348. # of the image window.  Possible values are tiny, extra-small, small, medium,
  349. # large, extra-large, huge, enormous and gigantic.
  350. # (navigation-preview-size medium)
  351.  
  352. # Sets the default settings for the image view.  This is a parameter list.
  353. # (default-view
  354. #     (show-menubar yes)
  355. #     (show-rulers yes)
  356. #     (show-scrollbars yes)
  357. #     (show-statusbar yes)
  358. #     (show-selection yes)
  359. #     (show-layer-boundary yes)
  360. #     (show-guides yes)
  361. #     (show-grid no)
  362. #     (padding-mode default)
  363. #     (padding-color (color-rgba 1.000000 1.000000 1.000000 1.000000)))
  364.  
  365. # Sets the default settings used when an image is viewed in fullscreen mode. 
  366. # This is a parameter list.
  367. # (default-fullscreen-view
  368. #     (show-menubar no)
  369. #     (show-rulers no)
  370. #     (show-scrollbars no)
  371. #     (show-statusbar no)
  372. #     (show-selection no)
  373. #     (show-layer-boundary no)
  374. #     (show-guides no)
  375. #     (show-grid no)
  376. #     (padding-mode custom)
  377. #     (padding-color (color-rgba 0.000000 0.000000 0.000000 1.000000)))
  378.  
  379. # When enabled, an image will become the active image when its image window
  380. # receives the focus. This is useful for window managers using "click to
  381. # focus".  Possible values are yes and no.
  382. # (activate-on-focus yes)
  383.  
  384. # Tools such as fuzzy-select and bucket fill find regions based on a
  385. # seed-fill algorithm.  The seed fill starts at the initially selected pixel
  386. # and progresses in all directions until the difference of pixel intensity
  387. # from the original is greater than a specified threshold. This value
  388. # represents the default threshold.  This is an integer value.
  389. # (default-threshold 15)
  390.  
  391. # If enabled, the move tool changes the active layer or path when a layer or
  392. # path is being picked. This used to be the default behaviour in older
  393. # versions.  Possible values are yes and no.
  394. # (move-tool-changes-active no)
  395.  
  396. # When enabled, the GIMP will use a different info window per image view. 
  397. # Possible values are yes and no.
  398. # (info-window-per-display no)
  399.  
  400. # When enabled, the GIMP will not save if the image is unchanged since
  401. # opening it.  Possible values are yes and no.
  402. # (trust-dirty-flag no)
  403.  
  404. # Remember the current tool, pattern, color, and brush across GIMP sessions. 
  405. # Possible values are yes and no.
  406. # (save-device-status no)
  407.  
  408. # Save the positions and sizes of the main dialogs when the GIMP exits. 
  409. # Possible values are yes and no.
  410. # (save-session-info yes)
  411.  
  412. # Let GIMP try to restore your last saved session on each startup.  Possible
  413. # values are yes and no.
  414. # (restore-session yes)
  415.  
  416. # Enable to display a handy GIMP tip on startup.  Possible values are yes and
  417. # no.
  418. # (show-tips yes)
  419.  
  420. # Enable to display tooltips.  Possible values are yes and no.
  421. # (show-tool-tips yes)
  422.  
  423. # When enabled, menus can be torn off.  Possible values are yes and no.
  424. # (tearoff-menus yes)
  425.  
  426. # When enabled, you can change keyboard shortcuts for menu items by hitting a
  427. # key combination while the menu item is highlighted.  Possible values are
  428. # yes and no.
  429. # (can-change-accels no)
  430.  
  431. # Save changed keyboard shortcuts when the GIMP exits.  Possible values are
  432. # yes and no.
  433. # (save-accels yes)
  434.  
  435. # Restore saved keyboard shortcuts on each GIMP startup.  Possible values are
  436. # yes and no.
  437. # (restore-accels yes)
  438.  
  439. # When enabled, GIMP will show mnemonics in menus.  Possible values are yes
  440. # and no.
  441. # (menu-mnemonics yes)
  442.  
  443. # How many recently opened image filenames to keep on the File menu.  This is
  444. # an integer value.
  445. # (last-opened-size 10)
  446.  
  447. # GIMP will warn the user if an attempt is made to create an image that would
  448. # take more memory than the size specified here.  The integer size can
  449. # contain a suffix of 'B', 'K', 'M' or 'G' which makes GIMP interpret the
  450. # size as being specified in bytes, kilobytes, megabytes or gigabytes. If no
  451. # suffix is specified the size defaults to being specified in kilobytes.
  452. # (max-new-image-size 64M)
  453.  
  454. # The toolbox-color-area property has no description.  Possible values are
  455. # yes and no.
  456. # (toolbox-color-area yes)
  457.  
  458. # The toolbox-foo-area property has no description.  Possible values are yes
  459. # and no.
  460. # (toolbox-foo-area yes)
  461.  
  462. # The toolbox-image-area property has no description.  Possible values are
  463. # yes and no.
  464. # (toolbox-image-area no)
  465.  
  466. # Sets the theme search path.  This is a colon-separated list of folders to
  467. # search.
  468. # (theme-path "${gimp_dir}/themes:${gimp_data_dir}/themes")
  469.  
  470. # The name of the theme to use.  This is a string value.
  471. # (theme "Default")
  472.  
  473. # When enabled, pressing F1 will open the help browser.  Possible values are
  474. # yes and no.
  475. # (use-help yes)
  476.  
  477. # When enabled, dialogs will show a help button that gives access to the
  478. # related help page.  Without this button, the help page can still be reached
  479. # by pressing F1.  Possible values are yes and no.
  480. # (show-help-button yes)
  481.  
  482. # Specifies the language preferences used by the help system. This is a
  483. # colon-separated list of language identifiers with decreasing priority. If
  484. # empty, the language is taken from the user's locale setting.  This is a
  485. # string value.
  486. # (help-locales "")
  487.  
  488. # Sets the browser used by the help system.  Possible values are gimp and
  489. # web-browser.
  490. # (help-browser gimp)
  491.  
  492. # Sets the external web browser to be used.  This can be an absolute path or
  493. # the name of an executable to search for in the user's PATH. If the command
  494. # contains '%s' it will be replaced with the URL, else the URL will be
  495. # appended to the command with a space separating the two.  This is a single
  496. # filename.
  497. # (web-browser "mozilla %s")
  498.  
  499. # The window type hint that is set on the toolbox. This may affect how your
  500. # window manager decorates and handles the toolbox window.  Possible values
  501. # are normal, utility and keep-above.
  502. # (toolbox-window-hint normal)
  503.  
  504. # The window type hint that is set on dock windows. This may affect the way
  505. # your window manager decorates and handles dock windows.  Possible values
  506. # are normal, utility and keep-above.
  507. # (dock-window-hint normal)
  508.  
  509. # Sets the pixel format of cursors the GIMP will use.  Possible values are
  510. # bitmap and pixbuf.
  511. # (cursor-format pixbuf)
  512.  
  513. # Where to search for fractals used by the Fractal Explorer plug-in.  This is
  514. # a colon-separated list of folders to search.
  515. # (fractalexplorer-path "${gimp_dir}/fractalexplorer:${gimp_data_dir}/fractalexplorer")
  516.  
  517. # Where to search for Gfig figures used by the Gfig plug-in.  This is a
  518. # colon-separated list of folders to search.
  519. # (gfig-path "${gimp_dir}/gfig:${gimp_data_dir}/gfig")
  520.  
  521. # Where to search for gflares used by the GFlare plug-in.  This is a
  522. # colon-separated list of folders to search.
  523. # (gflare-path "${gimp_dir}/gflare:${gimp_data_dir}/gflare")
  524.  
  525. # Where to search for data used by the Gimpressionist plug-in.  This is a
  526. # colon-separated list of folders to search.
  527. # (gimpressionist-path "${gimp_dir}/gimpressionist:${gimp_data_dir}/gimpressionist")
  528.  
  529. # This path will be searched for scripts when the Script-Fu plug-in is run. 
  530. # This is a colon-separated list of folders to search.
  531. # (script-fu-path "${gimp_dir}/scripts:${gimp_data_dir}/scripts")
  532.  
  533.