mcnd2
(usa Debian)
Enviado em 29/05/2011 - 12:37h
Então,
re-instalei os pacotes que já estavão instalados: 'fortune-mod', 'fortune-huss' e 'fortune-min'.
Não adiantou. Ao abrir novamente o terminal continua na mesma.
Vou deixar aqui o conteúdo do arquivo referente a linha citada:
_________________________________________________________________
#!/bin/bash
function show_fortune {
RANGE=3
number=$RANDOM
let "number %= $RANGE"
case $number in
0)
cow="moose"
;;
1)
cow="tux"
;;
2)
cow="koala"
;;
esac
RANGE=2
number=$RANDOM
let "number %= $RANGE"
case $number in
0)
command="/usr/games/cowsay"
;;
1)
command="/usr/games/cowthink"
;;
esac
/usr/games/fortune | $command -f $cow
}
if [ -x "/usr/bin/gconftool-2" ]; then
showfortunes=`gconftool-2 --get /desktop/linuxmint/terminal/show_fortunes 2>/dev/null`
if [ $showfortunes == "true" ]; then
show_fortune
fi
else
show_fortune
fi
________________________________________________________________
A linha 35 é essa:
if [ $showfortunes == "true" ]; then
E se eu mudar o 'true' po 'false', será que vai?
Fico no aguardo por alguma solução.
Obrigado Anna pela atenção.