dmenu-scripts/dmenu-share
2022-10-23 21:55:28 +02:00

13 lines
315 B
Bash
Executable File

#!/bin/sh
source $HOME/.config/dmenu/config
file=$(find $HOME -type f | $DMENU -l 15)
[ -z "$file" ] && exit
if [ "$XDG_SESSION_TYPE" = "wayland" ]; then
curl -F "file=@$file" 0x0.st | wl-copy -n
else
curl -F "file=@$file" 0x0.st | xclip -selection clipboard
fi
notify-send "Dmenu Share" "Ready to share"