Reduzir automaticamente o brilho da bateria no Ubuntu 15.10?

2

Como posso reduzir automaticamente o brilho quando eu desconectar o AC no Ubuntu 15.10?

Eu tentei modificar as configurações do editor de dconf como sugerido aqui, link , mas não há mais essas configurações no Ubuntu 15.10 .

Eu tentei instalar o Cuttlefish, mas ele não está disponível para o Ubuntu 15.10.

Alguma idéia?

    
por user3556519 27.02.2016 / 03:56

1 resposta

1

Introdução

O script abaixo usa o script shell dbus e on_ac_power (que vem por padrão com o Ubuntu) para pesquisar a presença de um adaptador ac e define o brilho de acordo com os valores definidos no arquivo $HOME/.auto-backlightrc .

Instalação

Instalação usando git através do terminal:

  1. Executar sudo apt-get install git para instalar git
  2. Executar mkdir $HOME/bin . Ignore esta etapa se $HOME/bin já existir
  3. cd $HOME/bin
  4. Executar git clone https://github.com/SergKolo/sergrep.git
  5. O script estará em $HOME/bin/sergrep/auto-backlight.sh . Certifique-se de que o script seja executável com chmod +x $HOME/bin/sergrep/auto-backlight.sh
  6. Adicione o script como um aplicativo de inicialização. Procure o menu Startup Applications na pesquisa do Unity Dash ou Gnome. Como alternativa, execute o comando gnome-session-properties no terminal para ativar o menu. Adicione o caminho completo ao script como aplicativo de inicialização para que ele seja iniciado toda vez que você efetuar login na GUI.

Como alternativa, você pode copiar e salvar a fonte do script por si mesmo, chmod +x file , e passar pela etapa 6 descrita acima.

Para fazer o script iniciar automaticamente toda vez que você se conectar ao Gnome ou ao Unity, use o utilitário Startup Applications .

OBSERVAÇÃO : se você quiser que o script sempre defina o brilho AC e descomente a instrução else nas linhas 60 e 61, especificamente esta parte

 # The two lines bellow are optional for 
 # setting brightness if on AC. remove # 
 # if you want to use these two

 # else 
       # change_brightness $INCREASE

Origem do script

#!/usr/bin/env bash
#
###########################################################
# Author: Serg Kolo , contact: [email protected] 
# Date: February 26 2016 
# Purpose: Brightness control that polls for
#          ac adapter presence. Uses
# Dependencies: on_ac_power script, dbus, Unity/Gnome 
# Written for: https://askubuntu.com/q/739617/295286
# Tested on: Ubuntu 14.04 LTS
###########################################################
# Copyright: Serg Kolo , 2016
#    
#     Permission to use, copy, modify, and distribute this software is hereby granted
#     without fee, provided that  the copyright notice above and this permission statement
#     appear in all copies.
#
#     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
#     IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
#     FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
#     THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
#     LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
#     FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
#     DEALINGS IN THE SOFTWARE.

# uncomment the line bellow for debugging
#set -x

ARGV0="$0"
ARGC=$#


main()
{

  # defaults
  local DISPLAY=:0
  local DECREASE=30
  local INCREASE=75
  local RCFILE="$HOME/.auto-backlightrc"
  #---

  # Check the settings
  if [ -f $RCFILE ]
  then 
       source $RCFILE 
  else
       create_rcfile $DECREASE $INCREASE
  fi
  #---

  # now actually test if we're using ac adapter
  if ! on_ac_power 
  then 
        change_brightness $DECREASE
  # The two lines bellow are optional for 
  # setting brightness if on AC. remove # 
  # if you want to use these two

  # else 
       # change_brightness $INCREASE
  fi

}

change_brightness()
{
  dbus-send --session --print-reply\
    --dest=org.gnome.SettingsDaemon.Power\
    /org/gnome/SettingsDaemon/Power \
    org.gnome.SettingsDaemon.Power.Screen.SetPercentage uint32:"$1"
}

create_rcfile()
{
  echo "DECREASE="$1 >  "$RCFILE"
  echo "INCREASE="$2 >> "$RCFILE"
}


while true
do
   main
   sleep 0.25
done
    
por Sergiy Kolodyazhnyy 27.02.2016 / 05:20