Skip to content

Instantly share code, notes, and snippets.

@sviataslau
Created January 28, 2013 16:55
Show Gist options
  • Save sviataslau/4657157 to your computer and use it in GitHub Desktop.
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)
<?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 &lt;query&gt;
#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>
<?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