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

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