dotfiles/scripts/shrfile

16 lines
330 B
Plaintext
Raw Normal View History

2023-12-25 11:21:57 +01:00
#!/bin/bash
if [ -z "$1" ]
then
file=$(find . -maxdepth 1 -type f | cut -c 3- | rofi -i -dmenu -p "Select file to share")
else
file=$1
fi
if [ -z "$file" ]; then
exit
fi
curl -F "file=@$file" https://0x0.st | xclip -selection c
notify-send "Link to $file is copied to clipboard!"
echo "$(xclip -o -sel clipboard)"