Eu escrevi um script simples para ajustar o brilho do meu iMac 27 "rodando o Ubuntu 11.10 oneiric. O script está usando o gsd-backlight-helper que também está disponível no Ubuntu 12.10, então eu suponho que isso também funcione em 12.10. eu sei)
Minha solução é adicionar dois ícones de brilho no painel do gnome. Um para o aumento de brilho e outro para o brilho baixo. (veja a imagem)
Copie o script imac-brightness.sh no seu diretório / home / USER /
#!/bin/bash
# get the brightness as it is now
BRIGHTNESS=$(pkexec /usr/lib/gnome-settings-daemon/gsd-backlight-helper --get-brightness)
# Get the maximum possible brightness to set
MAXBRIGHTNESS=$(pkexec /usr/lib/gnome-settings-daemon/gsd-backlight-helper --get-max-brightness )
# If the user want to set the brightness higher than now the
# script is calles with the argument --up
# ./imac_brightness.sh --up
if [ == "--up" ];
then
# Check if we got more brightness steps left to raise the brightness
if [ $BRIGHTNESS -lt $MAXBRIGHTNESS ] ;
then
pkexec /usr/lib/gnome-settings-daemon/gsd-backlight-helper --set-brightness $(($BRIGHTNESS + 1 ));
fi
fi
# If the user want to set the brightness lower than now the
# script is calles with the argument --down
# ./imac_brightness.sh --down
if [ == "--down" ]
then
# Check if the brightness is't as low as 1.
# We won't go lower than 1
if [ $BRIGHTNESS -gt 1 ] ;
then
pkexec /usr/lib/gnome-settings-daemon/gsd-backlight-helper --set-brightness $(($BRIGHTNESS - 1 ));
fi
fi
Torne o script executável
chmod 755 ./imac-brightness.sh
Copie os ícones de brilho em seu diretório pessoal (ou onde quiser, desde que saiba onde você os coloca)
Agora adicione os ícones ao painel do gnome (ponteiro do mouse no painel do gnome e pressione a tecla Alt à esquerda + botão direito do mouse)
Para brilho
- adicionar ao painel
- Iniciador de aplicativos personalizado
- Nome: Brilho Abaixo
- Comando: /home/USER/imac_brightness.sh --down
- Selecione o ícone Brightness Down
Para brilho
- adicionar ao painel
- Iniciador de aplicativos personalizado
- Nome: brilho acima
- Comando: /home/USER/imac_brightness.sh --up
- Selecione o ícone do Brightness Up
Observe o duplo "-" (sinal de menos) em --up e --down
Agora você tem dois ícones no seu painel do gnome. Basta clicar no botão para cima ou para baixo para ajustar o brilho.