All pastes #2107912 Raw Edit

Miscellany

public text v1 · immutable
#2107912 ·published 2012-01-30 22:46 UTC
rendered paste body
" Switch themese based on the ambient light sensor in a macbook pro
" requires lmutracker just google for it :)

autocmd BufEnter * :call SyncThemeToAmbientLight()
function SyncThemeToAmbientLight()
    let ambientLight = system("/Users/pomke/lmutracker | awk ' {print $1} '")
    if ambientLight > 1000
        colorscheme whitedust
    else
        colorscheme asu1dark
    endif
endfunction