From 7a32a98ced7817c4c4f178cb80c2c39d4957ea59 Mon Sep 17 00:00:00 2001 From: Marc Cornellà Date: Fri, 2 Sep 2016 21:01:31 +0200 Subject: droplr: convert ruby file into zsh --- plugins/droplr/droplr.plugin.zsh | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'plugins/droplr/droplr.plugin.zsh') diff --git a/plugins/droplr/droplr.plugin.zsh b/plugins/droplr/droplr.plugin.zsh index 2a2ec227c..296a8b98b 100644 --- a/plugins/droplr/droplr.plugin.zsh +++ b/plugins/droplr/droplr.plugin.zsh @@ -1 +1,15 @@ -alias droplr=$ZSH/plugins/droplr/droplr.rb +# Only compatible with MacOS +[[ "$OSTYPE" == darwin* ]] || return + +droplr() { + if [[ $# -eq 0 ]]; then + echo You need to specify a parameter. >&2 + return 1 + fi + + if [[ "$1" =~ ^http[|s]:// ]]; then + osascript -e "tell app 'Droplr' to shorten '$1'" + else + open -ga /Applications/Droplr.app "$1" + fi +} -- cgit v1.2.3-70-g09d2