Skip to content

Instantly share code, notes, and snippets.

@juice500ml
Created February 16, 2016 08:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juice500ml/ea49ef432b5ae75b208e to your computer and use it in GitHub Desktop.
Save juice500ml/ea49ef432b5ae75b208e to your computer and use it in GitHub Desktop.
input: turn off/on seconds of monitor brightness.
id=$(xrandr | sed -n 2p | awk '{print $1}')
read -p "Enter turned on seconds : " on
read -p "Enter turned off seconds : " off
while [ 1 ]
do
xrandr --output $id --brightness 1
sleep $on
xrandr --output $id --brightness 0
sleep $off
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment