Created
January 28, 2013 16:55
-
-
Save sviataslau/4657157 to your computer and use it in GitHub Desktop.
An extension for amazing Alfred.app to quickly download files using Axel (http://axel.alioth.debian.org)
This file contains hidden or 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
<?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>action</key> | |
<false/> | |
<key>category</key> | |
<string>SCRIPTS</string> | |
<key>command</key> | |
<string>#Desc: Downloads given link with axel | |
#Use: ax <query> | |
#Ex: ax google.com/doodle.png | |
axel -n 10 {query}</string> | |
<key>escapequery</key> | |
<true/> | |
<key>escapequerybackquotes</key> | |
<true/> | |
<key>escapequerybrackets</key> | |
<true/> | |
<key>escapequeryquotes</key> | |
<true/> | |
<key>escapequerysemicolons</key> | |
<true/> | |
<key>growloutput</key> | |
<true/> | |
<key>growloutputsticky</key> | |
<false/> | |
<key>keyword</key> | |
<string>ax</string> | |
<key>logging</key> | |
<false/> | |
<key>silent</key> | |
<false/> | |
<key>subtitle</key> | |
<string>Download given link in Axel</string> | |
<key>title</key> | |
<string>Axel download</string> | |
</dict> | |
</plist> |
This file contains hidden or 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
<?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>creator</key> | |
<string>Sviataslau Seviaryn</string> | |
<key>website</key> | |
<string>http://sviataslau.com</string> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment