1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-24 07:46:59 +03:00
wezterm/assets/macos/WezTerm.app/Contents/Info.plist
Wez Furlong 67a57f12af Add basic install script and icon
The icon comes from "Smoothicons 7" by Corey Marion which I found
as a royalty free icon searching the internet.  I would love to
have a purpose built icon, but this is sufficient for now.

The install script sets up a macOS application bundle that references
the generated wezterm binary and the icon.  The same technique could
be used to generate a .desktop file for linux.

I've changed the default-prog on macos to be `login -pf $USER` as
that is a better default experience on macOS.
2019-03-23 18:41:10 -07:00

57 lines
2.3 KiB
Plaintext

<?xml version="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>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>wezterm</string>
<key>CFBundleIdentifier</key>
<string>com.github.wez.wezterm</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>WezTerm</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.1.0</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>
</array>
<key>CFBundleVersion</key>
<string>1</string>
<key>CFBundleIconFile</key>
<string>terminal.icns</string>
<key>NSHighResolutionCapable</key>
<true/>
<key>NSMainNibFile</key>
<string></string>
<key>NSSupportsAutomaticGraphicsSwitching</key>
<true/>
<key>CFBundleDisplayName</key>
<string>WezTerm</string>
<key>NSRequiresAquaSystemAppearance</key>
<string>NO</string>
<key>NSAppleEventsUsageDescription</key>
<string>An application launched via WezTerm would like to access AppleScript.</string>
<key>NSCalendarsUsageDescription</key>
<string>An application launched via WezTerm would like to access calendar data.</string>
<key>NSCameraUsageDescription</key>
<string>An application launched via WezTerm would like to access the camera.</string>
<key>NSContactsUsageDescription</key>
<string>An application launched via WezTerm wants to access your contacts.</string>
<key>NSLocationAlwaysUsageDescription</key>
<string>An application launched via WezTerm would like to access your location information, even in the background.</string>
<key>NSLocationUsageDescription</key>
<string>An application launched via WezTerm would like to access your location information.</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>An application launched via WezTerm would like to access your location information while active.</string>
<key>NSMicrophoneUsageDescription</key>
<string>An application launched via WezTerm would like to access your microphone.</string>
<key>NSRemindersUsageDescription</key>
<string>An application launched via WezTerm would like to access your reminders.</string>
</dict>
</plist>