ubuntuusers.de

Nummernblock außer Funktion

Status: Gelöst | Ubuntu-Version: Ubuntu 20.04 (Focal Fossa)
Antworten |

lorbeerbund

Anmeldungsdatum:
15. November 2005

Beiträge: 1123

Guten Abend,

als Eingabegeräte nutze ich das drahtlose Tastatur-Maus-Set GK03 von iClever.
https://www.iclever.com/products/GK03-Ergonomic-Wireless-Keyboard-and-Mouse-Combo-White
Ein Manual der Geräte findet sich hier.

Das Set soll eigentlich ootb laufen und tut dies - im Wesentlichen - auch. Ausnahmen sind einige Fn-Funktionen, etwa Helligkeitseinstellungen oder der Aufruf einer Suchfunktion. Auch die im Manual beschriebene Vorgehensweise zum "Keyboard re-pairing" funktioniert nicht - die Key-Kombi “Esc+Q” bei Step 2 bleibt ohne Effekt. Dies sind jedoch Kleinigkeiten, auf die ich verzichten kann.

Was mich hingegen ernsthaft stört ist die Funktionslosigkeit des Nummernblocks. Dabei lässt sich NumLK durchaus ein- und ausschalten, jedoch ohne Effekt auf die Einsatzbereitschaft des betreffenden Teils der Tastatur. Abweichend von der Abbildung im Manual finden sich im oberen Bereich des Nummernblocks die in der deutschen Ausführung dort üblichen Tasten Pos1, Ende, Bild↑, Bild↓. Diese Tasten funktionieren anstandslos. Der darunterliegende Nummernblock dagegen ist und bleibt tot.

Was ließe sich unternehmen, um diese Funktionalität zu wecken?

Für eure Hilfe bin ich wie immer sehr dankbar!

Viele Grüße
lorbeerbund

ps.: Ein vergleichbares Problem wird auch hier geschildert. Die Antwort ist jedoch Windows-spezifisch. Die Funktionalität "Control your mouse with a keypad" unter 'Einstellungen → Mouse' gibt es bei Ubuntu nicht.

Letalis_Sonus Team-Icon

Anmeldungsdatum:
13. April 2008

Beiträge: 12990

Wohnort: Oldenburg/Erlangen

Überprüfe mal mit xev was da genau beim System ankommt. Wenn da gar nichts kommt, kannst du da schlichtweg nichts machen - mangels Modell-spezifischer Treiber.

lorbeerbund

(Themenstarter)

Anmeldungsdatum:
15. November 2005

Beiträge: 1123

Letalis_Sonus schrieb:

Überprüfe mal mit xev was da genau beim System ankommt. Wenn da gar nichts kommt, kannst du da schlichtweg nichts machen - mangels Modell-spezifischer Treiber.

Danke dir für deine Antwort, Letalis_Sonus!

Die Benutzung von xev ist etwas gewöhnungsbedürftig. Nach dem Start im Terminal legt es sofort los und protokolliert jede Mausbewegung. Ich habe den Mauszeiger über das Eingabefeld platziert und dann den Nummernblock einmal durchgetestet, erst ohne NumLK, dann mit. Bei jedem Event hat xev etwas ausgegeben.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
~$ xev
Outer window is 0x7200001, inner window is 0x7200002

PropertyNotify event, serial 8, synthetic NO, window 0x7200001,
    atom 0x27 (WM_NAME), time 9980188, state PropertyNewValue

PropertyNotify event, serial 9, synthetic NO, window 0x7200001,
    atom 0x22 (WM_COMMAND), time 9980188, state PropertyNewValue

PropertyNotify event, serial 10, synthetic NO, window 0x7200001,
    atom 0x28 (WM_NORMAL_HINTS), time 9980188, state PropertyNewValue

CreateNotify event, serial 11, synthetic NO, window 0x7200001,
    parent 0x7200001, window 0x7200002, (10,10), width 50, height 50
border_width 4, override NO

PropertyNotify event, serial 14, synthetic NO, window 0x7200001,
    atom 0x155 (WM_PROTOCOLS), time 9980188, state PropertyNewValue

MapNotify event, serial 15, synthetic NO, window 0x7200001,
    event 0x7200001, window 0x7200002, override NO

ConfigureNotify event, serial 28, synthetic NO, window 0x7200001,
    event 0x7200001, window 0x7200001, (0,0), width 178, height 178,
    border_width 0, above 0x740000c, override NO

PropertyNotify event, serial 28, synthetic NO, window 0x7200001,
    atom 0x1f6 (_NET_WM_ALLOWED_ACTIONS), time 9980193, state PropertyNewValue

ReparentNotify event, serial 28, synthetic NO, window 0x7200001,
    event 0x7200001, window 0x7200001, parent 0x3202293,
    (0,0), override NO

PropertyNotify event, serial 28, synthetic NO, window 0x7200001,
    atom 0x15d (_NET_WM_DESKTOP), time 9980199, state PropertyNewValue

PropertyNotify event, serial 28, synthetic NO, window 0x7200001,
    atom 0x15d (_NET_WM_DESKTOP), time 9980199, state PropertyNewValue

PropertyNotify event, serial 28, synthetic NO, window 0x7200001,
    atom 0x15a (_NET_FRAME_EXTENTS), time 9980200, state PropertyNewValue

ConfigureNotify event, serial 28, synthetic NO, window 0x7200001,
    event 0x7200001, window 0x7200001, (10,32), width 178, height 178,
    border_width 0, above 0x0, override NO

PropertyNotify event, serial 28, synthetic NO, window 0x7200001,
    atom 0x1a7 (WM_STATE), time 9980200, state PropertyNewValue

PropertyNotify event, serial 28, synthetic NO, window 0x7200001,
    atom 0x163 (_NET_WM_STATE), time 9980200, state PropertyNewValue

PropertyNotify event, serial 28, synthetic NO, window 0x7200001,
    atom 0x18a (_GTK_EDGE_CONSTRAINTS), time 9980200, state PropertyNewValue

PropertyNotify event, serial 33, synthetic NO, window 0x7200001,
    atom 0x1a8 (XKLAVIER_STATE), time 9980214, state PropertyNewValue

ConfigureNotify event, serial 35, synthetic YES, window 0x7200001,
    event 0x7200001, window 0x7200001, (859,452), width 178, height 178,
    border_width 2, above 0x0, override NO

PropertyNotify event, serial 35, synthetic NO, window 0x7200001,
    atom 0x163 (_NET_WM_STATE), time 9980220, state PropertyNewValue

PropertyNotify event, serial 35, synthetic NO, window 0x7200001,
    atom 0x18a (_GTK_EDGE_CONSTRAINTS), time 9980220, state PropertyNewValue

MapNotify event, serial 35, synthetic NO, window 0x7200001,
    event 0x7200001, window 0x7200001, override NO

VisibilityNotify event, serial 35, synthetic NO, window 0x7200001,
    state VisibilityUnobscured

Expose event, serial 35, synthetic NO, window 0x7200001,
    (0,0), width 178, height 10, count 3

Expose event, serial 35, synthetic NO, window 0x7200001,
    (0,10), width 10, height 58, count 2

Expose event, serial 35, synthetic NO, window 0x7200001,
    (68,10), width 110, height 58, count 1

Expose event, serial 35, synthetic NO, window 0x7200001,
    (0,68), width 178, height 110, count 0

FocusIn event, serial 35, synthetic NO, window 0x7200001,
    mode NotifyNormal, detail NotifyNonlinear

KeymapNotify event, serial 35, synthetic NO, window 0x0,
    keys:  68  0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   
           0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   

PropertyNotify event, serial 35, synthetic NO, window 0x7200001,
    atom 0x163 (_NET_WM_STATE), time 9980220, state PropertyNewValue

PropertyNotify event, serial 35, synthetic NO, window 0x7200001,
    atom 0x18a (_GTK_EDGE_CONSTRAINTS), time 9980220, state PropertyNewValue

PropertyNotify event, serial 35, synthetic NO, window 0x7200001,
    atom 0x163 (_NET_WM_STATE), time 9980233, state PropertyNewValue

PropertyNotify event, serial 35, synthetic NO, window 0x7200001,
    atom 0x18a (_GTK_EDGE_CONSTRAINTS), time 9980233, state PropertyNewValue

EnterNotify event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 9981374, (0,20), root:(861,474),
    mode NotifyNormal, detail NotifyAncestor, same_screen YES,
    focus YES, state 16

KeymapNotify event, serial 35, synthetic NO, window 0x0,
    keys:  99  0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   
           0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   

MotionNotify event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 9981374, (0,20), root:(861,474),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 9981378, (6,21), root:(867,475),
    state 0x10, is_hint 0, same_screen YES

LeaveNotify event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 9981386, (10,22), root:(871,476),
    mode NotifyNormal, detail NotifyInferior, same_screen YES,
    focus YES, state 16

MotionNotify event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 9981386, (10,22), root:(871,476),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 9981394, (14,23), root:(875,477),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 9981402, (17,26), root:(878,480),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 9981410, (21,27), root:(882,481),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 9981418, (25,28), root:(886,482),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 9981426, (28,29), root:(889,483),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 9981434, (29,29), root:(890,483),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 9981442, (30,29), root:(891,483),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 9985431, (29,30), root:(890,484),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 9986815, (29,31), root:(890,485),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 9988615, (30,32), root:(891,486),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 9991151, (29,32), root:(890,486),
    state 0x10, is_hint 0, same_screen YES

ButtonPress event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 9992719, (29,32), root:(890,486),
    state 0x10, button 3, same_screen YES

EnterNotify event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 9992719, (29,32), root:(890,486),
    mode NotifyGrab, detail NotifyInferior, same_screen YES,
    focus YES, state 1040

KeymapNotify event, serial 35, synthetic NO, window 0x0,
    keys:  98  0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   
           0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   

ButtonRelease event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 9992807, (29,32), root:(890,486),
    state 0x410, button 3, same_screen YES

LeaveNotify event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 9992807, (29,32), root:(890,486),
    mode NotifyUngrab, detail NotifyInferior, same_screen YES,
    focus YES, state 16

MotionNotify event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 9994535, (30,32), root:(891,486),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 9996231, (29,31), root:(890,485),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 9997743, (29,30), root:(890,484),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 9999231, (30,29), root:(891,483),
    state 0x10, is_hint 0, same_screen YES

ButtonPress event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10002079, (30,29), root:(891,483),
    state 0x10, button 3, same_screen YES

EnterNotify event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10002079, (30,29), root:(891,483),
    mode NotifyGrab, detail NotifyInferior, same_screen YES,
    focus YES, state 1040

KeymapNotify event, serial 35, synthetic NO, window 0x0,
    keys:  98  0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   
           0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   

ButtonRelease event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10003919, (30,29), root:(891,483),
    state 0x410, button 3, same_screen YES

LeaveNotify event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10003919, (30,29), root:(891,483),
    mode NotifyUngrab, detail NotifyInferior, same_screen YES,
    focus YES, state 16

ButtonPress event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10003919, (30,29), root:(891,483),
    state 0x10, button 3, same_screen YES

EnterNotify event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10003919, (30,29), root:(891,483),
    mode NotifyGrab, detail NotifyInferior, same_screen YES,
    focus YES, state 1040

KeymapNotify event, serial 35, synthetic NO, window 0x0,
    keys:  98  0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   
           0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   

ButtonRelease event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10003920, (30,29), root:(891,483),
    state 0x410, button 3, same_screen YES

LeaveNotify event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10003920, (30,29), root:(891,483),
    mode NotifyUngrab, detail NotifyInferior, same_screen YES,
    focus YES, state 16

KeyPress event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10005407, (30,29), root:(891,483),
    state 0x10, keycode 104 (keysym 0xff8d, KP_Enter), same_screen YES,
"   XLookupString gives 1 bytes: (0d) "
"   XmbLookupString gives 1 bytes: (0d) "
    XFilterEvent returns: False

KeyRelease event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10005479, (30,29), root:(891,483),
    state 0x10, keycode 104 (keysym 0xff8d, KP_Enter), same_screen YES,
"   XLookupString gives 1 bytes: (0d) "
    XFilterEvent returns: False

ButtonPress event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10006991, (30,29), root:(891,483),
    state 0x10, button 3, same_screen YES

EnterNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10006991, (30,29), root:(891,483),
    mode NotifyGrab, detail NotifyInferior, same_screen YES,
    focus YES, state 1040

KeymapNotify event, serial 38, synthetic NO, window 0x0,
    keys:  98  0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   
           0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   

ButtonRelease event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10006991, (30,29), root:(891,483),
    state 0x410, button 3, same_screen YES

LeaveNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10006991, (30,29), root:(891,483),
    mode NotifyUngrab, detail NotifyInferior, same_screen YES,
    focus YES, state 16

ButtonPress event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10006992, (30,29), root:(891,483),
    state 0x10, button 3, same_screen YES

EnterNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10006992, (30,29), root:(891,483),
    mode NotifyGrab, detail NotifyInferior, same_screen YES,
    focus YES, state 1040

KeymapNotify event, serial 38, synthetic NO, window 0x0,
    keys:  98  0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   
           0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   

ButtonRelease event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10006992, (30,29), root:(891,483),
    state 0x410, button 3, same_screen YES

LeaveNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10006992, (30,29), root:(891,483),
    mode NotifyUngrab, detail NotifyInferior, same_screen YES,
    focus YES, state 16

KeyPress event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10013551, (30,29), root:(891,483),
    state 0x10, keycode 77 (keysym 0xff7f, Num_Lock), same_screen YES,
    XLookupString gives 0 bytes: 
    XmbLookupString gives 0 bytes: 
    XFilterEvent returns: False

KeyRelease event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10013647, (30,29), root:(891,483),
    state 0x10, keycode 77 (keysym 0xff7f, Num_Lock), same_screen YES,
    XLookupString gives 0 bytes: 
    XFilterEvent returns: False

PropertyNotify event, serial 38, synthetic NO, window 0x7200001,
    atom 0x1a8 (XKLAVIER_STATE), time 10013650, state PropertyNewValue

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10016055, (29,30), root:(890,484),
    state 0x0, is_hint 0, same_screen YES

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10017687, (29,31), root:(890,485),
    state 0x0, is_hint 0, same_screen YES

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10018991, (30,32), root:(891,486),
    state 0x0, is_hint 0, same_screen YES

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10020551, (29,32), root:(890,486),
    state 0x0, is_hint 0, same_screen YES

ButtonPress event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10021815, (29,32), root:(890,486),
    state 0x0, button 1, same_screen YES

EnterNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10021815, (29,32), root:(890,486),
    mode NotifyGrab, detail NotifyInferior, same_screen YES,
    focus YES, state 256

KeymapNotify event, serial 38, synthetic NO, window 0x0,
    keys:  98  0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   
           0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   

ButtonRelease event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10021887, (29,32), root:(890,486),
    state 0x100, button 1, same_screen YES

LeaveNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10021887, (29,32), root:(890,486),
    mode NotifyUngrab, detail NotifyInferior, same_screen YES,
    focus YES, state 0

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10023063, (30,32), root:(891,486),
    state 0x0, is_hint 0, same_screen YES

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10024191, (29,31), root:(890,485),
    state 0x0, is_hint 0, same_screen YES

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10025279, (29,30), root:(890,484),
    state 0x0, is_hint 0, same_screen YES

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10026583, (30,29), root:(891,483),
    state 0x0, is_hint 0, same_screen YES

ButtonPress event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10027679, (30,29), root:(891,483),
    state 0x0, button 1, same_screen YES

EnterNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10027679, (30,29), root:(891,483),
    mode NotifyGrab, detail NotifyInferior, same_screen YES,
    focus YES, state 256

KeymapNotify event, serial 38, synthetic NO, window 0x0,
    keys:  98  0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   
           0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   

ButtonRelease event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10028799, (30,29), root:(891,483),
    state 0x100, button 1, same_screen YES

LeaveNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10028799, (30,29), root:(891,483),
    mode NotifyUngrab, detail NotifyInferior, same_screen YES,
    focus YES, state 0

KeyPress event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10029879, (30,29), root:(891,483),
    state 0x0, keycode 104 (keysym 0xff8d, KP_Enter), same_screen YES,
"   XLookupString gives 1 bytes: (0d) "
"   XmbLookupString gives 1 bytes: (0d) "
    XFilterEvent returns: False

KeyRelease event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10029950, (30,29), root:(891,483),
    state 0x0, keycode 104 (keysym 0xff8d, KP_Enter), same_screen YES,
"   XLookupString gives 1 bytes: (0d) "
    XFilterEvent returns: False

ButtonPress event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10031015, (30,29), root:(891,483),
    state 0x0, button 1, same_screen YES

EnterNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10031015, (30,29), root:(891,483),
    mode NotifyGrab, detail NotifyInferior, same_screen YES,
    focus YES, state 256

KeymapNotify event, serial 38, synthetic NO, window 0x0,
    keys:  98  0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   
           0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   

ButtonRelease event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10031015, (30,29), root:(891,483),
    state 0x100, button 1, same_screen YES

LeaveNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10031015, (30,29), root:(891,483),
    mode NotifyUngrab, detail NotifyInferior, same_screen YES,
    focus YES, state 0

ButtonPress event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10031015, (30,29), root:(891,483),
    state 0x0, button 1, same_screen YES

EnterNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10031015, (30,29), root:(891,483),
    mode NotifyGrab, detail NotifyInferior, same_screen YES,
    focus YES, state 256

KeymapNotify event, serial 38, synthetic NO, window 0x0,
    keys:  98  0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   
           0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   

ButtonRelease event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10031016, (30,29), root:(891,483),
    state 0x100, button 1, same_screen YES

LeaveNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10031016, (30,29), root:(891,483),
    mode NotifyUngrab, detail NotifyInferior, same_screen YES,
    focus YES, state 0

KeyPress event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10039134, (30,29), root:(891,483),
    state 0x0, keycode 77 (keysym 0xff7f, Num_Lock), same_screen YES,
    XLookupString gives 0 bytes: 
    XmbLookupString gives 0 bytes: 
    XFilterEvent returns: False

PropertyNotify event, serial 38, synthetic NO, window 0x7200001,
    atom 0x1a8 (XKLAVIER_STATE), time 10039138, state PropertyNewValue

KeyRelease event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10039190, (30,29), root:(891,483),
    state 0x10, keycode 77 (keysym 0xff7f, Num_Lock), same_screen YES,
    XLookupString gives 0 bytes: 
    XFilterEvent returns: False

KeyPress event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10044615, (30,29), root:(891,483),
    state 0x10, keycode 110 (keysym 0xff50, Home), same_screen YES,
    XLookupString gives 0 bytes: 
    XmbLookupString gives 0 bytes: 
    XFilterEvent returns: False

KeyRelease event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10044695, (30,29), root:(891,483),
    state 0x10, keycode 110 (keysym 0xff50, Home), same_screen YES,
    XLookupString gives 0 bytes: 
    XFilterEvent returns: False

KeyPress event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10045919, (30,29), root:(891,483),
    state 0x10, keycode 115 (keysym 0xff57, End), same_screen YES,
    XLookupString gives 0 bytes: 
    XmbLookupString gives 0 bytes: 
    XFilterEvent returns: False

KeyRelease event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10045990, (30,29), root:(891,483),
    state 0x10, keycode 115 (keysym 0xff57, End), same_screen YES,
    XLookupString gives 0 bytes: 
    XFilterEvent returns: False

KeyPress event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10046823, (30,29), root:(891,483),
    state 0x10, keycode 112 (keysym 0xff55, Prior), same_screen YES,
    XLookupString gives 0 bytes: 
    XmbLookupString gives 0 bytes: 
    XFilterEvent returns: False

KeyRelease event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10046903, (30,29), root:(891,483),
    state 0x10, keycode 112 (keysym 0xff55, Prior), same_screen YES,
    XLookupString gives 0 bytes: 
    XFilterEvent returns: False

KeyPress event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10047934, (30,29), root:(891,483),
    state 0x10, keycode 117 (keysym 0xff56, Next), same_screen YES,
    XLookupString gives 0 bytes: 
    XmbLookupString gives 0 bytes: 
    XFilterEvent returns: False

KeyRelease event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10048006, (30,29), root:(891,483),
    state 0x10, keycode 117 (keysym 0xff56, Next), same_screen YES,
    XLookupString gives 0 bytes: 
    XFilterEvent returns: False

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10061003, (31,24), root:(892,478),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10061018, (31,23), root:(892,477),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10061026, (31,22), root:(892,476),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10061030, (31,21), root:(892,475),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10061054, (31,20), root:(892,474),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10061062, (31,19), root:(892,473),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10061070, (31,18), root:(892,472),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10061078, (31,16), root:(892,470),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10061086, (32,14), root:(893,468),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10061090, (32,13), root:(893,467),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10061098, (33,12), root:(894,466),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10061106, (33,11), root:(894,465),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x7200002, time 10061114, (33,10), root:(894,464),
    state 0x10, is_hint 0, same_screen YES

EnterNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10061146, (33,9), root:(894,463),
    mode NotifyNormal, detail NotifyInferior, same_screen YES,
    focus YES, state 16

KeymapNotify event, serial 38, synthetic NO, window 0x0,
    keys:  98  0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   
           0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10061146, (33,9), root:(894,463),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10061150, (33,8), root:(894,462),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10061162, (33,7), root:(894,461),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10061250, (33,6), root:(894,460),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10061259, (33,5), root:(894,459),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10061270, (33,4), root:(894,458),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10061282, (33,3), root:(894,457),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10061298, (33,2), root:(894,456),
    state 0x10, is_hint 0, same_screen YES

MotionNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10061314, (33,0), root:(894,454),
    state 0x10, is_hint 0, same_screen YES

LeaveNotify event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 10061402, (33,-1), root:(894,453),
    mode NotifyNormal, detail NotifyAncestor, same_screen YES,
    focus YES, state 16

ClientMessage event, serial 38, synthetic YES, window 0x7200001,
    message_type 0x155 (WM_PROTOCOLS), format 32, message 0x153 (WM_DELETE_WINDOW)

Darüber hinaus habe ich beobachtet, dass folgende fünf Tasten im Nummernblock funktionale Auswirkungen haben können (teilweise im Zusammenhang mit der Maus, wie Markierungsanfang oder -ende, Kontextmenü, Einfügen-Aktion o.ä.), aber nicht immer zuverlässig und vorhersagbar:

5
+
Enter
0/Einfg
./Entf

Viele Grüße
lorbeerbund

Letalis_Sonus Team-Icon

Anmeldungsdatum:
13. April 2008

Beiträge: 12990

Wohnort: Oldenburg/Erlangen

Normalerweise haben die Tasten des Nummerblocks komplett separate Keycodes, was du anhand des KP_ Präfixes in der Keysym Bezeichnung erkennen kannst - da scheint zumindest schon mal die Enter Taste mit KP_Enter einen passenden Keysym zu haben. Der "Zustand" des Nummernblocks wird dabei vom System verwaltet und nicht von der Tastatur - die LED kann man sogar separat ein- und ausschalten. Wenn deine Tastatur nun wie hier den Keycode 110 (Keysm: Home) anstelle von Keycode 79 (Keysym: KP_Home/KP_7) sendet, dann kann das System auch nicht wissen ob hier zwischen aktiviertem oder nicht aktiviertem Nummernblock unterschieden werden muss.

Sofern es da nicht zufällig irgend ein passendes exotisches Tastaturmodell gibt was man vielleicht einstellen könnte sehe ich schwarz, aber da fehlt mir schlicht der Überblick.

lorbeerbund

(Themenstarter)

Anmeldungsdatum:
15. November 2005

Beiträge: 1123

Okay, das klingt schon mal nicht so ermutigend.

Unter http://keytouch.sourceforge.net/howto_keyboard.html ist von der Möglichkeit die Rede, ein "keyboard file" anzulegen, in welchem die Zuordnung der Keycodes geregelt werden kann. Gibt es bei Ubuntu so ein keyboard-file, an dem sich das System orientiert, um die Keycodes zu interpretieren? Wenn ja: wo finde ich dieses File, und kann es bearbeitet werden? Wenn nein: kann es angelegt werden, wo müsste das passieren und was wäre noch erforderlich, um das System anzuweisen, sich danach zu richten?

Danke euch für eure Hilfe!

Viele Grüße
lorbeerbund

Letalis_Sonus Team-Icon

Anmeldungsdatum:
13. April 2008

Beiträge: 12990

Wohnort: Oldenburg/Erlangen

lorbeerbund schrieb:

Gibt es bei Ubuntu so ein keyboard-file, an dem sich das System orientiert, um die Keycodes zu interpretieren?

Die Frage ist nicht ob es sowas gibt (natürlich gibt es das), sondern ob du darüber überhaupt ein via NumLock umschaltbares Verhalten zustande bekommst - die Zuweisung von Keycode und Keysym ist in diesem Falle ja genau vom NumLock Zustand abhängig. Bei Xmodmap sehe ich diesbezüglich jedenfalls schon mal keine Möglichkeit.

Ich würde ja sagen dass du das auch einfach fest umdefinieren könntest wenn du sowieso nur einen Zustand des Nummernblocks benutzt (der Tastatur fehlen ja ohnehin die 6 Tasten über den Pfeiltasten) - aber sofern die Pfeiltasten vom Nummernblock nicht zufällig doch den richtigen Keycode nutzen hast du zumindest damit einen unlösbaren Konflikt.

lorbeerbund

(Themenstarter)

Anmeldungsdatum:
15. November 2005

Beiträge: 1123

Letalis_Sonus schrieb:

Die Frage ist ... ob du darüber überhaupt ein via NumLock umschaltbares Verhalten zustande bekommst. ... Bei Xmodmap sehe ich diesbezüglich jedenfalls schon mal keine Möglichkeit.

Ich würde ja sagen dass du das auch einfach fest umdefinieren könntest wenn du sowieso nur einen Zustand des Nummernblocks benutzt ... aber sofern die Pfeiltasten vom Nummernblock nicht zufällig doch den richtigen Keycode nutzen hast du zumindest damit einen unlösbaren Konflikt.

Tatsächlich benötige ich die Feiltasten-Funktion des Nummernblocks nicht wirklich. Es würde mir reichen, die Nummernbelegung inkl. mathematischer Funktionen des Nummernblocks zum Laufen zu bringen.

Über 'Einstellungen → Tastatur → Tastaturbelegung → Optionen → Belegung des Nummernblocks' scheint sich da nichts beeinflussen zu lassen. Veränderungen der Einstellung dort bleiben völlig ohne Effekt. Meinst du, mit dem Anlegen einer Datei ~/.Xmodmap mittels xmodmap ließe sich die Belegung des Nummernblocks und einiger Funktionstasten händisch definieren? Oder siehst du da Probleme?

Liebe Grüße
lorbeerbund

lorbeerbund

(Themenstarter)

Anmeldungsdatum:
15. November 2005

Beiträge: 1123

Hallöle,

jetzt habe ich mittels xev noch einmal sehr genau geprüft, von welchen Tasten im Nummernblock überhaupt Signale registriert werden. Es sind folgende:

NumLK (→ hat keine Auswirkung auf die Funktionalität des Nummernblocks)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
KeyPress event, serial 35, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 440040635, (18,-4), root:(879,450),
    state 0x10, keycode 77 (keysym 0xff7f, Num_Lock), same_screen YES,
    XLookupString gives 0 bytes: 
    XmbLookupString gives 0 bytes: 
    XFilterEvent returns: False

KeyRelease event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 440040795, (18,-4), root:(879,450),
    state 0x10, keycode 77 (keysym 0xff7f, Num_Lock), same_screen YES,
    XLookupString gives 0 bytes: 
    XFilterEvent returns: False

KP_0, KP_5 (→ öffnet ein Kontext-Menü)

1
2
FocusOut event, serial 38, synthetic NO, window 0x7200001,
    mode NotifyGrab, detail NotifyNonlinear

KP_Decimal(.), KP_+ (→ schließt, oder öffnet und schließt ein Kontextmenü)

1
2
3
4
5
FocusOut event, serial 38, synthetic NO, window 0x7200001,
    mode NotifyGrab, detail NotifyNonlinear

FocusIn event, serial 38, synthetic NO, window 0x7200001,
    mode NotifyUngrab, detail NotifyNonlinear

KP_Enter

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
KeyPress event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 440272211, (18,-4), root:(879,450),
    state 0x0, keycode 104 (keysym 0xff8d, KP_Enter), same_screen YES,
"   XLookupString gives 1 bytes: (0d) "
"   XmbLookupString gives 1 bytes: (0d) "
    XFilterEvent returns: False

KeyRelease event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 440272387, (18,-4), root:(879,450),
    state 0x0, keycode 104 (keysym 0xff8d, KP_Enter), same_screen YES,
"   XLookupString gives 1 bytes: (0d) "
    XFilterEvent returns: False

Und dann finde ich plötzlich folgene xev-Eintragungen, die sich jedoch nicht reproduzieren lassen:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
KeyPress event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 440291171, (18,-4), root:(879,450),
    state 0x0, keycode 110 (keysym 0xff50, Home), same_screen YES,
    XLookupString gives 0 bytes: 
    XmbLookupString gives 0 bytes: 
    XFilterEvent returns: False

KeyRelease event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 440291315, (18,-4), root:(879,450),
    state 0x0, keycode 110 (keysym 0xff50, Home), same_screen YES,
    XLookupString gives 0 bytes: 
    XFilterEvent returns: False

KeyPress event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 440292683, (18,-4), root:(879,450),
    state 0x0, keycode 115 (keysym 0xff57, End), same_screen YES,
    XLookupString gives 0 bytes: 
    XmbLookupString gives 0 bytes: 
    XFilterEvent returns: False

KeyRelease event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 440292835, (18,-4), root:(879,450),
    state 0x0, keycode 115 (keysym 0xff57, End), same_screen YES,
    XLookupString gives 0 bytes: 
    XFilterEvent returns: False

KeyPress event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 440294011, (18,-4), root:(879,450),
    state 0x0, keycode 112 (keysym 0xff55, Prior), same_screen YES,
    XLookupString gives 0 bytes: 
    XmbLookupString gives 0 bytes: 
    XFilterEvent returns: False

KeyRelease event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 440294171, (18,-4), root:(879,450),
    state 0x0, keycode 112 (keysym 0xff55, Prior), same_screen YES,
    XLookupString gives 0 bytes: 
    XFilterEvent returns: False

KeyPress event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 440295499, (18,-4), root:(879,450),
    state 0x0, keycode 117 (keysym 0xff56, Next), same_screen YES,
    XLookupString gives 0 bytes: 
    XmbLookupString gives 0 bytes: 
    XFilterEvent returns: False

KeyRelease event, serial 38, synthetic NO, window 0x7200001,
    root 0x762, subw 0x0, time 440295643, (18,-4), root:(879,450),
    state 0x0, keycode 117 (keysym 0xff56, Next), same_screen YES,
    XLookupString gives 0 bytes: 
    XFilterEvent returns: False

Zumeist kommt von den KP-Zifferntasten jedoch kein Signal bei xev an. Allerdings verschieben diese Tasten die Maus auf dem Bildschirm in kleinen Schritten zuverlässig nach oben, unten, links und rechts bzw. in die diagonalen Richtungen. Es müssen also Signale von diesen Tasten gesendet werden, die von xev nicht protokolliert werden.

Die KP-Funktionstasten /, * und - haben zuverlässig keinerlei Auswirkungen und werden auch nicht protokolliert.

Falls es noch Ideen gibt, wäre ich für Vorschläge sehr dankbar!

Viele Grüße und einen schönen Restsonntag!
lorbeerbund

Letalis_Sonus Team-Icon

Anmeldungsdatum:
13. April 2008

Beiträge: 12990

Wohnort: Oldenburg/Erlangen

lorbeerbund schrieb:

Allerdings verschieben diese Tasten die Maus auf dem Bildschirm in kleinen Schritten zuverlässig nach oben, unten, links und rechts bzw. in die diagonalen Richtungen.

Dies wird bei einigen Desktopumgebungen als Hilfstechnologie für körperliche Behinderungen angeboten - sollte aber standardmäßig deaktiviert sein und eigentlich trotzdem entsprechende Events bei xev erzeugen. Überprüfe mal ob das auch wirklich deaktiviert ist.

lorbeerbund

(Themenstarter)

Anmeldungsdatum:
15. November 2005

Beiträge: 1123

Letalis_Sonus schrieb:

lorbeerbund schrieb:

Allerdings verschieben diese Tasten die Maus auf dem Bildschirm in kleinen Schritten zuverlässig nach oben, unten, links und rechts bzw. in die diagonalen Richtungen.

Dies wird bei einigen Desktopumgebungen als Hilfstechnologie für körperliche Behinderungen angeboten - sollte aber standardmäßig deaktiviert sein und eigentlich trotzdem entsprechende Events bei xev erzeugen. Überprüfe mal ob das auch wirklich deaktiviert ist.

Letalis_Sonus, du bist heute mein Held!

Das war es! Aus irgendeinem Grund war unter 'Einstellungen → Barrierefreiheit → Maus' die Funktion "Mauszeiger mit dem Nummernblock steuern" aktiviert.
Diese Funktion habe ich ausgeschaltet. Jetzt läuft der Nummernblock wie geschmiert! Alles wie es soll.

Und nebenbei habe ich eine Menge über die Steuerwege von Tastatur und Maus gelernt. - Wäre mir sonst nicht begegnet.

Vielen Dank und liebe Grüße!
lorbeerbund

Antworten |