Линукс включение подсветки клавиатуры

How to light up back-lit keyboard?

I recently got a backlit keyboard, and I LOVE to write late at night. But I cannot for the life of me figure out how to light it up. It lights up when first plugged in, but nothing happens after that. It is an ‘XtremeIT’ keyboard. There is a video of someone on Ubuntu who managed to activate it.

What model is the keyboard? I have the old G15 and mine lights up fine. Usually the keyboard itself has a button to enable/dim/brighten the light.

Does the keyboard have problem only with Ubuntu machine and works fine with other platform? Sorry if am sounding foolish.

11 Answers 11

Did you try the script the YouTube poster suggested in his own comments?

Basically use xset to toggle the state of the led backlight.

#!/bin/bash if [ -f /tmp/keyboard_light ]; then xset -led 3 && rm /tmp/keyboard_light else xset led 3 && touch /tmp/keyboard_light fi 

It does work! but it turns on the mouse keys, anyway to enable it without losing the numberpad function and having to manually disable it everytime?

My makeshift fix is this command: gsettings set org.gnome.desktop.a11y.keyboard mousekeys-enable true

to turn on backlight, and type:

Just try to type in terminal : Turn on :

it works for Cool Master Keyboard

On my Thinkpad T470S with Ubuntu 20.04 — Keyboard back-light is enabled out of the box. Pressing [Fn-Space] will toggle between keyboard back-light settings on this laptop. Maybe the manual for your keyboard will provide insight into the key combination that might work for its back-light?

echo 0 | sudo tee /sys/devices/platform/thinkpad_acpi/leds/tpacpi::kbd_backlight/brightness echo 3 | sudo tee /sys/devices/platform/thinkpad_acpi/leds/tpacpi::kbd_backlight/brightness This is the way I switch it on/off askubuntu.com/questions/644410/…

for those who land here because they also want the keyboard to light up BEFORE the login screen:

Finally Found an answer, at least for Ubuntu 14.04

as for how to get the keyboard to light up before the login screen:

/usr/share/lightdm/lightdm.conf.d/50-unity-greeter.conf sudo gedit /usr/share/lightdm/lightdm.conf.d/50-unity-greeter.conf 
greeter-setup-script= xset led 3 

Is there a way to set the brightness level of the keyboard? As opposed to simply turning it on at the lowest setting?

For my Mi laptop keyboard, above solutions did not work.

I just had to use that F10 key with the appropriate symbol.

The symbol looks like a bold «dash», with little thin dashes going in every direction and representing light.

Found the answer after a long night up with lots of half baked solutions.

# backup your symbols file sudo cp /usr/share/X11/xkb/symbols/us

You may have to do the same in your other layouts if you switch between languages

Читайте также:  Linux команда запустить процесс

Also, there is a cache where xkb layouts live. You should clear it before restarting your X server to check the new keyboard symbol file(s).

For a long time, I did this with

xmodmap -e ‘add mod3 = Scroll_Lock’

This caused a problem when I started using i3wm. When the backlight was on, the metakey was non-functional. I could turn it on and off with scroll lock and use meta when it was off, but i3 needs that too much and it is too hard to see my keyboard without the light, so this was not an ideal way to do it. The above solution, xset led on is a much better solution. By leaving the keymap alone, I can use meta anytime I need it and always see the keyboard.

I just bought an EagleTec mechanical keyboard with blue backlight, and like J. Chomel, found that I just needed to use a key combination to turn the backlight on or off, enable/disable «breathing» mode, or adjust the brightness. In my case, I’m using it on LinuxMint 17, but it should work on other distributions also.

Here are the backlight functions that the keyboard supports:

«FN» + «SCRLK» = Backlight On/Off «FN» + «HOME» = «Breathing» On/Off «FN» + «-» = Lower Brightness «FN» + » FN» + «F2» = Lower Volume «FN» + «F3» = Increase Volume «FN» + «F9» = Open Email Application (Thunderbird, in my case)

If your using an Hp Omen if you press Fn and the lighting key you can toggle keyboard backlight on and off using ubuntu studio

For the people with LK Gaming keyboards, use fn + F12 .

Источник

Keyboard backlight

There are various methods to control the keyboard backlight brightness level.

Any vendor

There are a variety ways to manage the brightness level and different helpers tools to accomplish this, such as brightnessctl or light .

The sys pseudo-file system exposes an interface to the keyboard backlight. The current brightness level can be get by reading /sys/class/leds/tpacpi::kbd_backlight/brightness . For example to get the maximum brightness level:

$ cat /sys/class/leds/tpacpi::kbd_backlight/max_brightness

To set the brightness to 1:

# echo 1 > /sys/class/leds/tpacpi::kbd_backlight/brightness

When using brightnessctl you can get a list of available brightness controls with brightnessctl —list , then to show the kbd backlight information:

$ brightnessctl --device='tpacpi::kbd_backlight' info

This will show the absolute and relative current value and the maximum absolute value. To set a different value:

$ brightnessctl --device='tpacpi::kbd_backlight' set 1

xset

Some keyboard manufactores are not recognized by brightnessctl or light , but you can use xorg-xset to control its lights if you are running Xorg.

Читайте также:  Using linux at work

The first parameter led turns on the led, and -led turns it off, the NUMBER parameters accepts integers for 1 to 32 (each number corresponds to a led in you system, keyboards seem to generally be number 3), or ‘on’ and ‘off’ (on will turn ALL lights on, and off will turn ALL lights off).

D-Bus

You can control your computer keyboard backlight via the D-Bus interface. The benefits of using it are that no modification to device files is required and it is vendor agnostic.

The following is an example implementation in Python 3. Install upower and dbus-python packages then place the following script in /usr/local/bin/ and make it executable. You can then map your keyboard shortcuts to run /usr/local/bin/kb-light.py + x and /usr/local/bin/kb-light.py — x to increase and decrease your keyboard backlight level by x amounts.

Tip: You should try with an x = 1 to determine the limits of the keyboard backlight levels

#!/usr/bin/env python3 import dbus import sys def kb_light_set(delta): bus = dbus.SystemBus() kbd_backlight_proxy = bus.get_object('org.freedesktop.UPower', '/org/freedesktop/UPower/KbdBacklight') kbd_backlight = dbus.Interface(kbd_backlight_proxy, 'org.freedesktop.UPower.KbdBacklight') current = kbd_backlight.GetBrightness() maximum = kbd_backlight.GetMaxBrightness() new = max(0, min(current + delta, maximum)) if 0 

Alternatively the following bash one-liner will set the backlight to the value specified in the argument:

On GNOME

The following can be run from a terminal or mapped to keybindings

$ gdbus call --session --dest org.gnome.SettingsDaemon.Power --object-path /org/gnome/SettingsDaemon/Power --method org.gnome.SettingsDaemon.Power.Keyboard.StepUp $ gdbus call --session --dest org.gnome.SettingsDaemon.Power --object-path /org/gnome/SettingsDaemon/Power --method org.gnome.SettingsDaemon.Power.Keyboard.StepDown

On MATE

This article or section needs language, wiki syntax or style improvements. See Help:Style for reference.

In case you use MATE environment you might get tired with repeated lighting keyboard backlight while logging in, unlocking screen or waking up dimmed display. Following setup prevent from automatic lighting up during any action. The only triggers remain plugging in the adapter and fresh boot. After that you can control keyboard backlight only via hotkeys (eg. ThinkPad Fn + spacebar).

To prevent automatic lighting up just edit file /usr/share/dbus-1/system.d/org.freedesktop.UPower.conf as follows (two occurrences of "deny"):

/usr/share/dbus-1/system.d/org.freedesktop.UPower.conf

Источник

Как зажечь подсветку клавиатуры?

Я недавно получил клавиатуру с подсветкой, и я люблю писать поздно ночью.

Но я не могу на всю жизнь понять, как его зажечь. Он загорается при первом подключении, но после этого ничего не происходит.

Это клавиатура XtremeIT. На Ubuntu есть видео с кем-то, кому удалось его активировать.

7 ответов

Вы пробовали сценарий, предложенный постером на YouTube в его собственных комментариях? В основном использовать xset переключать состояние светодиодной подсветки.

#!/bin/bash if [ -f /tmp/keyboard_light ]; then xset -led 3 && rm /tmp/keyboard_light else xset led 3 && touch /tmp/keyboard_light fi 

(Я бы прокомментировал ваш первоначальный вопрос, но мне пока не хватает представителя.)

Откройте терминал и введите:

включить подсветку и набрать:

На моем Thinkpad T470S с Ubuntu 20.04 - подсветка клавиатуры включена из коробки. Нажатие [Fn-Space] переключит настройки подсветки клавиатуры на этом ноутбуке. Может быть, руководство к вашей клавиатуре даст представление о комбинации клавиш, которая может работать для ее подсветки?

Просто попробуйте набрать в терминале: Включите:

это работает для Cool Master Keyboard

Для тех, кто приземляется здесь, потому что они также хотят, чтобы клавиатура загорелась ДО экрана входа в систему:

Наконец-то нашел ответ, хотя бы для Ubuntu 14.04

Что касается того, как заставить клавиатуру загореться перед экраном входа в систему:

/usr/share/lightdm/lightdm.conf.d/50-unity-greeter.conf sudo gedit /usr/share/lightdm/lightdm.conf.d/50-unity-greeter.conf 
greeter-setup-script= xset led 3 

Для моей клавиатуры ноутбука Mi, вышеупомянутые решения не работали.

Мне просто нужно было использовать эту клавишу F10 с соответствующим символом.

Символ выглядит как смелый "штрих", с небольшими тонкими штрихами, идущими в каждом направлении и представляющими свет.

После долгой ночи нашёл ответ с множеством полузапеченных решений.

# backup your symbols file sudo cp /usr/share/X11/xkb/symbols/us

Возможно, вам придется сделать то же самое в других макетах, если вы переключаетесь между языками

Также есть кеш, где живут макеты xkb. Вы должны очистить его перед перезапуском X-сервера, чтобы проверить новые файлы символов клавиатуры.

Я только что купил механическую клавиатуру EagleTec с синей подсветкой и, как и Дж. Чомель, обнаружил, что мне просто нужно использовать комбинацию клавиш для включения или выключения подсветки, включения / выключения режима "дыхания" или регулировки яркости. В моем случае я использую его в LinuxMint 17, но он должен работать и в других дистрибутивах.

Вот функции подсветки, которые поддерживает клавиатура:

"FN" + "SCRLK" = Вкл. / Выкл. Подсветки "FN" + "HOME" = "Дыхание" Вкл. / Выкл. "FN" + "-" = Уменьшение яркости "FN" + " FN" + "F2" = уменьшение громкости "FN" + "F3" = увеличение громкости "FN" + "F9" = открытие почтового приложения (Thunderbird, в моем случае)

Долгое время я делал это с

xmodmap -e 'add mod3 = Scroll_Lock'

Это вызвало проблему, когда я начал использовать i3wm. Когда подсветка была включена, метаключ не работал. Я мог бы включать и выключать его с помощью блокировки прокрутки и использовать мета, когда он был выключен, но i3 нуждается в этом слишком сильно, и слишком трудно видеть мою клавиатуру без подсветки, так что это не был идеальный способ сделать это. Вышеуказанное решение, xset led on это гораздо лучшее решение. Оставив карту клавиатуры в покое, я могу использовать мета в любое время, когда мне это нужно, и всегда видеть клавиатуру.

Если вы используете Hp Omen, если вы нажмете Fn и клавишу освещения, вы можете включать и выключать подсветку клавиатуры с помощью ubuntu studio.

Для людей с клавиатурой LK Gaming используйте fn + F12 .

Источник

Оцените статью
Adblock
detector