aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/data/uzbl/scripts/clipboard.sh
blob: d493774e31114d190fa9f34fbcc7cabc6b431c55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

# with this script you can store the current url in the clipboard, or go to the url which is stored in the clipboard.

clip=xclip

fifo="$5"
action="$1"
url="$7"

selection=`$clip -o`

case $action in
  "yank" ) echo -n "$url" | $clip;;
  "goto" ) echo "uri $selection" > "$fifo";;
  * ) echo "clipboard.sh: invalid action";;
esac