All pastes #1898748 Raw Edit

simple surf sripts

public text v1 · immutable
#1898748 ·published 2010-07-12 03:18 UTC
rendered paste body
#!/bin/bash

if [ -z "$1" ]
then
  echo "Noooo!"
  exit 1
fi

CLIP=$(xprop -id $1 _SURF_URI) 

# this takes off the _SURF_URI parameter only (first 20 chars)
CLIP=${CLIP:20}

# this removes any " (quotes) in the string
CLIP=${CLIP//\"/}

# pipes whats in CLIP into xclip
echo $CLIP | xclip