blob: d7eda819d53d1795a4f24c50586533b2a97b1d15 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
if [[ "$1" == *.png ]]; then
xclip -selection clipboard -target image/png -i $1
elif [[ "$1" == *.jpg ]] || [[ "$1" == *.jpeg ]]; then
xclip -selection clipboard -target image/jpeg -i $1
else
bat "$1" | xclip -sel clip
fi
|