Skip to content

Instantly share code, notes, and snippets.

@mauimauer
Created May 22, 2013 05:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mauimauer/5625362 to your computer and use it in GitHub Desktop.
Save mauimauer/5625362 to your computer and use it in GitHub Desktop.
Turns your Chromebook Pixel into a futuristic 80s-style car. Ctrl+C to quit...could be considerably improved. Do it!
#!/bin/bash
ectool lightbar seq stop
ectool lightbar 4 00 00 00
while :
do
ectool lightbar 0 ff 00 00
sleep 0.08
ectool lightbar 1 ff 00 00
sleep 0.08
ectool lightbar 0 00 00 00
ectool lightbar 2 ff 00 00
sleep 0.08
ectool lightbar 1 00 00 00
ectool lightbar 3 ff 00 00
sleep 0.08
ectool lightbar 2 00 00 00
sleep 0.08
ectool lightbar 3 00 00 00
sleep 0.08
ectool lightbar 2 ff 00 00
ectool lightbar 1 ff 00 00
sleep 0.08
ectool lightbar 2 00 00 00
sleep 0.08
ectool lightbar 1 00 00 00
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment