dotfiles/.local/bin/upload_file

6 lines
158 B
Plaintext
Raw Normal View History

2021-02-20 17:14:05 +00:00
#!/bin/bash
2021-03-13 13:01:31 +00:00
file=$(find '$HOME/dox' -type f | dmenu -i -l 25)
curl -F "file=@$file" 0x0.st | xclip -selection c
notify-send "Your file link is in clipboard"