diff --git a/scripts/mled-discomode b/scripts/mled-discomode new file mode 100755 index 0000000..9050339 --- /dev/null +++ b/scripts/mled-discomode @@ -0,0 +1,16 @@ +#!/bin/bash + +REFRESHRATE=1 +LEDCONTROLLER="/usr/bin/ledcontroller" + +while (true); do + + for discoColor in blue red green aqua purple yellow white; do + + $LEDCONTROLLER $discoColor + + sleep "$REFRESHRATE" + + done + +done