configure: probe for size optimizing flags (disabled for now)
[vis.git] / vis-paste
bloba934e63bd90dca5d3c48f4be133eacfc33a30849
1 #!/bin/sh
3 if [ ! -z "$DISPLAY" ]; then
4 exec xsel -ob
5 elif type pbpaste >/dev/null 2>&1; then
6 exec pbpaste
7 else
8 echo "System clipboard not supported" 1>&2
9 exit 1