Skip to content

Instantly share code, notes, and snippets.

@sunknudsen
Created May 23, 2024 13:02
Show Gist options
  • Save sunknudsen/dc44b29f3d8cdb2bd8666ca33afd5bf1 to your computer and use it in GitHub Desktop.
Save sunknudsen/dc44b29f3d8cdb2bd8666ca33afd5bf1 to your computer and use it in GitHub Desktop.
Your eyeballs will thank you for this
# Set brightness of external display
# Reference material for https://youtu.be/_Vy7m-LhGEc episode
b() {
if [ -z "$1" ] || [ "$1" = "--help" ]; then
printf "%s\n" "Usage: b integer"
return 0
fi
m1ddc set luminance $1 > /dev/null
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment