diff options
Diffstat (limited to '.oh-my-zsh/plugins/droplr/droplr.plugin.zsh')
-rw-r--r-- | .oh-my-zsh/plugins/droplr/droplr.plugin.zsh | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/.oh-my-zsh/plugins/droplr/droplr.plugin.zsh b/.oh-my-zsh/plugins/droplr/droplr.plugin.zsh deleted file mode 100644 index af0a212..0000000 --- a/.oh-my-zsh/plugins/droplr/droplr.plugin.zsh +++ /dev/null @@ -1,15 +0,0 @@ -# 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" =~ ^https?:// ]]; then - osascript -e 'tell app "Droplr" to shorten "'"$1"'"' - else - open -ga /Applications/Droplr.app "$1" - fi -} |