22 lines
575 B
Bash
Executable File
22 lines
575 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Siina's bootleg boop.icu uploader
|
|
#
|
|
# Requires:
|
|
# - wl-clipboard: for clipboard manipulation
|
|
# - curl: for uploading
|
|
remote="https://boop.icu"
|
|
sound="$HOME/Projects/local-bin/sounds/success.ogg"
|
|
|
|
# Make sure necessary applications are installed
|
|
if [[ ! -n "$(which wl-copy)" ]]; then echo "Please install wl-clipboard"; exit; fi
|
|
if [[ ! -n "$(which curl)" ]]; then echo "Please install curl"; exit; fi
|
|
|
|
url=$(curl -F"file=@$1" $remote)
|
|
echo "$url" | tr -d '\n' | wl-copy
|
|
|
|
if [[ -n "$(which ffplay)" ]]; then
|
|
ffplay $sound -nodisp -autoexit -loglevel error
|
|
fi
|
|
|