aboutsummaryrefslogtreecommitdiff
path: root/vis-paste
blob: 232da2ecda9280538b744ac2298091dcbfcf18b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

if [ ! -z "$DISPLAY" ]; then
	exec xsel -o
elif type pbpaste >/dev/null 2>&1; then
	exec pbpaste
else
	echo "System clipboard not supported" 1>&2
	exit 1
fi