Remove "Path" lines from sample config.
[wine] / documentation / samples / config
1 WINE REGISTRY Version 2
2 ;; All keys relative to \\Machine\\Software\\Wine\\Wine\\Config
3
4 ;; If you think it is necessary to show others your complete config for a
5 ;; bug report, filter out empty lines and comments with
6 ;; grep -v "^;" ~/.wine/config | grep '.'
7 ;;
8 ;; MS-DOS drives configuration
9 ;;
10 ;; Each section has the following format:
11 ;; [Drive X]
12 ;; "Path"="xxx"       (Unix path for drive root)
13 ;; "Type"="xxx"       (supported types are 'floppy', 'hd', 'cdrom' and 'network')
14 ;; "Device"="/dev/xx" (only if you want to allow raw device access)
15 ;;
16 [Drive A]
17 "Type" = "floppy"
18 "Device" = "/dev/fd0"
19
20 [Drive C]
21 "Type" = "hd"
22
23 [Drive D]
24 "Type" = "cdrom"
25 ; make sure that device is correct and has proper permissions !
26 "Device" = "/dev/cdrom"
27
28 [Drive E]
29 "Type" = "hd"
30
31 [Drive F]
32 "Type" = "network"
33
34 [Drive Z]
35 "Type" = "hd"
36
37 [wine]
38 "Windows" = "c:\\windows"
39 "System" = "c:\\windows\\system"
40 "Temp" = "e:\\"
41 "Path" = "c:\\windows;c:\\windows\\system;e:\\;e:\\test;f:\\"
42 "Profile" = "c:\\windows\\Profiles\\Administrator"
43 "GraphicsDriver" = "x11drv"
44 ;"ShowDirSymlinks" = "1"
45 ;"ShowDotFiles" = "1"
46 "ShellLinker" = "wineshelllink"
47
48 # [wineconf]
49
50 [Version]
51 ; Windows version to imitate (win95,win98,winme,nt351,nt40,win2k,winxp,win2k3,win20,win30,win31)
52 ;"Windows" = "win98"
53 ; DOS version to imitate
54 ;"DOS" = "6.22"
55
56 ; Be careful here, wrong DllOverrides settings have the potential
57 ; to pretty much kill your setup.
58 [DllOverrides]
59 ; some dlls you may want to change
60 "oleaut32"     = "builtin, native"
61 "ole32"        = "builtin, native"
62 "comdlg32"     = "builtin, native"
63 "shell32"      = "builtin, native"
64 "shfolder"     = "builtin, native"
65 "shlwapi"      = "builtin, native"
66 "shdocvw"      = "builtin, native"
67 "advapi32"     = "builtin, native"
68 "msvcrt"       = "native, builtin"
69 "mciavi.drv"   = "native, builtin"
70 "mcianim.drv"  = "native, builtin"
71 "msi"          = "native, builtin"
72 ; you can specify applications too
73 ; this one will apply for all notepad.exe
74 ;"*notepad.exe" = "native, builtin"
75 ; this one will apply only for a particular file
76 ;"C:\\windows\\regedit.exe" = "native, builtin"
77 ; default for all other dlls
78 "*" = "builtin, native"
79
80 [x11drv]
81 ; Number of colors to allocate from the system palette
82 "AllocSystemColors" = "100"
83 ; Use a private color map
84 "PrivateColorMap" = "N"
85 ; Favor correctness over speed in some graphics operations
86 "PerfectGraphics" = "N"
87 ; Color depth to use on multi-depth screens
88 ;;"ScreenDepth" = "16"
89 ; Allow the window manager to manage created windows
90 "Managed" = "Y"
91 ; Use a desktop window of 640x480 for Wine
92 ;"Desktop" = "640x480"
93 ; Use XFree86 DGA extension if present
94 ; (make sure /dev/mem is accessible by you !)
95 "UseDGA" = "Y"
96 ; Use XVidMode extension if present
97 "UseXVidMode" = "Y"
98 ; Use XRandR extension if present
99 "UseXRandR" = "Y"
100 ; Use the take focus protocol
101 "UseTakeFocus" = "Y"
102 ; Enable DirectX mouse grab
103 "DXGrab" = "N"
104 ; Create the desktop window with a double-buffered visual
105 ; (useful to play OpenGL games)
106 "DesktopDoubleBuffered" = "N"
107 ; Run in synchronous mode (useful for debugging X11 problems)
108 ;;"Synchronous" = "Y"
109 ;
110 ; Use the Render extension to render client side fonts (default "Y")
111 ;;"ClientSideWithRender" = "Y"
112 ; Fallback on X core requests to render client side fonts (default "Y")
113 ;;"ClientSideWithCore" = "Y"
114 ; Set both of the previous two to "N" in order to force X11 server side fonts
115 ;
116 ; Anti-alias fonts if using the Render extension (default "Y")
117 ;;"ClientSideAntiAliasWithRender" = "Y"
118 ; Anti-alias fonts if using core requests fallback (default "Y")
119 ;;"ClientSideAntiAliasWithCore" = "Y"
120 ;
121
122 [fonts]
123 ;Read the Fonts topic in the Wine User Guide before adding aliases
124 ;See a couple of examples for russian users below
125 "Resolution" = "96"
126 "Default" = "-adobe-helvetica-"
127 "DefaultFixed" = "fixed"
128 "DefaultSerif" = "-adobe-times-"
129 "DefaultSansSerif" = "-adobe-helvetica-"
130
131 ;; default TrueType fonts with russian koi8-r encoding
132 ;"Default" = "-monotype-arial-*-*-*--*-*-*-*-*-*-koi8-r"
133 ;"DefaultFixed" = "-monotype-courier new-*-*-*--*-*-*-*-*-*-koi8-r"
134 ;"DefaultSerif" = "-monotype-times new roman-*-*-*--*-*-*-*-*-*-koi8-r"
135 ;"DefaultSansSerif" = "-monotype-arial-*-*-*--*-*-*-*-*-*-koi8-r"
136 ;; default cyrillic bitmap X fonts
137 ;"Default" = "-cronyx-helvetica-"
138 ;"DefaultFixed" = "fixed"
139 ;"DefaultSerif" = "-cronyx-times-"
140 ;"DefaultSansSerif" = "-cronyx-helvetica-"
141
142 ; the TrueType font dirs you want to make accessible to wine
143 [FontDirs]
144 ;"dir1" = "/usr/X11R6/lib/X11/fonts/TrueType"
145 ;"dir2" = "/usr/share/fonts/truetype"
146 ;"dir3" = "/usr/X11R6/lib/X11/fonts/TT"
147 ;"dir4" = "/usr/share/fonts/TT"
148
149 [ppdev]
150 ;; key:  io-base of the emulated port
151 ;; value : parport-device{,timeout}
152 ;; timeout for auto closing an open device ( not yet implemented)
153 ;"378" = "/dev/parport0"
154 ;"278" = "/dev/parport1"
155 ;"3bc" = "/dev/parport2"
156
157 [spooler]
158 "FILE:" = "tmp.ps"
159 "LPT1:" = "|lpr"
160 "LPT2:" = "|gs -sDEVICE=bj200 -sOutputFile=/tmp/fred -q -"
161 "LPT3:" = "/dev/lp3"
162
163 [ports]
164 ;"read"  = "0x779,0x379,0x280-0x2a0"
165 ;"write" = "0x779,0x379,0x280-0x2a0"
166
167 [Debug]
168 ;"RelayExclude" = "RtlEnterCriticalSection;RtlLeaveCriticalSection"
169 ;"RelayInclude" = "user32.CreateWindowA"
170 ;"RelayFromExclude" = "user32;x11drv"
171 ;"RelayFromInclude" = "sol.exe"
172 ;"SnoopExclude" = "RtlEnterCriticalSection;RtlLeaveCriticalSection"
173 ;"SpyExclude" = "WM_SIZE;WM_TIMER;"
174
175 [registry]
176 ;These are all booleans.  Y/y/T/t/1 are true, N/n/F/f/0 are false.
177 ;Defaults are read all, write to Home
178 ; Where to find the global registries
179 ;"GlobalRegistryDir" = "/etc";
180 ; Global registries (stored in /etc)
181 "LoadGlobalRegistryFiles" = "Y"
182 ; Home registries (stored in ~user/.wine/)
183 "LoadHomeRegistryFiles" = "Y"
184 ; Load Windows registries from the Windows directory
185 "LoadWindowsRegistryFiles" = "Y"
186 ; TRY to write all changes to home registries
187 "WritetoHomeRegistryFiles" = "Y"
188 ; Registry periodic save timeout in seconds
189 ; "PeriodicSave" = "600"
190 ; Save only modified keys
191 "SaveOnlyUpdatedKeys" = "Y"
192
193 [Clipboard]
194 "ClearAllSelections" = "0"
195 "PersistentSelection" = "1"
196 "UsePrimary" = "0"
197
198 ; List of all directories directly contain .AFM files
199 [afmdirs]
200 "1" = "/usr/share/ghostscript/fonts"
201 "2" = "/usr/share/a2ps/afm"
202 "3" = "/usr/share/enscript"
203 "4" = "/usr/X11R6/lib/X11/fonts/Type1"
204
205 [WinMM]
206 ; Uncomment the "Drivers" line matching your sound setting.
207
208 "Drivers" = "wineoss.drv"      ; default for most common configurations
209 ;"Drivers" = "winearts.drv"    ; for KDE
210 ;"Drivers" = "winealsa.drv"    ; for ALSA users
211 ;"Drivers" = "winejack.drv"    ; for Jack sound server
212 ;"Drivers" = "winenas.drv"     ; for NAS sound system
213 ;"Drivers" = "wineaudioio.drv" ; for Solaris machines
214 ;"Drivers" = ""                ; to disable sound
215 "WaveMapper" = "msacm.drv"
216 "MidiMapper" = "midimap.drv"
217
218 [dsound]
219 ;; HEL only: Number of waveOut fragments ahead to mix in new buffers.
220 ;"HELmargin" = "5"
221 ;; HEL only: Number of waveOut fragments ahead to queue to driver.
222 ;"HELqueue" = "5"
223 ;; Max number of fragments to prebuffer
224 ;"SndQueueMax" = "28"
225 ;; Min number of fragments to prebuffer
226 ;"SndQueueMin" = "12"
227 ;; Forces emulation mode (using wave api)
228 ;"HardwareAcceleration" = "Emulation"
229 ;; Sets default playback device (0 - number of devices - 1)
230 ;"DefaultPlayback" = "0"        ; use first device (/dev/dsp)
231 ;"DefaultPlayback" = "1"        ; use second device (/dev/dsp1)
232 ;"DefaultPlayback" = "2"        ; use third device (/dev/dsp2)
233 ;; Sets default capture device (0 - number of devices - 1)
234 ;"DefaultCapture" = "0"         ; use first device (/dev/dsp)
235 ;"DefaultCapture" = "1"         ; use second device (/dev/dsp1)
236 ;"DefaultCapture" = "2"         ; use third device (/dev/dsp2)
237
238 [Network]
239 ;; Use the DNS (Unix) host name always as NetBIOS "ComputerName" (boolean, default "Y").
240 ;; Set to N if you need a persistent NetBIOS ComputerName that possibly differs 
241 ;; from the Unix host name. You'll need to set ComputerName in 
242 ;; HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\ComputerName\ComputerName, too.
243 ;"UseDnsComputerName" = "N"
244
245 ;; sample AppDefaults entries
246
247 ; 3 InstallShield versions who like to put their full screen window in front,
248 ; without any chance to switch to another X11 application.
249 ; So just catch them in a desktop window.
250
251 [AppDefaults\\_INS0432._MP\\x11drv]
252 "Desktop" = "640x480"
253
254 [AppDefaults\\_INS0466._MP\\x11drv]
255 "Desktop" = "640x480"
256
257 [AppDefaults\\_INS0576._MP\\x11drv]
258 "Desktop" = "640x480"
259
260 [AppDefaults\\_INS5176._MP\\x11drv]
261 "Desktop" = "640x480"
262
263 [AppDefaults\\_INS5576._MP\\x11drv]
264 "Desktop" = "640x480"
265
266 ;[AppDefaults\\iexplore.exe\\DllOverrides]
267 ;"shlwapi" = "native"
268 ;"rpcrt4" = "native"
269 ;"ole32" = "native"
270 ;"shdocvw" = "native"
271 ;"wininet" = "native"
272 ;"shfolder" = "native"
273 ;"shell32" = "native"
274 ;"shell" = "native"
275 ;"comctl32" = "native"
276 ;
277 ;[AppDefaults\\setup.exe\\x11drv]
278 ;"Desktop" = "800x600"
279 ;
280 ;[AppDefaults\\sol.exe\\Version]
281 ;"Windows" = "nt40"
282 ;
283 ;; Some games (Quake 2, UT) refuse to accept emulated dsound devices.
284 ;; You can add an AppDefault entry like this for such cases.
285 ;[AppDefaults\\pickygame.exe\\dsound]
286 ;"EmulDriver" = "N"
287
288 # [/wineconf]