Created
November 9, 2020 20:43
-
-
Save esc/af6079843bedc78c0708557ffcbfbb88 to your computer and use it in GitHub Desktop.
Think Pad Disko
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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