-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First shot at a Alfred workflow for Apple Maps.
- Loading branch information
Marko Schulz
committed
Nov 18, 2013
0 parents
commit 9c95e1b
Showing
4 changed files
with
91 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Open Apple Maps in Alfred 2 | ||
This workflow opens Apple Maps and searches for the specified keyword. | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
<?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>bundleid</key> | ||
<string>de.datenreisender.maps</string> | ||
<key>connections</key> | ||
<dict> | ||
<key>2C99F6F1-EF16-4CF1-9762-5D05A1FFAA4D</key> | ||
<array> | ||
<dict> | ||
<key>destinationuid</key> | ||
<string>16039760-F173-4AB8-9C73-DA7401D5DE23</string> | ||
<key>modifiers</key> | ||
<integer>0</integer> | ||
<key>modifiersubtext</key> | ||
<string></string> | ||
</dict> | ||
</array> | ||
</dict> | ||
<key>createdby</key> | ||
<string>Marko Schulz</string> | ||
<key>description</key> | ||
<string>Search in Apple Maps</string> | ||
<key>disabled</key> | ||
<false/> | ||
<key>name</key> | ||
<string>Apple Maps</string> | ||
<key>objects</key> | ||
<array> | ||
<dict> | ||
<key>config</key> | ||
<dict> | ||
<key>argumenttype</key> | ||
<integer>1</integer> | ||
<key>keyword</key> | ||
<string>map</string> | ||
<key>text</key> | ||
<string>Search in Apple Maps</string> | ||
<key>withspace</key> | ||
<true/> | ||
</dict> | ||
<key>type</key> | ||
<string>alfred.workflow.input.keyword</string> | ||
<key>uid</key> | ||
<string>2C99F6F1-EF16-4CF1-9762-5D05A1FFAA4D</string> | ||
<key>version</key> | ||
<integer>0</integer> | ||
</dict> | ||
<dict> | ||
<key>config</key> | ||
<dict> | ||
<key>escaping</key> | ||
<integer>4</integer> | ||
<key>script</key> | ||
<string>open -a Maps "http://maps.apple.com/?q={query}"</string> | ||
<key>type</key> | ||
<integer>0</integer> | ||
</dict> | ||
<key>type</key> | ||
<string>alfred.workflow.action.script</string> | ||
<key>uid</key> | ||
<string>16039760-F173-4AB8-9C73-DA7401D5DE23</string> | ||
<key>version</key> | ||
<integer>0</integer> | ||
</dict> | ||
</array> | ||
<key>readme</key> | ||
<string>The maps icon was taken from http://commons.wikimedia.org/wiki/File:Map-icon.svg?uselang=de | ||
This work is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license: http://creativecommons.org/licenses/by-sa/3.0/deed.en</string> | ||
<key>uidata</key> | ||
<dict> | ||
<key>16039760-F173-4AB8-9C73-DA7401D5DE23</key> | ||
<dict> | ||
<key>ypos</key> | ||
<real>60</real> | ||
</dict> | ||
<key>2C99F6F1-EF16-4CF1-9762-5D05A1FFAA4D</key> | ||
<dict> | ||
<key>ypos</key> | ||
<real>60</real> | ||
</dict> | ||
</dict> | ||
<key>webaddress</key> | ||
<string></string> | ||
</dict> | ||
</plist> |