Tutorials/Keyboard/uk: Difference between revisions

From KDE UserBase Wiki
(Created page with "Дії у відповідь на натискання клавіш — це всі дії, які система виконує у відповідь на натискання ...")
(Created page with "== Базова інформація ==")
Line 3: Line 3:
Дії у відповідь на натискання клавіш — це всі дії, які система виконує у відповідь на натискання клавіші. Більшість з них вже налаштовано. Тут ми обговоримо створення власних налаштувань. Можливими корисними діями є «збільшити гучність» та «зменшити гучність», а також «вимкнути звук», доступ до яких можна буде отримувати за допомогою відповідних клавіш мультимедійних клавіатур.
Дії у відповідь на натискання клавіш — це всі дії, які система виконує у відповідь на натискання клавіші. Більшість з них вже налаштовано. Тут ми обговоримо створення власних налаштувань. Можливими корисними діями є «збільшити гучність» та «зменшити гучність», а також «вимкнути звук», доступ до яких можна буде отримувати за допомогою відповідних клавіш мультимедійних клавіатур.


== Background ==
== Базова інформація ==


When a key is pressed, this is sent as an electronic signal over the USB or PS/2 port to the computer. There it is received by the Linux kernel and forwarded to the X Windowing system. The X Windowing system receives the ''scancodes'' of the keys being pressed and maps them to key events, for example XF86audiomute. To change this mapping you have the xmodmap command. To see the scancodes that a keypress causes, you have the xev command. In short, when you press the "Audio Mute" button on your keyboard, the kernel receives the signal from the keyboard and sends a keycode, e.g. 121, to the X Windowing System. Using its xmodmap, the Windowing System emit the signal XF86AudioMute that can be received and handled e.g. by KDE.
When a key is pressed, this is sent as an electronic signal over the USB or PS/2 port to the computer. There it is received by the Linux kernel and forwarded to the X Windowing system. The X Windowing system receives the ''scancodes'' of the keys being pressed and maps them to key events, for example XF86audiomute. To change this mapping you have the xmodmap command. To see the scancodes that a keypress causes, you have the xev command. In short, when you press the "Audio Mute" button on your keyboard, the kernel receives the signal from the keyboard and sends a keycode, e.g. 121, to the X Windowing System. Using its xmodmap, the Windowing System emit the signal XF86AudioMute that can be received and handled e.g. by KDE.

Revision as of 09:50, 20 April 2011

Other languages:

Дії у відповідь на натискання клавіш — це всі дії, які система виконує у відповідь на натискання клавіші. Більшість з них вже налаштовано. Тут ми обговоримо створення власних налаштувань. Можливими корисними діями є «збільшити гучність» та «зменшити гучність», а також «вимкнути звук», доступ до яких можна буде отримувати за допомогою відповідних клавіш мультимедійних клавіатур.

Базова інформація

When a key is pressed, this is sent as an electronic signal over the USB or PS/2 port to the computer. There it is received by the Linux kernel and forwarded to the X Windowing system. The X Windowing system receives the scancodes of the keys being pressed and maps them to key events, for example XF86audiomute. To change this mapping you have the xmodmap command. To see the scancodes that a keypress causes, you have the xev command. In short, when you press the "Audio Mute" button on your keyboard, the kernel receives the signal from the keyboard and sends a keycode, e.g. 121, to the X Windowing System. Using its xmodmap, the Windowing System emit the signal XF86AudioMute that can be received and handled e.g. by KDE.

Example: The Audio Mute button

If your keyboard's Audio Mute button does not work, you should first find out if it really triggers the correct X Windowing System event. To do this, open a console and enter the command

xev

Move your mouse into the Window that opens. Keep your console in your view and press a key. You will see an output like the following on your console:

 KeyRelease event, serial 35, synthetic NO, window 0x4000001,
     root 0x15a, subw 0x4000002, time 63106815, (43,37), root:(1279,877),
     state 0x10, keycode 121 (keysym 0x1008ff12, XF86AudioMute), same_screen YES,
     XLookupString gives 0 bytes: 
     XFilterEvent returns: False

This means your key triggers the event XF86AudioMute. Fine, then open systemsettings.

Choose Keyboard & Mouse -> Global Keyboard Shortcuts -> KDE Component KMix -> Mute -> Custom. Then click the button and press on the key that you want to use to mute your audio.