mirror of https://github.com/sgoudham/dotfiles.git
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.
16 lines
323 B
Bash
16 lines
323 B
Bash
#!/bin/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
|
|
echo "Keyboard Backlighting: ON"
|
|
else
|
|
echo $OFF > $KEYBOARD_PATH
|
|
echo "Keyboard Backlighting: OFF"
|
|
fi
|