Slashdot Mirror


User: ronlusk

ronlusk's activity in the archive.

Stories
0
Comments
2
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2

  1. Re:Pasting urls on Dealing with the Unix Copy and Paste Paradigm? · · Score: 1

    Thanks for the hint...I actually had the location hard-coded where $FIREFOX appears, so that initial assignment was a throwaway for posting only. But I'll be happy to take your advice, since you give it.

  2. Re:Pasting urls on Dealing with the Unix Copy and Paste Paradigm? · · Score: 4, Informative
    I've created a script for working with KDE's klipper clipboard tool.
    # point at the browser
    $FIREFOX=/opt/mozilla/firefox/firefox
    ($FIREFOX -remote "ping()" && \
    $FIREFOX -remote "openUrl($1,new-tab)") || \
    $FIREFOX $1 &
    I'm not sure I have everything the best it can be. But when I select a URL somewhere, klipper pops up a menu offering to open it in Konqueror, Mozilla, or Firefox (among other things). I have configured klipper so pressing "F" is a shortcut for opening in Firefox, where it opens it in a new tab.