dmenu-scripts/dmenu-share

7 lines
176 B
Plaintext
Raw Normal View History

2022-07-17 11:03:00 +02:00
#!/bin/sh
file=$(find $HOME -type f | dmenu -l 15)
2022-07-22 18:25:25 +02:00
[ -z "$file" ] && exit
2022-07-17 11:03:00 +02:00
curl -F "file=@$file" 0x0.st | xclip -selection clipboard
notify-send "Dmenu Share" "Ready to share"