Launch Services est responsable des associations de fichiers par défaut.
Disons que je voulais changer tous les fichiers texte pour les ouvrir dans Sublime Text 2.
J'ai d'abord besoin du kMDItemCFBundleIdentifier pour Sublime Text 2. Je peux utiliser mdls pour obtenir ces informations:
> mdls /Applications/Sublime\ Text\ 2.app
_kTimeMachineIsCreationMarker = 1
_kTimeMachineNewestSnapshot = 4001-01-01 00:00:00 +0000
_kTimeMachineOldestSnapshot = 2012-02-22 03:49:19 +0000
kMDItemCFBundleIdentifier = "com.sublimetext.2"
....snip....
Je peux trouver la valeur du type de contenu pour les fichiers texte en inspectant l'un d'eux avec mdls :
> mdls test.txt
kMDItemContentCreationDate = 2012-03-25 04:18:50 +0000
kMDItemContentModificationDate = 2012-03-25 04:18:50 +0000
kMDItemContentType = "public.plain-text"
kMDItemContentTypeTree = (
"public.plain-text",
"public.text",
"public.data",
"public.item",
"public.content"
)
kMDItemDateAdded = 2012-03-25 04:18:50 +0000
kMDItemDisplayName = "test.txt"
kMDItemFSContentChangeDate = 2012-03-25 04:18:50 +0000
kMDItemFSCreationDate = 2012-03-25 04:18:50 +0000
kMDItemFSCreatorCode = ""
kMDItemFSFinderFlags = 0
kMDItemFSHasCustomIcon = 0
kMDItemFSInvisible = 0
kMDItemFSIsExtensionHidden = 0
kMDItemFSIsStationery = 0
kMDItemFSLabel = 0
kMDItemFSName = "test.txt"
kMDItemFSNodeCount = 975
kMDItemFSOwnerGroupID = 20
kMDItemFSOwnerUserID = 501
kMDItemFSSize = 975
kMDItemFSTypeCode = ""
kMDItemKind = "Plain Text"
kMDItemLogicalSize = 975
kMDItemPhysicalSize = 4096
Dans ce cas, je changerai l'application par défaut pour tous les public.plain-text
types.
Pour ce faire, je tape:
defaults write com.apple.LaunchServices LSHandlers -array-add '{ LSHandlerContentType = \"public.plain-text\"; LSHandlerRoleAll = \"com.sublimetext.2\"; }'
Si je veux que les modifications prennent effet, je devrai redémarrer Launch Services comme suit:
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister -kill -r -domain local -domain system -domain user
Et pour donner du crédit là où le crédit est dû, j'ai appris cette approche à partir de cette question et réponse stackoverflow.com: /programming/9172226/how-to-set-default-application-for-specific-file -types-dans-mac-os-x
checking which SDK to use... configure: error: darwin12.0.0 is not a supported system
.