Skip to content

Instantly share code, notes, and snippets.

@esc
Created November 9, 2020 20:43
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 esc/af6079843bedc78c0708557ffcbfbb88 to your computer and use it in GitHub Desktop.
Save esc/af6079843bedc78c0708557ffcbfbb88 to your computer and use it in GitHub Desktop.
Think Pad Disko
#!/bin/sh
val=1
while true
do
[ $val -eq 0 ] && val=1 || val=0
sudo sh -c "echo $val > \
/sys/devices/platform/thinkpad_acpi/leds/tpacpi::thinklight/brightness"
sleep 0.1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment