Change Mac Brightness from Command Line
Earlier this week I posted about how you can modify your Mac's volume from command line. Little command line scripts make me smile because I spend so much of my day in command line, and automation can be the key to productivity. I next thought about modifying brightness from command line and I found out that changing Mac brightness is super easy!s
The first step to changing Mac brightness is installing the brightness
utility with Homebrew:
brew install brightness
With brightness
installed, you can change the brightness of a Mac from command line:
brightness 0.3
This utility could be used somewhat like ding; you could execute a long-running script and then modify brightness to signify the task has completed:
brightness 0.1 && ./do-long-task && brightness 1
The brightness of a screen is a simple setting but you can make it work for you via automation with brightness
!
![Write Simple, Elegant and Maintainable Media Queries with Sass]()
I spent a few months experimenting with different approaches for writing simple, elegant and maintainable media queries with Sass. Each solution had something that I really liked, but I couldn't find one that covered everything I needed to do, so I ventured into creating my...
![JavaScript Promise API]()
While synchronous code is easier to follow and debug, async is generally better for performance and flexibility. Why "hold up the show" when you can trigger numerous requests at once and then handle them when each is ready? Promises are becoming a big part of the JavaScript world...
![HTML5 Datalist]()
One of the most used JavaScript widgets over the past decade has been the text box autocomplete widget. Every JavaScript framework has their own autocomplete widget and many of them have become quite advanced. Much like the placeholder attribute's introduction to markup, a frequently used...
![Editable Content Using MooTools 1.2, PHP, and MySQL]()
Everybody and their aerobics instructor wants to be able to edit their own website these days. And why wouldn't they? I mean, they have a $500 budget, no HTML/CSS experience, and extraordinary expectations. Enough ranting though. Having a website that allows for...