8 lines
173 B
Bash
Executable file
8 lines
173 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [[ $(brightnessctl -d dell::kbd_backlight get) -eq 1 ]]
|
|
then
|
|
brightnessctl -d dell::kbd_backlight set 0
|
|
else
|
|
brightnessctl -d dell::kbd_backlight set 1
|
|
fi
|