added copy to clipboard script

This commit is contained in:
Niklas 2020-07-14 23:18:01 +02:00
parent 3509cb94dd
commit 647415fad1

View File

@ -0,0 +1,12 @@
#!/usr/bin/env sh
set -e
if test -t 0; then
>&2 echo "Provide a file"
exit 1
fi
xclip -i -selection "clipboard" < /dev/stdin
notify-send -u low "${1:-Copied}"