Hey, I'm running Wine 1.1 on OS-X Leopard, and am trying to figure out how to tell Finder to open all files with a .exe extension to open with Wine. The only way I can think of is to create a new .app folder with just enough information to link to the actual Wine executable. I took apart the .app package of jEdit and replaced all references to jEdit with ones for Wine, then symlinked the real Wine executable to the Contents/MacOS directory. Here is the info.plist file I tore apart: Code: <plist version="1.0"> <dict> <key>CFBundleExecutable</key> <string>wine</string> <key>CFBundleGetInfoString</key> <string>wine windows emulator</string> <key>CFBundleIconFile</key> <string>icon.icns</string> <key>CFBundleName</key> <string>wine</string> <key>CFBundlePackageType</key> <string>APPL</string> </dict> </plist> Firstly, does anyone know if this can even be done? Second, if it can, what am I doing wrong? When I try to launch a Window$ application with it, X comes up like its supposed to, but there's no visible activity beyond that. Thanks in advance, - Jeremy