Certo è possibile impostare Conkeror come browser Web predefinito; ha solo bisogno di un file Info.plist
correttamente strutturato.
Ne ho creato uno qui: link
Scaricalo, decomprimilo e sostituisci il seguente file Info.plist
con quello incluso nel download:
/Applications/conkeror.mozdev.org/conkeror/Contents/Info.plist
Nota: dopo aver completato questo, assicurati di touch
del pacchetto di applicazioni, che costringerà i Servizi di lancio a riesaminare e registrare nuovamente l'app e la sua capacità appena trovata per i tipi http://
e https://
URL . In altre parole, il seguente dovrebbe essere sufficiente:
touch /Applications/conkeror.mozdev.org/conkeror.app
Quindi deseleziona e riseleziona l'icona dell'app nel Finder.
Avvia Safari e scegli Conkeror dal menu popup:
FWIW,hocambiatoInfo.plistcomesegue:
<?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>