Disable Automatic Keyboard Backlight on MATE

Write tutorials for Linux Mint here
More tutorials on https://github.com/orgs/linuxmint/discu ... /tutorials and (archive) on https://community.linuxmint.com/tutorial
Forum rules
Don't add support questions to tutorials; start your own topic in the appropriate sub-forum instead. Before you post read forum rules
Post Reply
Ruskin
Level 1
Level 1
Posts: 1
Joined: Mon Apr 03, 2023 9:49 am

Disable Automatic Keyboard Backlight on MATE

Post by Ruskin »

By default the keyboard backlight turns on automatically on startup and various other times. If you want to disable it entirely you can open "/usr/share/dbus-1/system.d/org.freedesktop.UPower.conf" with root privileges by running

Code: Select all

sudo open /usr/share/dbus-1/system.d/org.freedesktop.UPower.conf
from the command line and replace

Code: Select all

<allow send_destination="org.freedesktop.UPower"
           send_interface="org.freedesktop.UPower.KbdBacklight"/>
with

Code: Select all

<deny send_destination="org.freedesktop.UPower"
           send_interface="org.freedesktop.UPower.KbdBacklight"/>
However, if you still want the backlight to be usable (and just not turn on automatically), instead you can run

Code: Select all

gsettings set org.mate.power-manager kbd-brightness-on-ac 0
gsettings set org.mate.power-manager kbd-backlight-battery-reduce false
from the command line (suggested by Jasmin Hassan in this thread), or edit the same settings with a user interface by installing and running dconf-editor:

Code: Select all

sudo apt-get install dconf-editor
dconf-editor
and navigating to org/mate/power-manager.

Linux Mint 21.2 Victoria and MATE 1.26.0
User avatar
Esbeeb
Level 1
Level 1
Posts: 34
Joined: Sun Oct 07, 2018 2:58 am

Re: Disable Automatic Keyboard Backlight on MATE

Post by Esbeeb »

I needed this; much appreciated.
--
- Linux Mint Mate, Asus Zenbook UX330U
Post Reply

Return to “Tutorials”