> The Darkener's Console

A skeleton, probably the remains of a luckless adventurer, lies here.

Posts Tagged ‘brightness’

Adjust Official Raspberry Pi 7″ Touchscreen LCD Brightness With Zenity —

Here’s a quick-n-dirty script for adjusting the Official Raspberry Pi 7″ Touchscreen LCD Brightness With Zenity (Tested on Raspbian): #!/bin/bash # # Sets the Raspberry Pi touchscreen brightness. # Set variables zenity=”/usr/bin/zenity” # Get desired brightness level b=$(“$zenity” \ –scale \ –value=120 \ –min-value=10 \ –max-value=254 \ –step=2 \ –title “Set LCD Brightness” \ –text […]