2020-11-11 02:49:54 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
remote="https://boop.icu"
|
2020-12-20 20:30:34 +02:00
|
|
|
sound="$HOME/Projects/local-bin/sounds/success.ogg"
|
2020-11-11 02:49:54 +02:00
|
|
|
|
|
|
|
url=$(curl -F"file=@$1" $remote)
|
2020-12-20 20:30:34 +02:00
|
|
|
echo "$url" | tr -d '\n' | xsel -ib > /dev/null 2>&1 || echo "please install xsel"
|
2020-11-11 02:49:54 +02:00
|
|
|
|
|
|
|
mpv $sound
|