salut,
si le ctrl + L dans lucid vous fatigue, il suffit de créer une nautilus action avec ce script :
#!/bin/bash
SHOW=$(gconftool-2 --get /apps/nautilus/preferences/always_use_location_entry)
if [ $SHOW = "true" ] ; then
gconftool-2 --set /apps/nautilus/preferences/always_use_location_entry --type=bool false
else
gconftool-2 --set /apps/nautilus/preferences/always_use_location_entry --type=bool true
fi
suite à une info trouvée ici:
http://ubuntuforums.org/showpost.php?p=9227768&postcount=13
ça marche très bien. j'en ai fait un billet complet pour ceux et celles qui ne voient pas comment faire:
http://www.adrienhaxaire.org/billets/chemin/
en espérant que ça vous soit aussi utile qu'à moi !