On Thu, May 8, 2014 at 4:48 PM, Nils R <[email protected]> wrote:
> Benjamin Baier schrieb am 08.05.2014 16:07:
>
>> Try xclip. It saves a paste if you have your URL already in the clipboard.
>>
>> URL="$(xclip -o)"
>> if [ "x$URL" = "x" ]; then
>> echo "You must enter a url."
>> exit 1
>> fi
>> ...
>>
>
> Great, that is exactly what i need! Works instantly, and reduces the amount
> of interaction needed to <copy url with mouse, click key-combo>.
>
> Thanks!
>
> Also tried gxmessage, but that still needs 3 seconds to start.
Btw, I suspect you do not have dbus properly set up.
Do you have:
if [ -x /usr/local/bin/dbus-launch -a -z "${DBUS_SESSION_BUS_ADDRESS}" ]; then
eval $(/usr/local/bin/dbus-launch --sh-syntax --exit-with-session)
fi
Into your ~/.xinitrc ?
ciao,
David