File: Info.plist.example

package info (click to toggle)
jupyter-notebook 4.2.3-4~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 7,804 kB
  • sloc: python: 8,698; makefile: 240; sh: 74
file content (20 lines) | stat: -rw-r--r-- 702 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
    # Add this into the info.plist file of an application
    # and the icns icon in Contents/Resources
    # then move the application twice :
    # http://superuser.com/questions/178316/how-to-set-an-icon-for-a-file-type-on-mac

    <key>CFBundleDocumentTypes</key>
    <array>
        <dict>
            <key>CFBundleTypeExtensions</key>
            <array>
                <string>ipynb</string>
            </array>
            <key>CFBundleTypeIconFile</key>
            <string>ipynb_mac_icon</string>
            <key>CFBundleTypeName</key>
            <string>IPython notebook file</string>
            <key>CFBundleTypeRole</key>
            <string>None</string>
        </dict>
    <array>