Seguro que es posible configurar Conkeror como el navegador web predeterminado; solo necesita un archivo Info.plist
correctamente estructurado.
He creado uno aquí: enlace
Simplemente descargue eso, descomprímalo y reemplace el siguiente archivo Info.plist
con el que se incluye en la descarga:
/Applications/conkeror.mozdev.org/conkeror/Contents/Info.plist
Nota: después de completar esto, asegúrese de que touch
el paquete de aplicaciones, lo que obligará a los Servicios de lanzamiento a volver a examinar y volver a registrar la aplicación y su nueva capacidad para los tipos de URL http://
y https://
. En otras palabras, lo siguiente debería ser suficiente:
touch /Applications/conkeror.mozdev.org/conkeror.app
Luego deselecciona y vuelve a seleccionar el ícono de la aplicación en el Finder.
Inicie Safari y elija Conkeror en el menú emergente:
FWIW,cambiélalistadeinformaciónparaquesealasiguiente:
<?xmlversion="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleSignature</key>
<string>CONK</string>
<key>CFBundleIdentifier</key>
<string>org.mozdev.conkeror</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>Web site URL</string>
<key>CFBundleURLSchemes</key>
<array>
<string>http</string>
<string>https</string>
</array>
</dict>
</array>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleExecutable</key>
<string>xulrunner</string>
<key>CFBundleName</key>
<string>conkeror</string>
<key>CFBundleVersion</key>
<string>93</string>
<key>NSHumanReadableCopyright</key>
<string>(c) 2007, Shawn Betts</string>
<key>NSAppleScriptEnabled</key>
<true/>
<key>CFBundleDisplayName</key>
<string>Conkeror</string>
<key>CFBundleShortVersionString</key>
<string>0.9.3</string>
<key>CFBundleGetInfoString</key>
<string>Conkeror 0.9.3, A 100% keyboard driven mozilla based web browser.</string>
</dict>
</plist>