Commit 86488738 authored by Marc Cornellà's avatar Marc Cornellà
Browse files

Add Droplr README

parent 1af4e9c5
# droplr
Use [Droplr](https://droplr.com/) from the comand line to upload files and shorten
links. It needs to have [Droplr.app](https://droplr.com/apps) installed and logged
in. MacOS only.
To use it, add `droplr` to the `$plugins` variable in your zshrc file:
```zsh
plugins=(... droplr)
```
Author: [Fabio Fernandes](https://github.com/fabiofl)
## Examples
- Upload a file: `droplr ./path/to/file/`
- Shorten a link: `droplr http://example.com`
#!/bin/zsh
alias droplr=$ZSH/plugins/droplr/droplr.rb
\ No newline at end of file
alias droplr=$ZSH/plugins/droplr/droplr.rb
#!/usr/bin/env ruby
#
# droplr
# Fabio Fernandes | http://fabiofl.me
#
# Use Droplr from the comand line to upload files and shorten links.
#
# Examples:
#
# droplr ./path/to/file/
# droplr http://example.com
#
# This needs Droplr.app to be installed and loged in.
# Also, Mac only.
if ARGV[0].nil?
puts "You need to specify a parameter."
......@@ -22,4 +9,4 @@ if ARGV[0][%r{^http[|s]://}i]
`osascript -e 'tell app "Droplr" to shorten "#{ARGV[0]}"'`
else
`open -ga /Applications/Droplr.app "#{ARGV[0]}"`
end
\ No newline at end of file
end
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment