Skip to content

Commit 52c1e5b

Browse files
committed
Migrate scripts from iCloud to Git.
0 parents  commit 52c1e5b

File tree

15 files changed

+149
-0
lines changed

15 files changed

+149
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.DS_Store
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
tell application "Mail"
2+
set _sel to get selection
3+
set _links to {}
4+
repeat with _msg in _sel
5+
set _messageURL to "message://%3c" & _msg's message id & "%3e"
6+
set end of _links to _messageURL
7+
end repeat
8+
set AppleScript's text item delimiters to return
9+
set the clipboard to (_links as string)
10+
end tell

Notes/Copy Note URL.scpt

1.31 KB
Binary file not shown.
1.39 KB
Binary file not shown.
Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleAllowMixedLocalizations</key>
6+
<true/>
7+
<key>CFBundleDevelopmentRegion</key>
8+
<string>English</string>
9+
<key>CFBundleExecutable</key>
10+
<string>applet</string>
11+
<key>CFBundleIconFile</key>
12+
<string>applet</string>
13+
<key>CFBundleIdentifier</key>
14+
<string>com.temochka.AppleScript.AppleNotesUrl</string>
15+
<key>CFBundleInfoDictionaryVersion</key>
16+
<string>6.0</string>
17+
<key>CFBundleName</key>
18+
<string>Open Note URL</string>
19+
<key>CFBundlePackageType</key>
20+
<string>APPL</string>
21+
<key>CFBundleShortVersionString</key>
22+
<string>1.0</string>
23+
<key>CFBundleSignature</key>
24+
<string>aplt</string>
25+
<key>CFBundleURLTypes</key>
26+
<array>
27+
<dict>
28+
<key>CFBundleURLName</key>
29+
<string>Apple Notes</string>
30+
<key>CFBundleURLSchemes</key>
31+
<array>
32+
<string>shortcuts</string>
33+
</array>
34+
</dict>
35+
</array>
36+
<key>LSMinimumSystemVersionByArchitecture</key>
37+
<dict>
38+
<key>x86_64</key>
39+
<string>10.6</string>
40+
</dict>
41+
<key>LSRequiresCarbon</key>
42+
<true/>
43+
<key>NSAppleEventsUsageDescription</key>
44+
<string>This script needs to control other applications to run.</string>
45+
<key>NSAppleMusicUsageDescription</key>
46+
<string>This script needs access to your music to run.</string>
47+
<key>NSCalendarsUsageDescription</key>
48+
<string>This script needs access to your calendars to run.</string>
49+
<key>NSCameraUsageDescription</key>
50+
<string>This script needs access to your camera to run.</string>
51+
<key>NSContactsUsageDescription</key>
52+
<string>This script needs access to your contacts to run.</string>
53+
<key>NSHomeKitUsageDescription</key>
54+
<string>This script needs access to your HomeKit Home to run.</string>
55+
<key>NSMicrophoneUsageDescription</key>
56+
<string>This script needs access to your microphone to run.</string>
57+
<key>NSPhotoLibraryUsageDescription</key>
58+
<string>This script needs access to your photos to run.</string>
59+
<key>NSRemindersUsageDescription</key>
60+
<string>This script needs access to your reminders to run.</string>
61+
<key>NSSiriUsageDescription</key>
62+
<string>This script needs access to Siri to run.</string>
63+
<key>NSSystemAdministrationUsageDescription</key>
64+
<string>This script needs access to administer this system to run.</string>
65+
<key>WindowState</key>
66+
<dict>
67+
<key>bundleDividerCollapsed</key>
68+
<true/>
69+
<key>bundlePositionOfDivider</key>
70+
<real>0.0</real>
71+
<key>dividerCollapsed</key>
72+
<false/>
73+
<key>eventLogLevel</key>
74+
<integer>2</integer>
75+
<key>name</key>
76+
<string>ScriptWindowState</string>
77+
<key>positionOfDivider</key>
78+
<real>256</real>
79+
<key>savedFrame</key>
80+
<string>332 -13 700 672 0 0 1920 1057 </string>
81+
<key>selectedTab</key>
82+
<string>result</string>
83+
</dict>
84+
</dict>
85+
</plist>
24.4 KB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
APPLaplt
622 Bytes
Binary file not shown.
844 Bytes
Binary file not shown.
70.2 KB
Binary file not shown.

0 commit comments

Comments
 (0)