Adjust display brightness in Mac OS X
Talk0this wiki
Redirected from Adjust Brightness Automatically on Focus
Recently created tip
We have not yet decided whether to keep this tip as its own page or merge it somewhere else. If you have a suggestion on the tip content, please edit this page or add your comments below (do not use the discussion page).
This tip adjusts the brightness of the display when Vim gains or loses focus on Mac OS X systems. This is not related to the brightness of the colorscheme.
Procedure
Edit
I like my display on full brightness with a dark colorscheme when coding. When switching from full screen Vim to a browser window or a terminal, the display settings make the screen far too bright. To avoid that, the following procedure sets the screen brightness to full when Vim gains focus, then sets the screen to half brightness when Vim loses focus.
Download the command line brightness tool from here.
Then add the following commands to your vimrc.
:au FocusGained * :!brightness 1 :au FocusLost * :!brightness 0.5
Comments
Edit
Tip could be improved if the tool were improved to report the current brightness setting so it can be restored. Also you probably only want this to happen if in fullscreen mode, so could possibly be improved there (if there is a way for Vim to detect it is full screened).