Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 1 | .\" -*- nroff -*- |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 2 | .TH WINE.CONF 5 "December 5, 2000" "Version 20001202" "Wine Configuration File" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 3 | .SH NAME |
| 4 | wine.conf \- Wine configuration file |
| 5 | .SH DESCRIPTION |
| 6 | .B wine |
| 7 | expects a configuration file ( |
| 8 | .I @sysconfdir@/wine.conf |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 9 | ), which should conform to the following rules. Common locations are |
| 10 | /usr/local/etc/wine.conf or (in some distributions) |
| 11 | /etc/wine.conf. The actual directory where that file resides may be |
| 12 | specified during the execution of the |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 13 | .B configure |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 14 | script with the --sysconfdir option. Alternatively, you may have a |
| 15 | file named |
| 16 | .I config |
| 17 | in this format in your ~/.wine directory or in the directory named in |
| 18 | the |
| 19 | .B WINEPREFIX |
| 20 | environment variable. A sample configuration file is available as |
| 21 | .I documentation/samples/config |
| 22 | in the Wine source distribution. |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 23 | .SH CONFIGURATION FILE FORMAT |
| 24 | All entries are grouped in sections; a section begins with the line |
| 25 | .br |
| 26 | .I [section name] |
| 27 | .br |
| 28 | and continues until the next section starts. Individual entries |
| 29 | consist of lines of the form |
| 30 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 31 | .I """entry""=""value""" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 32 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 33 | The entry and value can be any text strings, included in double |
| 34 | quotes; it can also contain references to environment variables |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 35 | surrounded by |
| 36 | .I ${}. |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 37 | Inside the double quotes, special characters, backslashes and quotes |
| 38 | must be escaped with backslashes. Supported section names and entries |
| 39 | are listed below. |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 40 | .PP |
| 41 | .B [Drive X] |
| 42 | .br |
| 43 | This section is used to specify the root directory and type of each |
| 44 | .B DOS |
| 45 | drive, since most Windows applications require a DOS/MS-Windows based |
| 46 | disk drive & directory scheme. There is one such section for every |
| 47 | drive you want to configure. |
| 48 | .PP |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 49 | .I format: """Path""=""<rootdirectory>""" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 50 | .br |
| 51 | default: none |
| 52 | .br |
| 53 | If you mounted your dos partition as |
| 54 | .I /dos |
| 55 | and installed Microsoft Windows in |
| 56 | C:\\WINDOWS then you should specify |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 57 | .I """Path""=""/dos""" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 58 | in the |
| 59 | .I [Drive C] |
| 60 | section. |
| 61 | .PP |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 62 | .I format: """Type""=""<type>""" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 63 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 64 | default: "hd" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 65 | .br |
| 66 | Used to specify the drive type this drive appears as in Windows |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 67 | or DOS programs; supported types are "floppy", "hd", "cdrom" |
| 68 | and "network". |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 69 | .PP |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 70 | .I format: """Label""=""<label>""" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 71 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 72 | default: "Drive X" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 73 | .br |
| 74 | Used to specify the drive label; limited to 11 characters. |
| 75 | .PP |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 76 | .I format: """Serial""=""<serial>""" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 77 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 78 | default: "12345678" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 79 | .br |
| 80 | Used to specify the drive serial number, as an 8-character hexadecimal |
| 81 | number. |
| 82 | .PP |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 83 | .I format: """Filesystem""=""<fstype>""" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 84 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 85 | default: "win95" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 86 | .br |
| 87 | Used to specify the type of the file system Wine should emulate on a given |
| 88 | directory structure/underlying file system. |
| 89 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 90 | Supported types are "msdos" (or "fat"), "win95" (or "vfat"), "unix". |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 91 | .br |
| 92 | Recommended: |
| 93 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 94 | "win95" for ext2fs, VFAT and FAT32 |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 95 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 96 | "msdos" for FAT16 (ugly) |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 97 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 98 | You definitely do not want to use "unix" unless you intend to port |
| 99 | programs using Winelib. Always try to avoid using FAT16. Use the |
| 100 | VFAT/FAT32 OS file system driver instead. |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 101 | .PP |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 102 | .I format: """FailReadOnly""=""<boolean>""" |
Alexandre Julliard | fbace6e | 2000-04-04 20:35:45 +0000 | [diff] [blame] | 103 | .br |
| 104 | Read-only files may not be opened in write mode (the default is to |
| 105 | allow opening read-only files for writing, because most Windows |
| 106 | programs always request read-write access, even on CD-ROM drives...). |
| 107 | .PP |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 108 | .B [wine] |
| 109 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 110 | .I format: """windows""=""<directory>""" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 111 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 112 | default: "C:\\\\WINDOWS" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 113 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 114 | Used to specify a different Windows directory; make sure to double the |
| 115 | backslashes. |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 116 | .PP |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 117 | .I format: """system""=""<directory>""" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 118 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 119 | default: "C:\\\\WINDOWS\\\\SYSTEM" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 120 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 121 | Used to specify a different system directory; make sure to double the |
| 122 | backslashes. |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 123 | .PP |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 124 | .I format: """temp""=""<directory>""" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 125 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 126 | default: "C:\\\\TEMP" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 127 | .br |
| 128 | Used to specify a directory where Windows applications can store |
| 129 | temporary files. |
| 130 | .PP |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 131 | .I format: """profile""=""<directory>""" |
Juergen Schmied | 8573cc7 | 2000-01-30 03:03:23 +0000 | [diff] [blame] | 132 | .br |
| 133 | default: nothing |
| 134 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 135 | Used to specify a directory where Windows stores special folders and |
| 136 | the user-registry files (user.dat or ntuser.dat). Mapped to |
| 137 | environment variable %USERPROFILE%. Set this value when running with |
| 138 | a native NT or a native win95 directory with per-user settings. |
Juergen Schmied | 8573cc7 | 2000-01-30 03:03:23 +0000 | [diff] [blame] | 139 | .PP |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 140 | .I format: """path""=""<directories separated by semi-colons>""" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 141 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 142 | default: "C:\\\\WINDOWS;C:\\\\WINDOWS\\\\SYSTEM" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 143 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 144 | Used to specify the path which will be used to find executables and |
| 145 | dlls. Make sure to double all the backslashes. |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 146 | .PP |
| 147 | .B [DllDefaults] |
| 148 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 149 | .I format: """EXTRA_LD_LIBRARY_PATH""=""@prefix@/lib/wine[:/more/path/to/search[:...]]""" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 150 | .br |
| 151 | The path will be appended to any existing LD_LIBRARY_PATH from the |
Alexandre Julliard | 32fcfc2 | 2000-11-30 01:15:30 +0000 | [diff] [blame] | 152 | environment for the search of .so libraries. |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 153 | .PP |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 154 | .I format: """DefaultLoadOrder""=""native,so,builtin""" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 155 | .br |
| 156 | A comma separated list of module-types to try to load in that specific |
| 157 | order. The DefaultLoadOrder key is used as a fallback when a module is |
| 158 | not specified explicitely. If the DefaultLoadOrder key is not found, |
Alexandre Julliard | 32fcfc2 | 2000-11-30 01:15:30 +0000 | [diff] [blame] | 159 | then the order "native,builtin,so" is used. |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 160 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 161 | Case is not important and only the first letter of each type is enough |
| 162 | to identify the type n[ative], s[o], b[uiltin]. Also whitespace is |
| 163 | ignored. See also commandline option |
Peter Ganten | f35cdc8 | 2000-04-04 18:57:19 +0000 | [diff] [blame] | 164 | .I --dll |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 165 | for details about the allowable types. |
| 166 | .PP |
| 167 | .B [DllOverrides] |
| 168 | .br |
Alexandre Julliard | 32fcfc2 | 2000-11-30 01:15:30 +0000 | [diff] [blame] | 169 | There are no explicit keys defined other than module/library names. A |
| 170 | module namd is followed by an assignment of the load order for this |
| 171 | specific module. See above for possible types. You should not specify |
| 172 | an extension. |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 173 | .br |
| 174 | Examples: |
| 175 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 176 | .I """kernel32""=""builtin""" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 177 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 178 | .I """kernel""=""builtin""" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 179 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 180 | .I """comdlg32""=""native, builtin""" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 181 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 182 | .I """commdlg""=""native, builtin""" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 183 | .br |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 184 | Changing the load order of kernel/kernel32 and gdi/gdi32 to |
| 185 | anything other than builtin will cause wine to fail because wine cannot |
| 186 | use native versions for these libraries (gdi[32] might work native someday, |
Alexandre Julliard | 32fcfc2 | 2000-11-30 01:15:30 +0000 | [diff] [blame] | 187 | but kernel[32] will never work native). |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 188 | Note that using the native versions of user[32] isn't recommended right now, |
| 189 | as these modules face nearly the same problems as kernel/gdi and we only |
| 190 | just managed to make them work partially. But trying to use it might get |
| 191 | your program running. |
| 192 | .br |
| 193 | Always make sure that you have some kind of strategy in mind when you start |
| 194 | fiddling with the current defaults and needless to say that you must know |
| 195 | what you are doing. |
| 196 | .PP |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 197 | .B [serialports] |
| 198 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 199 | .I format: """com[12345678]""=""<devicename>""" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 200 | .br |
| 201 | default: none |
| 202 | .br |
| 203 | Used to specify the devices which are used as COM1 - COM8. |
| 204 | .PP |
| 205 | .B [parallelports] |
| 206 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 207 | .I format: """lpt[12345678]""=""<devicename>""" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 208 | .br |
| 209 | default: none |
| 210 | .br |
| 211 | Used to specify the devices which are used as LPT1 - LPT8. |
| 212 | .PP |
| 213 | .B [spy] |
| 214 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 215 | .I format: """exclude""=""<message names separated by semicolons>""" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 216 | .br |
| 217 | default: none |
| 218 | .br |
| 219 | Used to specify which messages will be excluded from the logfile. |
| 220 | .PP |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 221 | .I format: """include""=""<message names separated by semicolons>""" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 222 | .br |
| 223 | default: none |
| 224 | .br Used to specify which messages will be included in the logfile. |
| 225 | .PP |
| 226 | .B [Tweak.Layout] |
| 227 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 228 | .I format: """WineLook""=""<Win31|Win95|Win98>""" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 229 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 230 | default: "Win31" |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 231 | .br |
| 232 | Use Win95-like window displays or Win3.1-like window displays. |
Juergen Schmied | 9e6b1d1 | 1999-12-11 23:22:52 +0000 | [diff] [blame] | 233 | .PP |
| 234 | .B [Registry] |
| 235 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 236 | .I format: """LoadGlobalRegistryFiles""=""<boolean>""" |
Juergen Schmied | 9e6b1d1 | 1999-12-11 23:22:52 +0000 | [diff] [blame] | 237 | .br |
| 238 | Global registries (stored in /etc) |
| 239 | .PP |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 240 | .I format: """LoadHomeRegistryFiles""=""<boolean>""" |
Juergen Schmied | 9e6b1d1 | 1999-12-11 23:22:52 +0000 | [diff] [blame] | 241 | .br |
| 242 | Home registries (stored in ~user/.wine/) |
| 243 | .PP |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 244 | .I format: """WritetoHomeRegistryFiles""=""<boolean>""" |
Juergen Schmied | 9e6b1d1 | 1999-12-11 23:22:52 +0000 | [diff] [blame] | 245 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 246 | TRY to write all changes to the home registry files |
Juergen Schmied | 9e6b1d1 | 1999-12-11 23:22:52 +0000 | [diff] [blame] | 247 | .PP |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 248 | .I format: """LoadWindowsRegistryFiles""=""<boolean>""" |
Juergen Schmied | 9e6b1d1 | 1999-12-11 23:22:52 +0000 | [diff] [blame] | 249 | .br |
Juergen Schmied | 8573cc7 | 2000-01-30 03:03:23 +0000 | [diff] [blame] | 250 | Load Windows registry from the current Windows directory. |
Juergen Schmied | 9e6b1d1 | 1999-12-11 23:22:52 +0000 | [diff] [blame] | 251 | .PP |
| 252 | booleans: Y/y/T/t/1 are true, N/n/F/f/0 are false. |
| 253 | .br |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 254 | Defaults are read all, write to home files. |
Juergen Schmied | 9e6b1d1 | 1999-12-11 23:22:52 +0000 | [diff] [blame] | 255 | .PP |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 256 | .SH SAMPLE CONFIGURATION FILE |
| 257 | A sample configuration file is distributed as |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 258 | .B documentation/samples/config |
| 259 | in the Wine source distribution. |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 260 | .SH FILES |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 261 | .TP |
| 262 | .I @sysconfdir@/wine.conf |
| 263 | Global configuration file for wine. |
| 264 | .TP |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 265 | .I ~/.wine/config |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 266 | User-specific configuration file |
Alexandre Julliard | 73be8d1 | 2000-12-06 20:25:11 +0000 | [diff] [blame^] | 267 | .SH ENVIRONMENT VARIABLES |
| 268 | .TP |
| 269 | .I WINEPREFIX |
| 270 | Specifies the directory that contains the per-user |
| 271 | .I config |
| 272 | file, the registry files, and the wineserver socket. The default is |
| 273 | .I $HOME/.wine. |
Alexandre Julliard | d6baf1b | 1999-07-18 15:47:22 +0000 | [diff] [blame] | 274 | .SH "SEE ALSO" |
| 275 | .BR wine (1) |