13 lines
172 B
Bash
13 lines
172 B
Bash
|
#!/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}"
|
||
|
|