bbgo_origin/desktop/build-osx-info-plist.sh

22 lines
590 B
Bash
Raw Normal View History

2021-02-14 17:55:59 +00:00
#!/bin/bash
cat << EOF
<?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>
2021-02-17 09:28:54 +00:00
<key>CFBundleExecutable</key>
<string>bbgo-desktop</string>
<key>CFBundleIconFile</key>
<string>icon.icns</string>
<key>CFBundleIdentifier</key>
<string>com.bbgo.lorca</string>
<key>LSFileQuarantineEnabled</key>
<true/>
<key>NSUserNotificationAlertStyle</key>
<string>banner</string>
<key>NSHighResolutionCapable</key>
<true/>
2021-02-14 17:55:59 +00:00
</dict>
</plist>
EOF