2024-01-28 16:37:10 -06:00

8 lines
157 B
Bash

#!/bin/sh
if [ "$(cat /sys/devices/platform/thinkpad_acpi/leds/tpacpi::thinklight/brightness)" = "0" ]; then
echo "#1"
else
echo "#2 Thinklight"
fi