*** La traduction en français se trouve après les 3 astérisques (*) Hi Terrence,
> I've got my oralux set up to run screen instead of PDMenu when it > starts up, and I'd like to have it create 3 windows for me automatically > when it starts, but still allow me to create more if I want to. I tried > specifying the windows and programs in .screenrc, but it makes endless > copies of those 3 windows. How can I get it to *just* create those 3 > initial windows, but still allow me to create my own? > I do not reproduce such an issue on 0.7 alpha (hd installed). Here, there are nevertheless 3 stages for getting screen under Speakup: * The .screenrc under /home/knoppix is as example: screen -t bash 0 screen -t text 1 emacs screen -t mail 2 mutt * screen is not correctly installed on 0.7 alpha. It is necessary to change the permissions of /var/run/screen and create a screen directory for the user. As root: cd /var/run chmod 777 screen mkdir screen/S-knoppix chown knoppix.knoppix screen/S-knoppix chmod 700 screen/S-knoppix * The oralux.sh file is changed for calling screen instead of oralux-pdmenu.sh. So around line 105, the code under /usr/share/oralux/main/oralux.sh becomes: elif [ $DESKTOP == "Speakup" ] then # oralux-pdmenu.sh screen Best regards, Gilles *** Bonjour, Screen permet de gérer plusieurs consoles virtuelles en local ou à distance. Dans ce qui suit et en réponse à Terrence, screen est automatiquement lancé si l'environnement Speakup est choisi. Screen créera trois "fenêtres": la première pour le shell, la seconde pour emacs et la troisième pour mutt. Avec 0.7 alpha, les trois étapes suivantes sont nécessaires : * Le fichier .screenrc est créé sous /home/knoppix, par exemple : screen -t bash 0 screen -t text 1 emacs screen -t mail 2 mutt * screen n'étant pas bien installé sous 0.7 alpha, il faudra changer les permissions de /var/run/screen et créer un répertoire screen pour l'utilisateur. En tant que root: cd /var/run chmod 777 screen mkdir screen/S-knoppix chown knoppix.knoppix screen/S-knoppix chmod 700 screen/S-knoppix * Le fichier oralux.sh file est modifié pour appeler screen au lieu de oralux-pdmenu.sh. A la ligne 105, le code sous /usr/share/oralux/main/oralux.sh devient: elif [ $DESKTOP == "Speakup" ] then # oralux-pdmenu.sh screen A+ Gilles -- Oralux http://oralux.org _______________________________________________ Oralux mailing list [email protected] http://lists.freearchive.org/mailman/listinfo/oralux
