Hi,

Bu Bacoo <[EMAIL PROTECTED]> words
        on 03.11.2005 - 18:23 (+0100 Zulu-Time):

>    What kind of terminal do you use? ETerm and even any other do not
>    support e17-transparency, as modules do, right? I like transparent
>    terminal - it is the only app, where it makes some sense for me.
true. I use eterm as well but it sucks that it has no UTF-8 Support. 
I tried once urxvt, but i didn't manage it to configure it in the
right way. So if somebody has a good tutorial - please post it. 

>    Btw, do you have some terminal (instead of gnome-terminal) which would
>    support a 'hyperlink highlighting/clicking' ? (when I have opened silc
>    window and there is some link in it, I can click it.
I have my own solution for this, highlight the url you want to open
and press SHIFT + Right Mousebutton. Advantage, works everywhere ;)

script: 
#!/bin/bash
# Script: ropenUrl - remote open urls
# Autor:        J. Erik Heinz <[EMAIL PROTECTED]>
# Created:      12.10.2005 - 22:09 GMT +0200

sUrl=$(xclip -o)
# set missing http://
if test $(echo $sUrl | grep -v ^http); then
        sUrl=http://$sUrl
fi

# I use 2 monitors, thats why i have to call eterm on the screen where
# the firefox is located
Eterm -d :0.1 -g 1x1+0+0 -e firefox -remote "openURL($sUrl,new-tab)" && exit &

keybindings.cfg:
/** open url in firefox */
  __NEXT_ACTION
    __EVENT __MOUSE_PRESS
    __BUTTON 3
    __MODIFIER_KEY __SHIFT
    __ACTION __A_EXEC "/home/jerik/bin/ropenUrl"


Cheers Erik
-- 
J. Erik Heinz
Keyboard-samuraing in process


-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
_______________________________________________
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users

Reply via email to