Skip to content

Instantly share code, notes, and snippets.

@franzbischoff
Created July 26, 2022 11:52
Show Gist options
  • Save franzbischoff/5dae7df4b055747c39de31f46ba9a03f to your computer and use it in GitHub Desktop.
Save franzbischoff/5dae7df4b055747c39de31f46ba9a03f to your computer and use it in GitHub Desktop.
Cubietruck tricks
#!/bin/bash
# Description:
# This turns off all the annoying leds that makes your cubietruck looks like a christmas tree
# original from https://karellen.blogspot.com/2015/07/turning-off-leds-on-cubietruck.html
find /sys/devices/platform/leds-sunxi/ -name "brightness" | sed s'/:/\\:/g' | while read l; do echo 0 > "$l"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment