gimprc.win32 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364
  1. # This is the system-wide gimprc file. Any change made in this file
  2. # will affect all users of this system, provided that they are not
  3. # overriding the default values in their personal gimprc file.
  4. #
  5. # Lines that start with a '#' are comments.
  6. # Blank lines are ignored.
  7. # The variable gimp_dir refers to your personal gimp directory. It is
  8. # set to either the value _gimp1.2 or the value of the environment
  9. # variable GIMP_DIRECTORY. If the path in gimp_dir is relative, it is
  10. # considered relative to your home directory (value of environment
  11. # variable %HOME%, or %HOMEDRIVE%:%HOMEPATH%). If you don't have a
  12. # home directory (typical on Windows systems), gimp_dir refers to
  13. # directory in the GIMP installation directory.
  14. # The variable gimp_install_dir is set to the directory where the gimp
  15. # was installed.
  16. (exec_prefix "${gimp_install_dir}\\bin")
  17. (gimp_data_dir "${gimp_install_dir}")
  18. (gimp_plugin_dir "${gimp_install_dir}")
  19. # Set the temporary storage directory...files will appear here
  20. # during the course of running the gimp. Most files will disappear
  21. # when the gimp exits, but some files are likely to remain,
  22. # such as working palette files, so it is best if this directory
  23. # not be one that is shared by other users or is cleared on machine
  24. # reboot such as /tmp.
  25. (temp-path "${TEMP}")
  26. # Set the swap file location. The gimp uses a tile based memory
  27. # allocation scheme. The swap file is used to quickly and easily
  28. # swap files out to disk and back in. Be aware that the swap file
  29. # can easily get very large if the gimp is used with large images.
  30. # Also, things can get horribly slow if the swap file is created on
  31. # a directory that is mounted over NFS. For these reasons, it may
  32. # be desirable to put your swap file in "/tmp".
  33. (swap-path "${TEMP}")
  34. # Set the brush search path...this path will be searched for valid
  35. # brushes at startup.
  36. (brush-path "${gimp_dir}\\brushes;${gimp_data_dir}\\brushes")
  37. # Set the generated brush search path...this path will be searched for valid
  38. # generated brushes at startup.
  39. (brush-vbr-path "${gimp_dir}\\generated_brushes")
  40. # Specify a default brush. If none is specified it defaults to the
  41. # "1circle.gbr" brush which is just a single pixel sized brush.
  42. # The brush is searched for in the brush path.
  43. (default-brush "Circle (19)")
  44. # Set the pattern search path...this path will be searched for valid
  45. # patterns at startup.
  46. (pattern-path "${gimp_dir}\\patterns;${gimp_data_dir}\\patterns")
  47. # Specify a default pattern.
  48. # The pattern is searched for in the specified pattern paths.
  49. (default-pattern "Pine?")
  50. # Set the palette search path...this path will be searched for valid
  51. # palettes at startup.
  52. (palette-path "${gimp_dir}\\palettes;${gimp_data_dir}\\palettes")
  53. # Specify a default palette.
  54. # The pattern is searched for in the specified pattern paths.
  55. (default-palette "Default")
  56. # Set the gradient search path...this path will be searched for valid
  57. # gradients at startup.
  58. (gradient-path "${gimp_dir}\\gradients;${gimp_data_dir}\\gradients")
  59. # Specify a default gradient.
  60. # The gradient is searched for in the specified gradient paths.
  61. (default-gradient "German_flag_smooth")
  62. # Set the plug-in search path...this path will be searched for
  63. # plug-ins when the plug-in is run.
  64. (plug-in-path "${gimp_dir}\\plug-ins;${gimp_plugin_dir}\\plug-ins")
  65. # Set the path for the script-fu plug-in. This value is ignored by
  66. # the GIMP if the script-fu plug-in is never run.
  67. (script-fu-path "${gimp_dir}\\scripts;${gimp_data_dir}\\scripts")
  68. # Set the path to modules that are to be initialized at startup
  69. (module-path "${gimp_dir}\\modules;${gimp_plugin_dir}\\modules")
  70. # Specify a theme for the GUI. If none is specified it defaults to "Default"
  71. (theme "Default")
  72. # Set the theme path.
  73. (theme-path "${gimp_dir}\\themes;${gimp_data_dir}\\themes")
  74. # The tile cache is used to make sure the gimp doesn't thrash
  75. # tiles between memory and disk. Setting this value higher will
  76. # cause the gimp to use less swap space, but will also cause
  77. # the gimp to use more memory. Conversely, a smaller cache size
  78. # causes the gimp to use more swap space and less memory.
  79. # Note: the gimp will still run even if `tile-cache-size' is
  80. # set to 0. The actual size can contain a suffix of 'm', 'M',
  81. # 'k', 'K', 'b' or 'B', which makes the gimp interpret the
  82. # size as being specified in megabytes, kilobytes and bytes
  83. # respectively. If no suffix is specified the size defaults to
  84. # being specified in kilobytes.
  85. (tile-cache-size 32m)
  86. # Speed of marching ants in the selection outline
  87. # this value is in milliseconds
  88. # (less time indicates faster marching)
  89. (marching-ants-speed 300)
  90. # Set the number of operations kept on the undo stack
  91. (undo-levels 5)
  92. # Set the minimal number of colors for dithering on 8-bit displays.
  93. # If the GIMP cannot allocate at least this number of colors, a
  94. # private colormap will be allocated, resulting in colormap "flashing".
  95. # The default value of 144 corresponds to a "color cube" of 6*6*4 colors
  96. # where the 3 values stand for shades of red, green and blue.
  97. # Multiplying the # of shades of each primary color yields
  98. # the total number of colors that will be allocated for the
  99. # GIMP colormap.
  100. # This number must not exceed 256. Most of the colors remaining after
  101. # the allocation of the colorcube will be left to the system palette
  102. # in an effort to reduce colormap "flashing".
  103. # Note that setting this value to something higher than 216 (6*6*6)
  104. # will not work with Gtk versions lower than 1.2.8.
  105. (min-colors 144)
  106. # Install a private GIMP colormap by default -- only for 8-bit displays
  107. # (install-colormap)
  108. # Specify that marching ants for selected regions will be drawn
  109. # with colormap cycling as oposed to redrawing with different stipple masks
  110. # this color cycling option works only with 8-bit displays
  111. # (colormap-cycling)
  112. # Tools such as fuzzy-select and bucket fill find regions based on a
  113. # seed-fill algorithm. The seed fill starts at the intially selected
  114. # pixel and progresses in all directions until the difference of pixel
  115. # intensity from the original is greater than a specified threshold
  116. # ==> This value represents the default threshold
  117. (default-threshold 15)
  118. # There is always a tradeoff between memory usage and speed. In most
  119. # cases, the GIMP opts for speed over memory. However, if memory is
  120. # a big issue, set stingy-memory-use
  121. # (stingy-memory-use)
  122. # When zooming into and out of images, this option enables the
  123. # automatic resizing of windows
  124. # (resize-windows-on-zoom)
  125. # When the physical size of the image changes, this option enables the
  126. # automatic resizing of windows
  127. # (resize-windows-on-resize)
  128. # Context-dependent cursors are cool. They are enabled by default.
  129. # However, they require overhead that you may want to do without.
  130. # Uncomment this line to disable them.
  131. # (no-cursor-updating)
  132. # Layer preview sizes (also used for the Undo History):
  133. # none: no previews in layers dialog/layer selector
  134. # tiny: 24x24
  135. # small: 32x32
  136. # medium: 48x48
  137. # large: 64x64
  138. # huge: 128x128
  139. # #: #x#
  140. (preview-size small)
  141. # Navigation window preview sizes:
  142. # small: 48x48
  143. # medium: 80x80
  144. # large: 112x112
  145. # #: #x#
  146. (nav-preview-size large)
  147. # Tooltips
  148. # Comment this out to disable the tooltips in the toolbox
  149. # (dont-show-tool-tips)
  150. # Help System
  151. # Comment this out to disable context-sensitive help with F1 key
  152. # (dont-use-help)
  153. # Controlling ruler visibility
  154. # The default behavior is for rulers to be ON.
  155. # This can also be toggled with the View->Toggle Rulers command
  156. # or shift+control+r
  157. # (dont-show-rulers)
  158. # Controlling statusbar visibility
  159. # The default behavior is to show the statusbar.
  160. # This can also be toggled with the View->Toggle Statusbar command
  161. # or shift+control+s
  162. # (dont-show-statusbar)
  163. # Default units
  164. # This is the default unit of a new image. It will appear in the
  165. # File/New dialog and will be the unit for coordinate display when
  166. # dot-for-dot is off.
  167. # The default units can be one of:
  168. # (inches millimeters points picas) plus those in your user units database
  169. # The default is inches
  170. (default-units inches)
  171. # Default Resolution units
  172. # This is used to specify the resolution of a new image
  173. # The units for the resolution can be one of:
  174. # (inches millimeters points picas) plus those in your user units database
  175. # The default is inches
  176. (default-resolution-units inches)
  177. # Default Resolution
  178. # This is the default resolution of a new image in dpi
  179. # The default is 72.0 dpi in both x and y direction
  180. (default-xresolution 72.0)
  181. (default-yresolution 72.0)
  182. # Disable auto saving
  183. # Auto saving is not yet implemented! Nothing will be auto-saved, no matter
  184. # how you set this here.
  185. # Just uncomment the line below...
  186. # (dont-auto-save)
  187. # Disable confirmation before closing an image without saving
  188. # Just uncomment the next line
  189. # (dont-confirm-on-close)
  190. # By default GIMP remembers the positions and sizes of the main dialogs and
  191. # advices your window-manager to place them there again the next time you
  192. # use the GIMP. To disable this behaviour, uncomment the line below...
  193. # (dont-save-session-info)
  194. # Session managment
  195. # To let GIMP try to restore your last saved session,
  196. # just uncomment the line below...
  197. (always-restore-session)
  198. # Setting the level of interpolation
  199. # Uncommenting this line will enable cubic interpolation.
  200. # By default, GIMP uses linear interpolation, which is faster, but
  201. # has poorer quality
  202. # (cubic-interpolation)
  203. # Set the gamma correction values for the display
  204. # 1.0 corresponds to no gamma correction. For most displays,
  205. # gamma correction should be set to between 2.0 and 2.6
  206. # Run the utility "gamma_correct" to determine appropriate values
  207. # for your display.
  208. #
  209. # One important item to keep in mind: Many images that you might
  210. # get from outside sources will in all likelihood already be
  211. # gamma-corrected. In these cases, the image will look washed-out
  212. # if the gimp has gamma-correction turned on. If you are going
  213. # to work with images of this sort, turn gamma correction off
  214. # by removing this line, or setting the values to 1.0.
  215. # gamma-correction 1.0
  216. # gamma-correction 2.0
  217. #
  218. (gamma-correction 1.0)
  219. # Set the manner in which transparency is displayed in images
  220. # Transparency type can be one of:
  221. # 0: Light Checks
  222. # 1: Mid-Tone Checks
  223. # 2: Dark Checks
  224. # 3: White Only
  225. # 4: Gray Only
  226. # 5: Black Only
  227. # Check size can be one of:
  228. # 0: Small
  229. # 1: Medium
  230. # 2: Large
  231. (transparency-type 1)
  232. (transparency-size 2)
  233. # This string sets how image window titles are formatted.
  234. # The following percent expansions are performed:
  235. # %% literal percent sign
  236. # %f bare filename, or "Untitled"
  237. # %F full path to file
  238. # %p PDB image id
  239. # %i view instance number
  240. # %t image type (RGB, indexed, greyscale)
  241. # %z zoom factor as a percentage
  242. # %s source scale factor
  243. # %d destination scale factor
  244. # %Dx expands to x if the image is dirty
  245. # %Cx expands to x if the image is clean
  246. # %m memory used by the image
  247. # %l the number of layers
  248. # %L the name of the active layer/channel
  249. # %w image width in pixels
  250. # %W image width in real-world units
  251. # %h image height in pixels
  252. # %H image height in real-world units
  253. # %u unit symbol
  254. # %U unit abbreviation
  255. # See gimprc(5) for further details.
  256. (image-title-format "%D*%f-%p.%i (%t) %z%%")
  257. # This string sets how image window status bars are formatted.
  258. # See image-title-format for the list of performed percent expansions.
  259. (image-status-format "%D*%f-%p.%i (%t) %z%%")
  260. # Global paint options
  261. # By default options for the paint tools are local, e.g. all paint tools
  262. # use the options you specify in their tool options dialog. If you wish
  263. # to have global settings in the brushes dialog that affect all paint tools,
  264. # you can change this by uncommenting the next line.
  265. # (global-paint-options)
  266. # Maximal new image size
  267. # To prevent mistakes Gimp will warn you if you try to create a very large
  268. # image. The default maximum memory consumption of the new image that
  269. # triggers the warning is 32MB.
  270. (max-new-image-size 32M)
  271. # Trust dirty flag
  272. # Gimp tries to keep track of changes to an image. If you trust this
  273. # behaviour, nothing will happen if you save an unchanged image. By default
  274. # this is turned off.
  275. # Just uncomment the following line if you trust the dirty flag.
  276. # (trust-dirty-flag)
  277. # Perfect mouse tracking
  278. # GIMP attempts to keep up with the motion of the pointer when
  279. # painting, but when a painting operation is particularly CPU
  280. # intensive the GIMP will miss the subtlety of your painting
  281. # motion and render overly-angular strokes. Enabling 'perfect
  282. # mouse tracking' allows GIMP to track your painting motion
  283. # more evenly, at the expense of lagging behind your brush at
  284. # times of CPU stress.
  285. (perfect-mouse yes)
  286. # Help browser
  287. # Determines which program to use as browser for the GIMP help pages.
  288. # The only possible value on Win32 is "netscape" which will show
  289. # the help pages using your default web browser.
  290. (help-browser netscape)
  291. # Fractalexplorer path
  292. # This path will be searched for fractals when you use the Fractalexplorer
  293. # plug-in.
  294. (fractalexplorer-path "${gimp_dir}\\fractalexplorer;${gimp_data_dir}\\fractalexplorer")
  295. # Gfig search path
  296. # This path will be searched for Gfig figures when you use the Gfig plug-in.
  297. (gfig-path "${gimp_dir}\\gfig;${gimp_data_dir}\\gfig")
  298. # GFlare path
  299. # This path will be searched for gflares when you use the GFlare plug-in.
  300. (gflare-path "${gimp_dir}\\gflare;${gimp_data_dir}\\gflare")
  301. # Gimpressionist path
  302. # This path will be searched for data when you use the Gimpressionist plug-in.
  303. (gimpressionist-path "${gimp_dir}\\gimpressionist;${gimp_data_dir}\\gimpressionist")
  304. # [end of file]