6 lines
176 B
Bash
Executable file
6 lines
176 B
Bash
Executable file
#!/bin/sh
|
|
|
|
file=$(find $HOME -type f | dmenu -l 15)
|
|
[ -z "$file" ] && exit
|
|
curl -F "file=@$file" 0x0.st | xclip -selection clipboard
|
|
notify-send "Dmenu Share" "Ready to share"
|