Update brightness level depending on the power source on 16.04 LTS
I recently migrated to 64 Bit 16.04 LTS from 32 Bit 14.04 LTS on my Toshiba L645 laptop. In 14.04 LTS system, I had a script that automatically updated the brightness level depending on the power source. Unfortunately I didn't save that script before overwriting the system. Currently, I am using the following 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: http://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
However, this script only works when power is switched from AC to Battery and does not restore the brightness level once the AC is back on. Also, once on Battery, this script consistently tries to set the brightness at the predefined level and even if I try to change that manually it resets that. I would like to be able to change the brightness level manually if I desire even in battery mode.
Intro
The script below allows remembering brightness levels depending on the power source used by a laptop. It defaults to 50% on battery, 90% on AC.
Overview of options and usage
source_monitor.sh [-a INT] [-b INT] [-v] [-h]
-a set initial brightness on AC adapter
-b set initial brightness on batter
-v enable verbose output
-h prints this help text
Installation
Installation using git
through terminal:
- Run
sudo apt-get install git
to installgit
- Run
mkdir $HOME/bin
. Skip this step if$HOME/bin
exists already cd $HOME/bin
- Run
git clone https://github.com/SergKolo/sergrep.git
- The script will be in
$HOME/bin/sergrep/source_monitor.sh
. Make sure the script is executable withchmod +x $HOME/bin/sergrep/source_monitor.sh
- Add the script as a startup application. Look for Startup Applications menu in Unity Dash or Gnome search. Alternatively, run
gnome-session-properties
command in terminal to launch the menu. Add the full path to script as startup application so that it launches every time you log into GUI.
Alternatively, you can copy and save script source by oneself, chmod +x file
, and go through the step #6 described above.
To make the script automatically start every time you log in to Gnome or Unity, use Startup Applications utility.
Script source
#!/usr/bin/env bash
#
###########################################################
# Author: Serg Kolo , contact: [email protected]
# Date: June 18th 2016
# Purpose: Script that remembers and sets brightness
# depending on power sources
#
# Written for: https://askubuntu.com/q/788383/295286
# Tested on: Ubuntu 16.04 LTS , Ubuntu Kylin 16.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.
ARGV0="$0"
ARGC=$#
wait_ac_connect()
{
while ! on_ac_power ; do : ; sleep 0.25 ; done
$VERBOSE && echo "<<< adapter plugged in"
}
wait_ac_disconnect()
{
while on_ac_power ; do : ; sleep 1.25 ; done
$VERBOSE && echo "<<< adapter unplugged"
}
change_brightness()
{
qdbus org.gnome.SettingsDaemon \
/org/gnome/SettingsDaemon/Power \
org.gnome.SettingsDaemon.Power.Screen.SetPercentage "$1"
}
get_brightness()
{
qdbus org.gnome.SettingsDaemon \
/org/gnome/SettingsDaemon/Power \
org.gnome.SettingsDaemon.Power.Screen.GetPercentage
}
print_usage()
{
cat <<EOF
source_monitor.sh [-a INT] [-b INT] [-v] [-h]
-a set initial brightness on AC adapter
-b set initial brightness on batter
-v enable verbose output
-h prints this help text
Copyright Serg Kolo , 2016
EOF
}
parse_args()
{
# boiler-pate code for reusing, options may change
local OPTIND opt # OPTIND must be there,
# opt can be renamed to anything
# no leading : means errors reported(which is what i want)
# : after letter means options takes args, no : - no args
while getopts "a:b:vh" opt
do
case ${opt} in
a) AC_PERCENTAGE="${OPTARG}"
;;
b) BAT_PERCENTAGE="${OPTARG}"
;;
v) VERBOSE=true
;;
h) print_usage && exit 0
;;
\?)
echo "Invalid option: -$OPTARG" >&2
;;
esac
done
shift $((OPTIND-1))
}
main()
{
# default values, if -a,-b, or -v options given
# they will be changed
local BAT_PERCENTAGE=50
local AC_PERCENTAGE=90
local VERBOSE=false # for debugging
parse_args "$@"
while true
do
if on_ac_power ; then
wait_ac_disconnect
AC_PERCENTAGE=$(($(get_brightness)+1)) # too long to explain why +1
# just try it for yourself
sleep 0.25
change_brightness "$BAT_PERCENTAGE" > /dev/null
else
wait_ac_connect
BAT_PERCENTAGE=$(($(get_brightness)+1))
sleep 0.25
change_brightness "$AC_PERCENTAGE" > /dev/null
fi
sleep 0.25
done
}
main "$@"
Serg's script seemed to work at first. However after some time, the percentage was being evaluated incorrectly especially after coming back from hibernation. It may have been some issues with qdbus
but the brightness level won't just change. So, I decided to hardcode the brightness level using the value from max_brightness
file. Here's my /usr/local/bin/auto-backlight.sh
:
#!/usr/bin/env bash
read MAX_BRIGHTNESS < /sys/class/backlight/intel_backlight/max_brightness
declare -i -r BATT_PERCENTAGE=45
declare -i -r AC_PERCENTAGE=90
declare -i -r ON_BATT=$(($MAX_BRIGHTNESS*$BATT_PERCENTAGE/100))
declare -i -r ON_AC=$(($MAX_BRIGHTNESS*$AC_PERCENTAGE/100))
wait_ac_connect() { while ! on_ac_power ; do : ; sleep 0.25 ; done echo "Adapter plugged in. Brightness level at $ON_AC" }
wait_ac_disconnect() { while on_ac_power ; do : ; sleep 1.25 ; done echo "Running on battery. Brightness level at $ON_BATT" }
main() {
while true
do
if on_ac_power ; then
wait_ac_disconnect
echo $ON_BATT > /sys/class/backlight/intel_backlight/brightness
else
wait_ac_connect
echo $ON_AC > /sys/class/backlight/intel_backlight/brightness
fi
sleep 0.25
done
}
main "$@"
Unlike Serg's script, this one requires a root privilege to write into brightness
file. So I created a systemd service
at /etc/systemd/system/auto-backlight.service
:
[Unit]
Description=Change backlight on power source
ConditionFileIsExecutable=/usr/local/bin/auto-backlight.sh
[Service]
Type=simple
ExecStart=/usr/local/bin/auto-backlight.sh
[Install]
WantedBy=multi-user.target
Finally make the service load at boot with root privileges :
sudo systemctl enable auto-backlight.service
Another way could be to create rules for udev and call a simple script to change the brighness value:
First, create a file named auto-backlight.sh
in your home directory (or any other of your preference) with your favorite editor, like gedit, and copy and paste the next code:
#!/bin/sh
# Adjust brightness of backlights based on power source
case $1 in
# On battery
true)
# Dim screen backlight
expr `cat /sys/class/backlight/intel_backlight/max_brightness` / 10 > \
/sys/class/backlight/intel_backlight/brightness
;;
# On AC
false)
# Dim screen backlight
cat /sys/class/backlight/intel_backlight/max_brightness > \
/sys/class/backlight/intel_backlight/brightness
;;
esac
return 0
Please note that that /sys/class/backlight/intel_backlight/
could be something different in your system, like /sys/class/backlight/acpi_video0/
. Also note that possibly you need to change the value of / 10
depending of the value of max_brightness
, it could be 100, 50, 5, etc. as it is a division factor.
Give execution permissions to the new created script:
chmod 771 auto-backlight.sh
Then create a file named 99auto-backlight.rules
with your favorite editor and put it in the /etc/udev/rules.d/
folder: sudo gedit /etc/udev/rules.d/99auto-backlight.rules
(or link it with using the "ln" command), containing the following two lines:
SUBSYSTEM=="power_supply", ATTR{online}=="0", RUN+="/path/to/your/script/auto-backlight.sh true"
SUBSYSTEM=="power_supply", ATTR{online}=="1", RUN+="/path/to/your/script/auto-backlight.sh false"
Replace /path/to/your/script/
with the actual path were the auto-backlight.sh script is located.
Credit to Alex Layton for his idea here: https://unix.stackexchange.com/a/110469 and to Pilot6 for his idea here: https://askubuntu.com/a/613816