/gimp/2.0/gimprc

http://github.com/brinkman83/bashrc · #! · 689 lines · 581 code · 108 blank · 0 comment · 0 complexity · b76c84d03617b7a6fd0f797d934084a0 MD5 · raw file

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