The Open Web: KDE frees the web from the browser
Posted Oct 15, 2009 17:54 UTC (Thu) by
nye (guest, #51576)
In reply to:
The Open Web: KDE frees the web from the browser by boudewijn
Parent article:
The Open Web: KDE frees the web from the browser
This kind of flaming does nobody any favours, least of all the reputation of the KDE project.
FWIW, the features the OP would like would be extremely difficult (I think impossible) to implement without modifications to screen, except possibly using some deeply ugly hacks, however I do have the following in my bashrc, which the OP *might* find of some use:
function ssh-reagent () {
for agent in /tmp/ssh-*/agent.*; do
export SSH_AUTH_SOCK=$agent
if ssh-add -l 2>&1 > /dev/null; then
echo Found working SSH Agent:
ssh-add -l
return
fi
done
. ~/.ssh-agent
if ssh-add -l 2>&1 > /dev/null; then
echo Found working SSH Agent:
ssh-add -l
return
fi
echo Cannot find ssh agent - maybe you should reconnect and forward it?
}
(
Log in to post comments)