10 lines
154 B
Bash
10 lines
154 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
remote="https://boop.icu"
|
||
|
sound="${HOME}/.local/share/sounds/success.ogg"
|
||
|
|
||
|
url=$(curl -F"file=@$1" $remote)
|
||
|
echo "$url" | xsel -ib
|
||
|
|
||
|
mpv $sound
|