aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/data/uzbl/scripts/yank.sh
blob: 6785d643d2f59068a65df3b9840f2242f757c85c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
# use this script to pipe any variable to xclip, so you have it in your clipboard
# in your uzbl config, make the first argument the number of the (later) argument you want to use (see README for list of args)
# make the 2nd argument one of : primary, secondary, clipboard.
# examples:
# bind    yurl      = spawn ./examples/scripts/yank.sh 6 primary
# bind    ytitle    = spawn ./examples/scripts/yank.sh 7 clipboard

clip=xclip

which $clip &>/dev/null || exit 1
[ "$9" = primary -o "$9" = secondary -o "$9" = clipboard ] || exit 2

echo -n "$8" | $clip -selection $9