Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/Shufflepuck/cdef

Clone of duti (in swift)
https://github.com/Shufflepuck/cdef

Last synced: about 2 months ago
JSON representation

Clone of duti (in swift)

Awesome Lists containing this project

README

        

`cdef` is a handy command-line tool to mess with your default applications.

I currently use it to:

- Change default browser to Chrome
- Change .xml handling from Xcode to TextMate

It uses:

- URL
- UTI

Download it from the [Releases page](https://github.com/ftiff/cdef/releases)

Note: Please fork and Pull Request, or [create an issue](https://github.com/ftiff/cdef/issues)

# What are UTI? (Uniform Type Identifiers)

Uniform type identifiers (UTIs) provide a unified way to identify data handled within the system, such as documents, pasteboard data, and bundles. This chapter describes the concepts behind UTIs and shows how to specify them in your application bundles.

Have more information on [Apple's website](https://developer.apple.com/library/ios/documentation/FileManagement/Conceptual/understanding_utis/understand_utis_conc/understand_utis_conc.html#//apple_ref/doc/uid/TP40001319-CH202-CHDHIJDE)

# Examples

###Get the default application to open PNG files:
```
$ cdef -readdefaultuti public.png
public.png -> com.apple.Preview
```

###Get all applications that *can* open PNG files:
```
$ cdef -readalluti public.png
public.png -> com.pixelmatorteam.pixelmator
public.png -> com.tapbots.TweetbotMac
public.png -> com.omnigroup.OmniGraffle6.MacAppStore
public.png -> com.apple.ColorSyncUtility
public.png -> com.apple.Preview
```

###Get which application will open `http://` URLs:
```
$ cdef -readdefaulturl http
http -> com.apple.Safari
```

###Change your default browser to Chrome:
```
$ cdef -writedefaulturl http com.google.chrome
```

###Get supported URL types for Apple Mail:
```
$ cdef -readURLTypes /Applications/Mail.app/
mailto
message
```

###Get supported Document types for Apple Mail:
```
√ -> Application is default for this type
x -> Application supports but is not default for this type

(Viewer) -> Application can open these files in read-only
(Editor) -> Application can modify these files
(None) -> Application does not support this files
```
```
$ cdef -readDocumentTypes /Applications/Mail.app/
√ com.apple.mail.email (Viewer)
√ com.apple.mail.emlx (Viewer)
x com.apple.mail.emlx.part (None)
√ com.apple.mail.mbox (Editor)
√ com.apple.mail.imapmbox (Editor)
√ com.apple.mail.ewsmbox (Editor)
√ com.apple.mail.stationery (Editor)
```

Note: This will prompt a dialog to ask the user to confirm the change to Chrome.

I use it in my deployments as a Casper policy that executes `/usr/bin/sudo -u#501 /usr/local/bin/cdef -writedefaulturl http com.google.chrome`

See the list of UTIs here: https://developer.apple.com/library/ios/documentation/Miscellaneous/Reference/UTIRef/Articles/System-DeclaredUniformTypeIdentifiers.html#//apple_ref/doc/uid/TP40009259-SW1

# Developers
You're more than welcome to contribute to the code!

Everything needed to create a package is under cdef-Package/. Just run cdef-Package/build_pkg.sh !

You will need to change the Team ID & Certificate.

But... please PR so we can keep only one repository.