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
!
With Firefox OS, asm.js, and the push for browser performance improvements, canvas and WebGL technologies are opening a world of possibilities. I featured 9 Mind-Blowing Canvas Demos and then took it up a level with 9 Mind-Blowing WebGL Demos, but I want to outdo...
CSS animations aren't just for basic fades or sliding elements anymore -- CSS animations are capable of much more. I've showed you how you can create an exploding logo (applied with JavaScript, but all animation is CSS), an animated Photo Stack, a sweet...
It goes without saying but MooTools' inheritance pattern allows for creation of small, simple classes that possess immense power. One example of that power is a class that inherits from Request, Request.JSON, and Request.JSONP: Request.Stocks. Created by Enrique Erne, this great MooTools class acts as...
A goal of my latest blog redesign was to practice what I preached a bit more; add a bit more subtle flair. One of the ways I accomplished that was by using CSS3 animations to change the display of my profile icons (RSS, GitHub, etc.) I...