You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dotfiles/home/apps/scripts/toggle-keyboard-backlights

24 lines
503 B
Bash

#!/usr/bin/env bash
OFF=0
ON=2
KEYBOARD_PATH=/sys/devices/platform/dell-laptop/leds/dell::kbd_backlight/brightness
PREVIOUS_SETTING=$(< $KEYBOARD_PATH)
if [[ $PREVIOUS_SETTING -eq $OFF ]]
then
echo $ON > $KEYBOARD_PATH
if [[ $? -ne 0 ]]; then
echo "ERROR: Could Not Update Settings"
exit 1
fi
echo "Keyboard Backlighting: ON"
else
echo $OFF > $KEYBOARD_PATH
if [[ $? -ne 0 ]]; then
echo "ERROR: Could Not Update Settings"
exit 1
fi
echo "Keyboard Backlighting: OFF"
fi