dotfiles/.config/polybar/scripts/info-thinklight.sh
2024-01-29 08:31:23 -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