summaryrefslogtreecommitdiff
path: root/plugins/droplr/droplr.plugin.zsh
blob: 296a8b98b00328294571b012df369e581206316e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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
}