Rhaban
(Themenstarter)
Anmeldungsdatum: 25. Juni 2016
Beiträge: 450
|
Du fragst „Warum hast du den Nvidia-Treiber nicht installiert?”. Ich rufe jeden Abend, vor dem Herunterfahren des Rechners,
| sudo apt-get update
sudo apt-get dist-upgrade
sudo apt-get autoremove
|
auf, um immer die neuesten Programme zu haben. Wäre es denn sinnvoll, einen Nvidia-Treiber zu installieren? Ich muss gestehen, dass ich noch nie damit zu tun hatte. Wenn ich
eingebe, kommt:
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 | Name Version Revision Tracking Herausgeber Hinweise
bare 1.0 5 latest/stable canonical* base
chromium 99.0.4844.84 1945 latest/stable canonical* -
core 16-2.54.4 12821 latest/stable canonical* core
core 16-2.54.3 12725 latest/stable canonical* core,deaktiviert
core18 20211215 2284 latest/stable canonical* base,deaktiviert
core18 20220309 2344 latest/stable canonical* base
core20 20220304 1376 latest/stable canonical* base,deaktiviert
core20 20220318 1405 latest/stable canonical* base
gnome-3-26-1604 3.26.0.20210629 104 latest/stable/… canonical* -
gnome-3-26-1604 3.26.0.20210401 102 latest/stable/… canonical* deaktiviert
gnome-3-28-1804 3.28.0-19-g98f9e67.98f9e67 161 latest/stable canonical* -
gnome-3-28-1804 3.28.0-19-g98f9e67.98f9e67 145 latest/stable canonical* deaktiviert
gnome-3-34-1804 0+git.3556cb3 72 latest/stable canonical* deaktiviert
gnome-3-34-1804 0+git.3556cb3 77 latest/stable canonical* -
gnome-3-38-2004 0+git.cd626d1 87 latest/stable canonical* deaktiviert
gnome-3-38-2004 0+git.1f9014a 99 latest/stable canonical* -
gnome-system-monitor 41.0-5-g91e67f7982 174 latest/stable/… canonical* -
gnome-system-monitor 41.0-4-ge3972588d8 169 latest/stable/… canonical* deaktiviert
gtk-common-themes 0.1-59-g7bca6ae 1519 latest/stable canonical* -
gtk-common-themes 0.1-52-gb92ac40 1515 latest/stable canonical* deaktiviert
love2d 11.1 1 latest/stable keshavnrj -
pdftk 2.02-4 9 latest/stable smoser -
pdftk 2.02-4 1 latest/stable smoser deaktiviert
snap-store 3.38.0-66-gbd5b8f7 558 latest/stable/… canonical* -
snap-store 3.38.0-64-g23c4c77 547 latest/stable/… canonical* deaktiviert
|
Und
liefert:
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
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025 | -- Logs begin at Fri 2021-01-29 20:58:51 CET, end at Fri 2022-04-01 20:01:39 CEST. --
Apr 01 19:32:42 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: ABI class: X.Org Server Extension, version 10.0
Apr 01 19:32:42 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (==) Matched modesetting as autoconfigured driver 0
Apr 01 19:32:42 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (==) Matched fbdev as autoconfigured driver 1
Apr 01 19:32:42 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (==) Matched vesa as autoconfigured driver 2
Apr 01 19:32:42 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (==) Assigned the driver to the xf86ConfigLayout
Apr 01 19:32:42 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) LoadModule: "modesetting"
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Module modesetting: vendor="X.Org Foundation"
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: compiled for 1.20.13, module version = 1.20.13
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: Module class: X.Org Video Driver
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: ABI class: X.Org Video Driver, version 24.1
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) LoadModule: "fbdev"
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Module fbdev: vendor="X.Org Foundation"
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: compiled for 1.20.1, module version = 0.5.0
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: Module class: X.Org Video Driver
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: ABI class: X.Org Video Driver, version 24.0
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) LoadModule: "vesa"
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Module vesa: vendor="X.Org Foundation"
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: compiled for 1.20.4, module version = 2.4.0
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: Module class: X.Org Video Driver
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: ABI class: X.Org Video Driver, version 24.0
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modesetting: Driver for Modesetting Kernel Drivers: kms
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) FBDEV: driver for framebuffer: fbdev
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) VESA: driver for VESA chipsets: vesa
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): using drv /dev/dri/card0
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (WW) Falling back to old probe method for fbdev
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Loading sub module "fbdevhw"
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) LoadModule: "fbdevhw"
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Module fbdevhw: vendor="X.Org Foundation"
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: compiled for 1.20.13, module version = 0.0.2
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: ABI class: X.Org Video Driver, version 24.1
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (EE) open /dev/fb0: Permission denied
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(G0): using drv /dev/dri/card1
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Creating default Display subsection in Screen section
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: "Default Screen Section" for depth/fbbpp 24/32
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (==) modeset(0): Depth 24, (==) framebuffer bpp 32
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (==) modeset(0): RGB weight 888
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (==) modeset(0): Default visual is TrueColor
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Loading sub module "glamoregl"
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) LoadModule: "glamoregl"
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Loading /usr/lib/xorg/modules/libglamoregl.so
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Module glamoregl: vendor="X.Org Foundation"
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: compiled for 1.20.13, module version = 1.0.1
Apr 01 19:32:43 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: ABI class: X.Org ANSI C Emulation, version 0.4
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): glamor X acceleration enabled on Mesa DRI Intel(R) HD Graphics 4600 (HSW GT2)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): glamor initialized
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Output eDP-1 has no monitor section
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Output VGA-1 has no monitor section
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Output DP-1 has no monitor section
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Output HDMI-1 has no monitor section
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Output DP-2 has no monitor section
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Output HDMI-2 has no monitor section
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): EDID for output eDP-1
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Manufacturer: AUO Model: 233e Serial#: 0
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Year: 2012 Week: 0
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): EDID Version: 1.4
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Digital Display Input
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 6 bits per channel
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Digital interface is DisplayPort
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Max Image Size [cm]: horiz.: 31 vert.: 17
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Gamma: 2.20
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): No DPMS capabilities specified
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Supported color encodings: RGB 4:4:4
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): First detailed timing is preferred mode
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Preferred mode is native pixel format and refresh rate
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): redX: 0.590 redY: 0.338 greenX: 0.326 greenY: 0.592
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): blueX: 0.156 blueY: 0.127 whiteX: 0.313 whiteY: 0.329
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Manufacturer's mask: 0
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Supported detailed timing:
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): clock: 112.6 MHz Image Size: 309 x 174 mm
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): h_active: 1600 h_sync: 1664 h_sync_end 1706 h_blank_end 1954 h_border: 0
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): v_active: 900 v_sync: 903 v_sync_end 906 v_blanking: 960 v_border: 0
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Unknown vendor-specific block f
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): AUO
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): B140RTN02.3
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): EDID (in hex):
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 00ffffffffffff0006af3e2300000000
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 00160104951f1178022a259756539728
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 20505400000001010101010101010101
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 010101010101fc2b406261843c30402a
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 330035ae100000180000000f00000000
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 00000000000000000020000000fe0041
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 554f0a202020202020202020000000fe
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 004231343052544e30322e33200a00c0
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Printing probed modes for output eDP-1
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1600x900"x60.0 112.60 1600 1664 1706 1954 900 903 906 960 -hsync -vsync (57.6 kHz eP)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1600x900"x120.0 246.00 1600 1728 1900 2200 900 901 904 932 doublescan -hsync +vsync (111.8 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1600x900"x119.9 186.50 1600 1624 1640 1680 900 901 904 926 doublescan +hsync -vsync (111.0 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1600x900"x59.9 118.25 1600 1696 1856 2112 900 903 908 934 -hsync +vsync (56.0 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1600x900"x59.8 97.50 1600 1648 1680 1760 900 903 908 926 +hsync -vsync (55.4 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1440x900"x59.9 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1400x900"x60.0 103.50 1400 1480 1624 1848 900 903 913 934 -hsync +vsync (56.0 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1400x900"x59.9 86.50 1400 1448 1480 1560 900 903 913 926 +hsync -vsync (55.4 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1440x810"x120.0 198.12 1440 1548 1704 1968 810 811 814 839 doublescan -hsync +vsync (100.7 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1440x810"x119.9 151.88 1440 1464 1480 1520 810 811 814 833 doublescan +hsync -vsync (99.9 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1368x768"x59.9 85.25 1368 1440 1576 1784 768 771 781 798 -hsync +vsync (47.8 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1368x768"x59.9 72.25 1368 1416 1448 1528 768 771 781 790 +hsync -vsync (47.3 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1360x768"x59.8 84.75 1360 1432 1568 1776 768 771 781 798 -hsync +vsync (47.7 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1360x768"x60.0 72.00 1360 1408 1440 1520 768 771 781 790 +hsync -vsync (47.4 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1280x800"x120.0 174.25 1280 1380 1516 1752 800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1280x800"x119.9 134.25 1280 1304 1320 1360 800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1280x800"x59.8 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1280x800"x59.9 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync (49.3 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1152x864"x60.0 81.62 1152 1216 1336 1520 864 865 868 895 -hsync +vsync (53.7 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1280x720"x120.0 156.12 1280 1376 1512 1744 720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1280x720"x120.0 120.75 1280 1304 1320 1360 720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1280x720"x59.9 74.50 1280 1344 1472 1664 720 723 728 748 -hsync +vsync (44.8 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1280x720"x59.7 63.75 1280 1328 1360 1440 720 723 728 741 +hsync -vsync (44.3 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1024x768"x120.1 133.47 1024 1100 1212 1400 768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "960x720"x120.0 117.00 960 1024 1128 1300 720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "928x696"x120.1 109.15 928 976 1088 1264 696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "896x672"x120.0 102.40 896 960 1060 1224 672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1024x576"x119.9 98.50 1024 1092 1200 1376 576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1024x576"x119.9 78.38 1024 1048 1064 1104 576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1024x576"x59.9 46.50 1024 1064 1160 1296 576 579 584 599 -hsync +vsync (35.9 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1024x576"x59.8 42.00 1024 1072 1104 1184 576 579 584 593 +hsync -vsync (35.5 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "960x600"x119.9 96.62 960 1028 1128 1296 600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "960x600"x120.0 77.00 960 984 1000 1040 600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "960x540"x119.9 86.50 960 1024 1124 1288 540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "960x540"x120.0 69.25 960 984 1000 1040 540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "960x540"x59.6 40.75 960 992 1088 1216 540 543 548 562 -hsync +vsync (33.5 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "960x540"x59.8 37.25 960 1008 1040 1120 540 543 548 556 +hsync -vsync (33.3 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "800x600"x120.0 81.00 800 832 928 1080 600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "840x525"x120.0 73.12 840 892 980 1120 525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "840x525"x119.8 59.50 840 864 880 920 525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "864x486"x59.9 32.50 864 888 968 1072 486 489 494 506 -hsync +vsync (30.3 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "864x486"x59.6 30.50 864 912 944 1024 486 489 494 500 +hsync -vsync (29.8 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "800x512"x120.3 51.56 800 800 828 832 512 512 514 515 doublescan +hsync +vsync (62.0 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "700x525"x120.0 61.00 700 744 820 940 525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "800x450"x119.9 59.12 800 848 928 1056 450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "800x450"x119.6 48.75 800 824 840 880 450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "640x512"x120.0 54.00 640 664 720 844 512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "720x450"x119.8 53.25 720 760 836 952 450 451 454 467 doublescan -hsync +vsync (55.9 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "700x450"x119.9 51.75 700 740 812 924 450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "700x450"x119.8 43.25 700 724 740 780 450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "640x480"x120.0 54.00 640 688 744 900 480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "720x405"x59.5 22.50 720 744 808 896 405 408 413 422 -hsync +vsync (25.1 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "720x405"x59.0 21.75 720 768 800 880 405 408 413 419 +hsync -vsync (24.7 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "684x384"x119.8 42.62 684 720 788 892 384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "684x384"x119.7 36.12 684 708 724 764 384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "680x384"x119.6 42.38 680 716 784 888 384 385 390 399 doublescan -hsync +vsync (47.7 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "680x384"x119.9 36.00 680 704 720 760 384 385 390 395 doublescan +hsync -vsync (47.4 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "640x400"x119.8 41.75 640 676 740 840 400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "640x400"x120.0 35.50 640 664 680 720 400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "576x432"x120.1 40.81 576 608 668 760 432 432 434 447 doublescan -hsync +vsync (53.7 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "640x360"x119.7 37.25 640 672 736 832 360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "640x360"x119.7 31.88 640 664 680 720 360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "640x360"x59.8 18.00 640 664 720 800 360 363 368 376 -hsync +vsync (22.5 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "640x360"x59.3 17.75 640 688 720 800 360 363 368 374 +hsync -vsync (22.2 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "512x384"x120.0 32.50 512 524 592 672 384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "512x288"x120.0 23.25 512 532 580 648 288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "512x288"x119.8 21.00 512 536 552 592 288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "480x270"x119.3 20.38 480 496 544 608 270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "480x270"x119.6 18.62 480 504 520 560 270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "400x300"x120.6 20.00 400 420 484 528 300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "400x300"x112.7 18.00 400 412 448 512 300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "432x243"x119.8 16.25 432 444 484 536 243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "432x243"x119.1 15.25 432 456 472 512 243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "320x240"x120.1 12.59 320 328 376 400 240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "360x202"x119.0 11.25 360 372 404 448 202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "360x202"x118.3 10.88 360 384 400 440 202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "320x180"x119.7 9.00 320 332 360 400 180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "320x180"x118.6 8.88 320 344 360 400 180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): EDID for output VGA-1
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Manufacturer: ACI Model: 19e4 Serial#: 16843009
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Year: 2010 Week: 3
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): EDID Version: 1.3
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Analog Display Input, Input Voltage Level: 0.700/0.300 V
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Sync: Separate SyncOnGreen
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Max Image Size [cm]: horiz.: 41 vert.: 23
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Gamma: 2.20
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): DPMS capabilities: Off; RGB/Color Display
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Default color space is primary color space
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): First detailed timing is preferred mode
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): redX: 0.648 redY: 0.339 greenX: 0.292 greenY: 0.603
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): blueX: 0.143 blueY: 0.070 whiteX: 0.313 whiteY: 0.329
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Supported established timings:
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 720x400@70Hz
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 640x480@60Hz
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 640x480@72Hz
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 640x480@75Hz
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 800x600@56Hz
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 800x600@60Hz
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 800x600@72Hz
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 800x600@75Hz
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 1024x768@60Hz
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 1024x768@70Hz
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 1280x1024@75Hz
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Manufacturer's mask: 10
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Supported standard timings:
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): #0: hsize: 1152 vsize 864 refresh: 75 vid: 20337
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): #1: hsize: 1280 vsize 960 refresh: 60 vid: 16513
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): #2: hsize: 1280 vsize 800 refresh: 60 vid: 129
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): #3: hsize: 1280 vsize 720 refresh: 60 vid: 49281
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Supported detailed timing:
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): clock: 85.5 MHz Image Size: 410 x 230 mm
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): h_active: 1366 h_sync: 1436 h_sync_end 1579 h_blank_end 1792 h_border: 0
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): v_active: 768 v_sync: 771 v_sync_end 774 v_blanking: 798 v_border: 0
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Serial No: A1LMIZ021377
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Ranges: V min: 55 V max: 75 Hz, H min: 30 H max: 80 kHz, PixClock max 145 MHz
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Monitor name: ASUS VH192
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): EDID (in hex):
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 00ffffffffffff000469e41901010101
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 031401030a2917782e3d85a6564a9a24
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 125054afcd10714f8140810081c00101
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 010101010101662156aa51001e30468f
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 33009ae61000001e000000ff0041314c
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 4d495a3032313337370a000000fd0037
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 4b1e500e000a202020202020000000fc
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): 00415355532056483139320a202000d2
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Printing probed modes for output VGA-1
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1366x768"x59.8 85.50 1366 1436 1579 1792 768 771 774 798 +hsync +vsync (47.7 kHz eP)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1280x800"x59.8 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz e)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1280x720"x60.0 74.25 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): EDID for output DP-1
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): EDID for output HDMI-1
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): EDID for output DP-2
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): EDID for output HDMI-2
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Output eDP-1 connected
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Output VGA-1 connected
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Output DP-1 disconnected
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Output HDMI-1 disconnected
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Output DP-2 disconnected
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Output HDMI-2 disconnected
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Using spanning desktop for initial modes
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Output eDP-1 using initial mode 1600x900 +0+0
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Output VGA-1 using initial mode 1366x768 +1600+0
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (==) modeset(0): DPI set to (96, 96)
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Loading sub module "fb"
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) LoadModule: "fb"
Apr 01 19:32:47 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Loading /usr/lib/xorg/modules/libfb.so
Apr 01 19:32:48 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Module fb: vendor="X.Org Foundation"
Apr 01 19:32:48 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: compiled for 1.20.13, module version = 1.0.0
Apr 01 19:32:48 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: ABI class: X.Org ANSI C Emulation, version 0.4
Apr 01 19:32:48 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (==) modeset(G0): Depth 24, (==) framebuffer bpp 32
Apr 01 19:32:48 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (==) modeset(G0): RGB weight 888
Apr 01 19:32:48 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (==) modeset(G0): Default visual is TrueColor
Apr 01 19:32:48 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Loading sub module "glamoregl"
Apr 01 19:32:48 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) LoadModule: "glamoregl"
Apr 01 19:32:48 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Loading /usr/lib/xorg/modules/libglamoregl.so
Apr 01 19:32:48 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Module glamoregl: vendor="X.Org Foundation"
Apr 01 19:32:48 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: compiled for 1.20.13, module version = 1.0.1
Apr 01 19:32:48 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: ABI class: X.Org ANSI C Emulation, version 0.4
Apr 01 19:33:00 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(G0): glamor X acceleration enabled on NV108
Apr 01 19:33:00 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(G0): glamor initialized
Apr 01 19:33:00 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (==) modeset(G0): Using gamma correction (1.0, 1.0, 1.0)
Apr 01 19:33:00 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (==) modeset(G0): DPI set to (96, 96)
Apr 01 19:33:00 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Loading sub module "fb"
Apr 01 19:33:00 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) LoadModule: "fb"
Apr 01 19:33:00 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Loading /usr/lib/xorg/modules/libfb.so
Apr 01 19:33:00 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Module fb: vendor="X.Org Foundation"
Apr 01 19:33:00 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: compiled for 1.20.13, module version = 1.0.0
Apr 01 19:33:00 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: ABI class: X.Org ANSI C Emulation, version 0.4
Apr 01 19:33:00 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) UnloadModule: "fbdev"
Apr 01 19:33:00 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Unloading fbdev
Apr 01 19:33:00 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) UnloadSubModule: "fbdevhw"
Apr 01 19:33:00 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Unloading fbdevhw
Apr 01 19:33:00 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) UnloadModule: "vesa"
Apr 01 19:33:00 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Unloading vesa
Apr 01 19:33:01 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (==) modeset(0): Backing store enabled
Apr 01 19:33:01 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (==) modeset(0): Silken mouse enabled
Apr 01 19:33:02 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
Apr 01 19:33:02 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (==) modeset(0): DPMS enabled
Apr 01 19:33:02 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): [DRI2] Setup complete
Apr 01 19:33:02 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): [DRI2] DRI driver: i965
Apr 01 19:33:02 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): [DRI2] VDPAU driver: va_gl
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (==) modeset(G0): Backing store enabled
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (==) modeset(G0): Silken mouse enabled
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(G0): Initializing kms color map for depth 24, 8 bpc.
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (==) modeset(G0): DPMS enabled
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(G0): [DRI2] Setup complete
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(G0): [DRI2] DRI driver: nouveau
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(G0): [DRI2] VDPAU driver: nouveau
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension Generic Event Extension
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension SHAPE
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension MIT-SHM
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension XInputExtension
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension XTEST
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension BIG-REQUESTS
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension SYNC
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension XKEYBOARD
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension XC-MISC
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension SECURITY
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension XFIXES
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension RENDER
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension RANDR
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension COMPOSITE
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension DAMAGE
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension MIT-SCREEN-SAVER
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension DOUBLE-BUFFER
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension RECORD
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension DPMS
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension Present
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension DRI3
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension X-Resource
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension XVideo
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension XVideo-MotionCompensation
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension SELinux
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) SELinux: Disabled on system
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension GLX
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) AIGLX: Loaded and initialized i965
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) GLX: Initialized DRI2 GL provider for screen 0
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension XFree86-VidModeExtension
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension XFree86-DGA
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension XFree86-DRI
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Initializing extension DRI2
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(G0): Damage tracking initialized
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Damage tracking initialized
Apr 01 19:33:03 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Setting screen physical size to 784 x 238
Apr 01 19:33:06 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device Power Button (/dev/input/event1)
Apr 01 19:33:06 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Power Button: Applying InputClass "libinput keyboard catchall"
Apr 01 19:33:06 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) LoadModule: "libinput"
Apr 01 19:33:06 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
Apr 01 19:33:06 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Module libinput: vendor="X.Org Foundation"
Apr 01 19:33:06 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: compiled for 1.20.4, module version = 0.29.0
Apr 01 19:33:06 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: Module class: X.Org XInput Driver
Apr 01 19:33:06 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: ABI class: X.Org XInput driver, version 24.1
Apr 01 19:33:06 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Using input driver 'libinput' for 'Power Button'
Apr 01 19:33:06 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 27 paused 0
Apr 01 19:33:06 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Power Button: always reports core events
Apr 01 19:33:06 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "Device" "/dev/input/event1"
Apr 01 19:33:06 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "_source" "server/udev"
Apr 01 19:33:07 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event1 - Power Button: is tagged by udev as: Keyboard
Apr 01 19:33:07 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event1 - Power Button: device is a keyboard
Apr 01 19:33:07 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event1 - Power Button: device removed
Apr 01 19:33:07 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
Apr 01 19:33:07 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
Apr 01 19:33:07 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_model" "pc105"
Apr 01 19:33:07 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_layout" "de,cz"
Apr 01 19:33:07 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_variant" ","
Apr 01 19:33:07 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_options" "grp:alt_shift_toggle,grp_led:scroll"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event1 - Power Button: is tagged by udev as: Keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event1 - Power Button: device is a keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device Video Bus (/dev/input/event10)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Video Bus: Applying InputClass "libinput keyboard catchall"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Using input driver 'libinput' for 'Video Bus'
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 30 paused 0
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Video Bus: always reports core events
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "Device" "/dev/input/event10"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "_source" "server/udev"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event10 - Video Bus: is tagged by udev as: Keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event10 - Video Bus: device is a keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event10 - Video Bus: device removed
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input12/event10"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_model" "pc105"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_layout" "de,cz"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_variant" ","
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_options" "grp:alt_shift_toggle,grp_led:scroll"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event10 - Video Bus: is tagged by udev as: Keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event10 - Video Bus: device is a keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device Video Bus (/dev/input/event11)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Video Bus: Applying InputClass "libinput keyboard catchall"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Using input driver 'libinput' for 'Video Bus'
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) systemd-logind: got fd for /dev/input/event11 13:75 fd 31 paused 0
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Video Bus: always reports core events
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "Device" "/dev/input/event11"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "_source" "server/udev"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event11 - Video Bus: is tagged by udev as: Keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event11 - Video Bus: device is a keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event11 - Video Bus: device removed
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0a/LNXVIDEO:01/input/input13/event11"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_model" "pc105"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_layout" "de,cz"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_variant" ","
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_options" "grp:alt_shift_toggle,grp_led:scroll"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event11 - Video Bus: is tagged by udev as: Keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event11 - Video Bus: device is a keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) No input driver specified, ignoring this device.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) This device may have been added with another device file.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=3 (/dev/input/event16)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) No input driver specified, ignoring this device.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) This device may have been added with another device file.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=7 (/dev/input/event17)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) No input driver specified, ignoring this device.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) This device may have been added with another device file.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=8 (/dev/input/event18)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) No input driver specified, ignoring this device.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) This device may have been added with another device file.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=9 (/dev/input/event19)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) No input driver specified, ignoring this device.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) This device may have been added with another device file.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=10 (/dev/input/event20)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) No input driver specified, ignoring this device.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) This device may have been added with another device file.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device Integrated Camera: Integrated C (/dev/input/event13)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Integrated Camera: Integrated C: Applying InputClass "libinput keyboard catchall"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Using input driver 'libinput' for 'Integrated Camera: Integrated C'
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) systemd-logind: got fd for /dev/input/event13 13:77 fd 32 paused 0
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Integrated Camera: Integrated C: always reports core events
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "Device" "/dev/input/event13"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "_source" "server/udev"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event13 - Integrated Camera: Integrated C: is tagged by udev as: Keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event13 - Integrated Camera: Integrated C: device is a keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event13 - Integrated Camera: Integrated C: device removed
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-12/3-12:1.0/input/input15/event13"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) XINPUT: Adding extended input device "Integrated Camera: Integrated C" (type: KEYBOARD, id 9)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_model" "pc105"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_layout" "de,cz"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_variant" ","
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_options" "grp:alt_shift_toggle,grp_led:scroll"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event13 - Integrated Camera: Integrated C: is tagged by udev as: Keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event13 - Integrated Camera: Integrated C: device is a keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/event3)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Logitech USB Optical Mouse: Applying InputClass "libinput pointer catchall"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Using input driver 'libinput' for 'Logitech USB Optical Mouse'
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 33 paused 0
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Logitech USB Optical Mouse: always reports core events
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "Device" "/dev/input/event3"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "_source" "server/udev"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event3 - Logitech USB Optical Mouse: is tagged by udev as: Mouse
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event3 - Logitech USB Optical Mouse: device is a pointer
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event3 - Logitech USB Optical Mouse: device removed
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-2/3-2:1.0/0003:046D:C077.0001/input/input5/event3"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) XINPUT: Adding extended input device "Logitech USB Optical Mouse" (type: MOUSE, id 10)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "AccelerationScheme" "none"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Logitech USB Optical Mouse: (accel) selected scheme none/0
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Logitech USB Optical Mouse: (accel) acceleration factor: 2.000
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Logitech USB Optical Mouse: (accel) acceleration threshold: 4
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event3 - Logitech USB Optical Mouse: is tagged by udev as: Mouse
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event3 - Logitech USB Optical Mouse: device is a pointer
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/mouse0)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) No input driver specified, ignoring this device.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) This device may have been added with another device file.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device CHESEN PS2 to USB Converter (/dev/input/event4)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) CHESEN PS2 to USB Converter: Applying InputClass "libinput keyboard catchall"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Using input driver 'libinput' for 'CHESEN PS2 to USB Converter'
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 34 paused 0
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) CHESEN PS2 to USB Converter: always reports core events
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "Device" "/dev/input/event4"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "_source" "server/udev"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event4 - CHESEN PS2 to USB Converter: is tagged by udev as: Keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event4 - CHESEN PS2 to USB Converter: device is a keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event4 - CHESEN PS2 to USB Converter: device removed
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.3/3-3.3:1.0/0003:0A81:0205.0002/input/input6/event4"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) XINPUT: Adding extended input device "CHESEN PS2 to USB Converter" (type: KEYBOARD, id 11)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_model" "pc105"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_layout" "de,cz"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_variant" ","
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_options" "grp:alt_shift_toggle,grp_led:scroll"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event4 - CHESEN PS2 to USB Converter: is tagged by udev as: Keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event4 - CHESEN PS2 to USB Converter: device is a keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device CHESEN PS2 to USB Converter Mouse (/dev/input/event5)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) CHESEN PS2 to USB Converter Mouse: Applying InputClass "libinput pointer catchall"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Using input driver 'libinput' for 'CHESEN PS2 to USB Converter Mouse'
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 35 paused 0
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) CHESEN PS2 to USB Converter Mouse: always reports core events
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "Device" "/dev/input/event5"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "_source" "server/udev"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event5 - CHESEN PS2 to USB Converter Mouse: is tagged by udev as: Mouse
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event5 - CHESEN PS2 to USB Converter Mouse: device is a pointer
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event5 - CHESEN PS2 to USB Converter Mouse: device removed
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.3/3-3.3:1.1/0003:0A81:0205.0003/input/input7/event5"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) XINPUT: Adding extended input device "CHESEN PS2 to USB Converter Mouse" (type: MOUSE, id 12)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "AccelerationScheme" "none"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) CHESEN PS2 to USB Converter Mouse: (accel) selected scheme none/0
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) CHESEN PS2 to USB Converter Mouse: (accel) acceleration factor: 2.000
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) CHESEN PS2 to USB Converter Mouse: (accel) acceleration threshold: 4
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event5 - CHESEN PS2 to USB Converter Mouse: is tagged by udev as: Mouse
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event5 - CHESEN PS2 to USB Converter Mouse: device is a pointer
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device CHESEN PS2 to USB Converter Mouse (/dev/input/mouse1)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) No input driver specified, ignoring this device.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) This device may have been added with another device file.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device CHESEN PS2 to USB Converter System Control (/dev/input/event6)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) CHESEN PS2 to USB Converter System Control: Applying InputClass "libinput keyboard catchall"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Using input driver 'libinput' for 'CHESEN PS2 to USB Converter System Control'
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 36 paused 0
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) CHESEN PS2 to USB Converter System Control: always reports core events
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "Device" "/dev/input/event6"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "_source" "server/udev"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event6 - CHESEN PS2 to USB Converter System Control: is tagged by udev as: Keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event6 - CHESEN PS2 to USB Converter System Control: device is a keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event6 - CHESEN PS2 to USB Converter System Control: device removed
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.3/3-3.3:1.1/0003:0A81:0205.0003/input/input8/event6"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) XINPUT: Adding extended input device "CHESEN PS2 to USB Converter System Control" (type: KEYBOARD, id 13)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_model" "pc105"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_layout" "de,cz"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_variant" ","
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_options" "grp:alt_shift_toggle,grp_led:scroll"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event6 - CHESEN PS2 to USB Converter System Control: is tagged by udev as: Keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event6 - CHESEN PS2 to USB Converter System Control: device is a keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device CHESEN PS2 to USB Converter Consumer Control (/dev/input/event7)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) CHESEN PS2 to USB Converter Consumer Control: Applying InputClass "libinput keyboard catchall"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Using input driver 'libinput' for 'CHESEN PS2 to USB Converter Consumer Control'
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 37 paused 0
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) CHESEN PS2 to USB Converter Consumer Control: always reports core events
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "Device" "/dev/input/event7"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "_source" "server/udev"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event7 - CHESEN PS2 to USB Converter Consumer Control: is tagged by udev as: Keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event7 - CHESEN PS2 to USB Converter Consumer Control: device is a keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event7 - CHESEN PS2 to USB Converter Consumer Control: device removed
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.3/3-3.3:1.1/0003:0A81:0205.0003/input/input9/event7"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) XINPUT: Adding extended input device "CHESEN PS2 to USB Converter Consumer Control" (type: KEYBOARD, id 14)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_model" "pc105"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_layout" "de,cz"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_variant" ","
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_options" "grp:alt_shift_toggle,grp_led:scroll"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event7 - CHESEN PS2 to USB Converter Consumer Control: is tagged by udev as: Keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event7 - CHESEN PS2 to USB Converter Consumer Control: device is a keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device Manufacturer Barcode Reader (/dev/input/event8)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Manufacturer Barcode Reader: Applying InputClass "libinput keyboard catchall"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Using input driver 'libinput' for 'Manufacturer Barcode Reader'
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 38 paused 0
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Manufacturer Barcode Reader: always reports core events
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "Device" "/dev/input/event8"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "_source" "server/udev"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event8 - Manufacturer Barcode Reader: is tagged by udev as: Keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event8 - Manufacturer Barcode Reader: device is a keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event8 - Manufacturer Barcode Reader: device removed
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4:1.0/0003:E851:1000.0004/input/input10/event8"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) XINPUT: Adding extended input device "Manufacturer Barcode Reader" (type: KEYBOARD, id 15)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_model" "pc105"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_layout" "de,cz"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_variant" ","
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_options" "grp:alt_shift_toggle,grp_led:scroll"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event8 - Manufacturer Barcode Reader: is tagged by udev as: Keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event8 - Manufacturer Barcode Reader: device is a keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device USB 2.0 Peripheral Switch USB 2.0 Peripheral Switch (/dev/input/event9)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) USB 2.0 Peripheral Switch USB 2.0 Peripheral Switch: Applying InputClass "libinput keyboard catchall"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Using input driver 'libinput' for 'USB 2.0 Peripheral Switch USB 2.0 Peripheral Switch'
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) systemd-logind: got fd for /dev/input/event9 13:73 fd 39 paused 0
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) USB 2.0 Peripheral Switch USB 2.0 Peripheral Switch: always reports core events
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "Device" "/dev/input/event9"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "_source" "server/udev"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event9 - USB 2.0 Peripheral Switch USB 2.0 Peripheral Switch: is tagged by udev as: Keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event9 - USB 2.0 Peripheral Switch USB 2.0 Peripheral Switch: device is a keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event9 - USB 2.0 Peripheral Switch USB 2.0 Peripheral Switch: device removed
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.5/3-3.5.3/3-3.5.3.2/3-3.5.3.2:1.0/0003:0557:2407.0005/input/input11/event9"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) XINPUT: Adding extended input device "USB 2.0 Peripheral Switch USB 2.0 Peripheral Switch" (type: KEYBOARD, id 16)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_model" "pc105"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_layout" "de,cz"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_variant" ","
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_options" "grp:alt_shift_toggle,grp_led:scroll"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event9 - USB 2.0 Peripheral Switch USB 2.0 Peripheral Switch: is tagged by udev as: Keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event9 - USB 2.0 Peripheral Switch USB 2.0 Peripheral Switch: device is a keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device HDA Intel PCH Dock Mic (/dev/input/event21)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) No input driver specified, ignoring this device.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) This device may have been added with another device file.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event22)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) No input driver specified, ignoring this device.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) This device may have been added with another device file.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device HDA Intel PCH Dock Headphone (/dev/input/event23)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) No input driver specified, ignoring this device.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) This device may have been added with another device file.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event24)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) No input driver specified, ignoring this device.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) This device may have been added with another device file.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event2)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 40 paused 0
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) AT Translated Set 2 keyboard: always reports core events
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "Device" "/dev/input/event2"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "_source" "server/udev"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event2 - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event2 - AT Translated Set 2 keyboard: device is a keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event2 - AT Translated Set 2 keyboard: device removed
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input2/event2"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 17)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_model" "pc105"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_layout" "de,cz"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_variant" ","
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_options" "grp:alt_shift_toggle,grp_led:scroll"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event2 - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event2 - AT Translated Set 2 keyboard: device is a keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event12)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) ThinkPad Extra Buttons: Applying InputClass "libinput keyboard catchall"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Using input driver 'libinput' for 'ThinkPad Extra Buttons'
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 41 paused 0
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) ThinkPad Extra Buttons: always reports core events
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "Device" "/dev/input/event12"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "_source" "server/udev"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event12 - ThinkPad Extra Buttons: is tagged by udev as: Keyboard Switch
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event12 - ThinkPad Extra Buttons: device is a keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event12 - ThinkPad Extra Buttons: device removed
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input14/event12"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD, id 18)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_model" "pc105"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_layout" "de,cz"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_variant" ","
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "xkb_options" "grp:alt_shift_toggle,grp_led:scroll"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event12 - ThinkPad Extra Buttons: is tagged by udev as: Keyboard Switch
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event12 - ThinkPad Extra Buttons: device is a keyboard
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device Synaptics TM2722-001 (/dev/input/event14)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Synaptics TM2722-001: Applying InputClass "libinput touchpad catchall"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Using input driver 'libinput' for 'Synaptics TM2722-001'
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) systemd-logind: got fd for /dev/input/event14 13:78 fd 42 paused 0
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Synaptics TM2722-001: always reports core events
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "Device" "/dev/input/event14"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "_source" "server/udev"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event14 - Synaptics TM2722-001: is tagged by udev as: Touchpad
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event14 - Synaptics TM2722-001: device is a touchpad
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event14 - Synaptics TM2722-001: device removed
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "config_info" "udev:/sys/devices/rmi4-00/input/input16/event14"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) XINPUT: Adding extended input device "Synaptics TM2722-001" (type: TOUCHPAD, id 19)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "AccelerationScheme" "none"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Synaptics TM2722-001: (accel) selected scheme none/0
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Synaptics TM2722-001: (accel) acceleration factor: 2.000
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Synaptics TM2722-001: (accel) acceleration threshold: 4
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event14 - Synaptics TM2722-001: is tagged by udev as: Touchpad
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event14 - Synaptics TM2722-001: device is a touchpad
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device Synaptics TM2722-001 (/dev/input/mouse2)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) No input driver specified, ignoring this device.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) This device may have been added with another device file.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event15)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) TPPS/2 IBM TrackPoint: Applying InputClass "libinput pointer catchall"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) Using input driver 'libinput' for 'TPPS/2 IBM TrackPoint'
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) systemd-logind: got fd for /dev/input/event15 13:79 fd 43 paused 0
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) TPPS/2 IBM TrackPoint: always reports core events
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "Device" "/dev/input/event15"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "_source" "server/udev"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event15 - TPPS/2 IBM TrackPoint: is tagged by udev as: Mouse Pointingstick
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event15 - TPPS/2 IBM TrackPoint: device is a pointer
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event15 - TPPS/2 IBM TrackPoint: device removed
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "config_info" "udev:/sys/devices/rmi4-00/rmi4-00.fn03/serio2/input/input17/event15"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 20)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) Option "AccelerationScheme" "none"
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) TPPS/2 IBM TrackPoint: (accel) selected scheme none/0
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event15 - TPPS/2 IBM TrackPoint: is tagged by udev as: Mouse Pointingstick
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) event15 - TPPS/2 IBM TrackPoint: device is a pointer
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse3)
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) No input driver specified, ignoring this device.
Apr 01 19:33:08 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) This device may have been added with another device file.
Apr 01 19:33:10 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1486]: dbus-update-activation-environment: setting DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus
Apr 01 19:33:10 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1486]: dbus-update-activation-environment: setting DISPLAY=:0
Apr 01 19:33:10 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1486]: dbus-update-activation-environment: setting XAUTHORITY=/run/user/1000/gdm/Xauthority
Apr 01 19:33:11 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1549]: dbus-update-activation-environment: setting GTK_MODULES=gail:atk-bridge
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1557]: dbus-update-activation-environment: setting QT_ACCESSIBILITY=1
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting SHELL=/bin/bash
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting QT_ACCESSIBILITY=1
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting XDG_CONFIG_DIRS=/etc/xdg/xdg-ubuntu:/etc/xdg
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting LANGUAGE=de_DE:cs:en_GB:en
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting LC_ADDRESS=de_DE.UTF-8
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting LC_NAME=de_DE.UTF-8
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting DESKTOP_SESSION=ubuntu
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting LC_MONETARY=de_DE.UTF-8
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting GTK_MODULES=gail:atk-bridge
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting PWD=/home/rlpclin
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting XDG_SESSION_DESKTOP=ubuntu
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting LOGNAME=rlpclin
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting XDG_SESSION_TYPE=x11
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting GPG_AGENT_INFO=/run/user/1000/gnupg/S.gpg-agent:0:1
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting XAUTHORITY=/run/user/1000/gdm/Xauthority
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting WINDOWPATH=2
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting HOME=/home/rlpclin
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting USERNAME=rlpclin
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting IM_CONFIG_PHASE=1
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting LC_PAPER=de_DE.UTF-8
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting LANG=de_DE.UTF-8
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting XDG_CURRENT_DESKTOP=ubuntu:GNOME
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting XDG_SESSION_CLASS=user
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting LC_IDENTIFICATION=de_DE.UTF-8
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting USER=rlpclin
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting DISPLAY=:0
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting SHLVL=1
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting LC_TELEPHONE=de_DE.UTF-8
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting LC_MEASUREMENT=de_DE.UTF-8
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting PAPERSIZE=a4
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting XDG_RUNTIME_DIR=/run/user/1000
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting LC_TIME=de_DE.UTF-8
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting XDG_DATA_DIRS=/usr/share/ubuntu:/usr/local/share/:/usr/share/:/var/lib/snapd/desktop
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting PATH=/home/rlpclin/.local/bin:/home/rlpclin/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting GDMSESSION=ubuntu
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting LC_NUMERIC=de_DE.UTF-8
Apr 01 19:33:12 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1561]: dbus-update-activation-environment: setting _=/usr/bin/dbus-update-activation-environment
Apr 01 19:33:17 rlpclin-ThinkPad-T440p gnome-session-c[1588]: Error creating FIFO: Die Datei existiert bereits
Apr 01 19:33:20 rlpclin-ThinkPad-T440p gnome-session-binary[1595]: WARNING: Could not parse desktop file org.kde.korgac.desktop or it references a not found TryExec binary
Apr 01 19:33:21 rlpclin-ThinkPad-T440p gnome-session-binary[1595]: WARNING: Could not parse desktop file gnome-software-service.desktop or it references a not found TryExec binary
Apr 01 19:33:22 rlpclin-ThinkPad-T440p gnome-session-binary[1595]: WARNING: Could not parse desktop file nautilus-autostart.desktop or it references a not found TryExec binary
Apr 01 19:33:32 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): EDID vendor "ACI", prod id 6628
Apr 01 19:33:32 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Using EDID range info for horizontal sync
Apr 01 19:33:32 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Using EDID range info for vertical refresh
Apr 01 19:33:32 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Printing DDC gathered Modelines:
Apr 01 19:33:32 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1366x768"x0.0 85.50 1366 1436 1579 1792 768 771 774 798 +hsync +vsync (47.7 kHz eP)
Apr 01 19:33:32 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
Apr 01 19:33:32 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
Apr 01 19:33:32 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
Apr 01 19:33:32 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
Apr 01 19:33:32 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
Apr 01 19:33:32 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
Apr 01 19:33:32 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
Apr 01 19:33:32 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
Apr 01 19:33:32 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
Apr 01 19:33:32 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
Apr 01 19:33:32 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
Apr 01 19:33:32 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
Apr 01 19:33:32 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
Apr 01 19:33:32 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz e)
Apr 01 19:33:32 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1280x720"x60.0 74.48 1280 1336 1472 1664 720 721 724 746 -hsync +vsync (44.8 kHz e)
Apr 01 19:33:36 rlpclin-ThinkPad-T440p gnome-shell[1609]: Some code accessed the property 'CredentialManager' on the module 'credentialManager'. That property was defined with 'let' or 'const' inside the module. This was previously supported, but is not correct according to the ES6 standard. Any symbols to be exported from a module must be defined with 'var'. The property access will work as previously for the time being, but please fix your code anyway.
Apr 01 19:33:55 rlpclin-ThinkPad-T440p gnome-shell[1609]: JS ERROR: Extension FixClock@silvioricardoc: TypeError: imports.ui.screenShield.Clock is undefined
@/home/rlpclin/.local/share/gnome-shell/extensions/FixClock@silvioricardoc/extension.js:22:19
_callExtensionInit@resource:///org/gnome/shell/ui/extensionSystem.js:427:13
loadExtension@resource:///org/gnome/shell/ui/extensionSystem.js:348:27
_loadExtensions/<@resource:///org/gnome/shell/ui/extensionSystem.js:601:18
collectFromDatadirs@resource:///org/gnome/shell/misc/fileUtils.js:27:17
_loadExtensions@resource:///org/gnome/shell/ui/extensionSystem.js:576:19
_enableAllExtensions@resource:///org/gnome/shell/ui/extensionSystem.js:610:18
_sessionUpdated@resource:///org/gnome/shell/ui/extensionSystem.js:641:18
init@resource:///org/gnome/shell/ui/extensionSystem.js:56:14
_initializeUI@resource:///org/gnome/shell/ui/main.js:257:22
start@resource:///org/gnome/shell/ui/main.js:146:5
@<main>:1:47
Apr 01 19:33:57 rlpclin-ThinkPad-T440p gnome-shell[1609]: JS ERROR: Extension format-clock@eternal-sorrow.github.com: TypeError: imports.ui.screenShield.Clock is undefined
@/home/rlpclin/.local/share/gnome-shell/extensions/format-clock@eternal-sorrow.github.com/extension.js:29:19
_callExtensionInit@resource:///org/gnome/shell/ui/extensionSystem.js:427:13
loadExtension@resource:///org/gnome/shell/ui/extensionSystem.js:348:27
_loadExtensions/<@resource:///org/gnome/shell/ui/extensionSystem.js:601:18
collectFromDatadirs@resource:///org/gnome/shell/misc/fileUtils.js:27:17
_loadExtensions@resource:///org/gnome/shell/ui/extensionSystem.js:576:19
_enableAllExtensions@resource:///org/gnome/shell/ui/extensionSystem.js:610:18
_sessionUpdated@resource:///org/gnome/shell/ui/extensionSystem.js:641:18
init@resource:///org/gnome/shell/ui/extensionSystem.js:56:14
_initializeUI@resource:///org/gnome/shell/ui/main.js:257:22
start@resource:///org/gnome/shell/ui/main.js:146:5
@<main>:1:47
Apr 01 19:33:58 rlpclin-ThinkPad-T440p gnome-shell[1609]: Some code accessed the property 'Switcher' on the module 'switcher'. That property was defined with 'let' or 'const' inside the module. This was previously supported, but is not correct according to the ES6 standard. Any symbols to be exported from a module must be defined with 'var'. The property access will work as previously for the time being, but please fix your code anyway.
Apr 01 19:33:58 rlpclin-ThinkPad-T440p gnome-shell[1609]: Some code accessed the property 'Placement' on the module 'preview'. That property was defined with 'let' or 'const' inside the module. This was previously supported, but is not correct according to the ES6 standard. Any symbols to be exported from a module must be defined with 'var'. The property access will work as previously for the time being, but please fix your code anyway.
Apr 01 19:33:58 rlpclin-ThinkPad-T440p gnome-shell[1609]: Some code accessed the property 'Direction' on the module 'preview'. That property was defined with 'let' or 'const' inside the module. This was previously supported, but is not correct according to the ES6 standard. Any symbols to be exported from a module must be defined with 'var'. The property access will work as previously for the time being, but please fix your code anyway.
Apr 01 19:33:58 rlpclin-ThinkPad-T440p gnome-shell[1609]: Some code accessed the property 'CoverflowSwitcher' on the module 'coverflowSwitcher'. That property was defined with 'let' or 'const' inside the module. This was previously supported, but is not correct according to the ES6 standard. Any symbols to be exported from a module must be defined with 'var'. The property access will work as previously for the time being, but please fix your code anyway.
Apr 01 19:33:58 rlpclin-ThinkPad-T440p gnome-shell[1609]: Some code accessed the property 'TimelineSwitcher' on the module 'timelineSwitcher'. That property was defined with 'let' or 'const' inside the module. This was previously supported, but is not correct according to the ES6 standard. Any symbols to be exported from a module must be defined with 'var'. The property access will work as previously for the time being, but please fix your code anyway.
Apr 01 19:33:58 rlpclin-ThinkPad-T440p gnome-shell[1609]: Some code accessed the property 'PlatformGnomeShell314' on the module 'platform'. That property was defined with 'let' or 'const' inside the module. This was previously supported, but is not correct according to the ES6 standard. Any symbols to be exported from a module must be defined with 'var'. The property access will work as previously for the time being, but please fix your code anyway.
Apr 01 19:33:58 rlpclin-ThinkPad-T440p gnome-shell[1609]: Some code accessed the property 'Keybinder330Api' on the module 'keybinder'. That property was defined with 'let' or 'const' inside the module. This was previously supported, but is not correct according to the ES6 standard. Any symbols to be exported from a module must be defined with 'var'. The property access will work as previously for the time being, but please fix your code anyway.
Apr 01 19:33:58 rlpclin-ThinkPad-T440p gnome-shell[1609]: Some code accessed the property 'Manager' on the module 'manager'. That property was defined with 'let' or 'const' inside the module. This was previously supported, but is not correct according to the ES6 standard. Any symbols to be exported from a module must be defined with 'var'. The property access will work as previously for the time being, but please fix your code anyway.
Apr 01 19:34:06 rlpclin-ThinkPad-T440p conky.conf.desktop[1859]: conky: desktop window (600010) is subwindow of root window (1a0)
Apr 01 19:34:06 rlpclin-ThinkPad-T440p conky.conf.desktop[1859]: conky: window type - desktop
Apr 01 19:34:06 rlpclin-ThinkPad-T440p conky.conf.desktop[1859]: conky: drawing to created window (0x2000002)
Apr 01 19:34:06 rlpclin-ThinkPad-T440p conky.conf.desktop[1859]: conky: drawing to double buffer
Apr 01 19:34:06 rlpclin-ThinkPad-T440p conky.conf.desktop[1859]: conky: forked to background, pid is 1941
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:rfkill-bluetooth
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:playback-forward
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:keyboard-brightness-down
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:volume-down-quiet
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:volume-down-quiet
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:calculator
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:volume-up-precise
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:volume-up-precise
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:search
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:playback-rewind
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:media
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:playback-repeat
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:touchpad-on
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:play
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:play
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:screen-brightness-down
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:touchpad-off
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:screensaver
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:keyboard-brightness-up
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:battery-status
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:power
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:eject
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:rfkill
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:rfkill
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:rfkill
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:volume-up
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:volume-up
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:volume-mute-quiet
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:touchpad-toggle
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:touchpad-toggle
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:volume-down-precise
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:volume-down-precise
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:previous
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:previous
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:hibernate
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:hibernate
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:control-center
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:stop
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:home
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:email
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:volume-mute
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:www
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:keyboard-brightness-toggle
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:mic-mute
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:next
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:next
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:screen-brightness-up
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:pause
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:magnifier
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:playback-random
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:screen-brightness-cycle
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:volume-down
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:volume-down
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:volume-up-quiet
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:volume-up-quiet
Apr 01 19:34:06 rlpclin-ThinkPad-T440p gsd-media-keys[1746]: Failed to grab accelerator for keybinding settings:suspend
Apr 01 19:34:06 rlpclin-ThinkPad-T440p colord[1117]: failed to get session [pid 1742]: Keine Daten verfügbar
Apr 01 19:34:06 rlpclin-ThinkPad-T440p colord[1117]: failed to get session [pid 1742]: Keine Daten verfügbar
Apr 01 19:34:09 rlpclin-ThinkPad-T440p gnome-shell[1609]: Theme file for DMZ-White has no directories
Apr 01 19:34:11 rlpclin-ThinkPad-T440p baloo_file.desktop[1867]: kf5.ki18n: KCatalog being used without a Q*Application instance. Some translations won't work
Apr 01 19:34:11 rlpclin-ThinkPad-T440p baloo_file.desktop[1867]: kf5.ki18n: KCatalog being used without a Q*Application instance. Some translations won't work
Apr 01 19:34:11 rlpclin-ThinkPad-T440p baloo_file.desktop[1867]: kf5.ki18n: KCatalog being used without a Q*Application instance. Some translations won't work
Apr 01 19:34:11 rlpclin-ThinkPad-T440p baloo_file.desktop[1867]: kf5.ki18n: KCatalog being used without a Q*Application instance. Some translations won't work
Apr 01 19:34:11 rlpclin-ThinkPad-T440p baloo_file.desktop[1867]: kf5.ki18n: KCatalog being used without a Q*Application instance. Some translations won't work
Apr 01 19:34:11 rlpclin-ThinkPad-T440p baloo_file.desktop[1867]: kf5.ki18n: KCatalog being used without a Q*Application instance. Some translations won't work
Apr 01 19:34:11 rlpclin-ThinkPad-T440p baloo_file.desktop[1867]: kf5.ki18n: KCatalog being used without a Q*Application instance. Some translations won't work
Apr 01 19:34:11 rlpclin-ThinkPad-T440p baloo_file.desktop[1867]: kf5.ki18n: KCatalog being used without a Q*Application instance. Some translations won't work
Apr 01 19:34:11 rlpclin-ThinkPad-T440p baloo_file.desktop[1867]: kf5.ki18n: KCatalog being used without a Q*Application instance. Some translations won't work
Apr 01 19:34:11 rlpclin-ThinkPad-T440p baloo_file.desktop[1867]: kf5.ki18n: KCatalog being used without a Q*Application instance. Some translations won't work
Apr 01 19:34:12 rlpclin-ThinkPad-T440p blueman-mechani[1969]: gtk_icon_theme_get_for_screen: assertion 'GDK_IS_SCREEN (screen)' failed
Apr 01 19:34:12 rlpclin-ThinkPad-T440p blueman.desktop[1861]: blueman-applet 19.34.12 WARNING PluginManager:147 __load_plugin: Not loading PPPSupport because its conflict has higher priority
Apr 01 19:34:12 rlpclin-ThinkPad-T440p blueman.desktop[1861]: blueman-applet 19.34.12 WARNING PluginManager:147 __load_plugin: Not loading DhcpClient because its conflict has higher priority
Apr 01 19:34:12 rlpclin-ThinkPad-T440p blueman.desktop[1861]: blueman-applet 19.34.12 WARNING DiscvManager:109 update_menuitems: warning: Adapter is None
Apr 01 19:34:12 rlpclin-ThinkPad-T440p blueman.desktop[1985]: blueman-tray 19.34.12 ERROR Functions:303 remove_file: Failed to remove: /home/rlpclin/.cache/blueman-tray-1000
Apr 01 19:34:16 rlpclin-ThinkPad-T440p gnome-shell[1609]: Theme file for DMZ-White has no directories
Apr 01 19:34:18 rlpclin-ThinkPad-T440p org.kde.kdeconnect.daemon.desktop[1868]: kdeconnect.core: Daemon starting
Apr 01 19:34:20 rlpclin-ThinkPad-T440p org.kde.kdeconnect.daemon.desktop[1868]: kdeconnect.core: LanLinkProvider started
Apr 01 19:34:20 rlpclin-ThinkPad-T440p org.kde.kdeconnect.daemon.desktop[1868]: kdeconnect.core: Daemon started
Apr 01 19:34:20 rlpclin-ThinkPad-T440p org.kde.kdeconnect.daemon.desktop[1868]: kdeconnect.core: Broadcasting identity packet
Apr 01 19:34:37 rlpclin-ThinkPad-T440p baloo_file.desktop[1867]: replace called with invalid arguments, docId: 83316601696290817 url: "/home/rlpclin/"
Apr 01 19:35:10 rlpclin-ThinkPad-T440p thunderbird[2070]: Theme file for DMZ-White has no directories
Apr 01 19:35:16 rlpclin-ThinkPad-T440p thunderbird[2158]: Theme file for DMZ-White has no directories
Apr 01 19:36:03 rlpclin-ThinkPad-T440p firefox[2423]: Theme file for DMZ-White has no directories
Apr 01 19:37:37 rlpclin-ThinkPad-T440p gnome-terminal-[2775]: Theme file for DMZ-White has no directories
Apr 01 19:37:49 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): EDID vendor "ACI", prod id 6628
Apr 01 19:37:49 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Using hsync ranges from config file
Apr 01 19:37:49 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Using vrefresh ranges from config file
Apr 01 19:37:49 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Printing DDC gathered Modelines:
Apr 01 19:37:49 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1366x768"x0.0 85.50 1366 1436 1579 1792 768 771 774 798 +hsync +vsync (47.7 kHz eP)
Apr 01 19:37:49 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
Apr 01 19:37:49 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
Apr 01 19:37:49 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
Apr 01 19:37:49 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
Apr 01 19:37:49 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
Apr 01 19:37:49 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
Apr 01 19:37:49 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
Apr 01 19:37:49 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
Apr 01 19:37:49 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
Apr 01 19:37:49 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
Apr 01 19:37:49 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
Apr 01 19:37:49 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
Apr 01 19:37:49 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
Apr 01 19:37:49 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz e)
Apr 01 19:37:49 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1280x720"x60.0 74.48 1280 1336 1472 1664 720 721 724 746 -hsync +vsync (44.8 kHz e)
Apr 01 19:37:49 rlpclin-ThinkPad-T440p sudo[2866]: rlpclin : a password is required ; TTY=pts/0 ; PWD=/home/rlpclin ; USER=root ; COMMAND=/usr/sbin/hddtemp -nq -u C /dev/sda
Apr 01 19:37:56 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): EDID vendor "ACI", prod id 6628
Apr 01 19:37:56 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Using hsync ranges from config file
Apr 01 19:37:56 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Using vrefresh ranges from config file
Apr 01 19:37:56 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Printing DDC gathered Modelines:
Apr 01 19:37:56 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1366x768"x0.0 85.50 1366 1436 1579 1792 768 771 774 798 +hsync +vsync (47.7 kHz eP)
Apr 01 19:37:56 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
Apr 01 19:37:56 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
Apr 01 19:37:56 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
Apr 01 19:37:56 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz e)
Apr 01 19:37:56 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
Apr 01 19:37:56 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
Apr 01 19:37:56 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
Apr 01 19:37:56 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz e)
Apr 01 19:37:56 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
Apr 01 19:37:56 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
Apr 01 19:37:56 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz e)
Apr 01 19:37:56 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
Apr 01 19:37:56 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
Apr 01 19:37:56 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1280x800"x0.0 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz e)
Apr 01 19:37:56 rlpclin-ThinkPad-T440p /usr/lib/gdm3/gdm-x-session[1278]: (II) modeset(0): Modeline "1280x720"x60.0 74.48 1280 1336 1472 1664 720 721 724 746 -hsync +vsync (44.8 kHz e)
Apr 01 19:37:57 rlpclin-ThinkPad-T440p sudo[2923]: rlpclin : a password is required ; TTY=pts/0 ; PWD=/home/rlpclin ; USER=root ; COMMAND=/usr/sbin/hddtemp -nq -u C /dev/sda
Apr 01 19:38:06 rlpclin-ThinkPad-T440p org.kde.kglobalaccel[2983]: org.kde.kwindowsystem.keyserver.x11: Your keyboard setup doesn't provide a key to use for meta. See 'xmodmap -pm' or 'xkbcomp $DISPLAY'
Apr 01 19:38:36 rlpclin-ThinkPad-T440p gnome-shell[1609]: clutter_actor_remove_child: assertion 'child->priv->parent != NULL' failed
Apr 01 19:38:36 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to remove actor of type 'StWidget' from group of class 'Gjs_ui_layout_UiActor', but the container is not the actor's parent.
Apr 01 19:38:38 rlpclin-ThinkPad-T440p gnome-shell[1609]: clutter_actor_remove_child: assertion 'child->priv->parent != NULL' failed
Apr 01 19:38:38 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to remove actor of type 'StWidget' from group of class 'Gjs_ui_layout_UiActor', but the container is not the actor's parent.
Apr 01 19:38:45 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:38:45 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5ed1d0.
Apr 01 19:38:45 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:38:45 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5ec780.
Apr 01 19:38:45 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:38:45 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5ece60.
Apr 01 19:38:45 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:38:45 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5ecaf0.
Apr 01 19:38:45 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:38:45 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on StLabel 0x5601cb2f1130.
Apr 01 19:38:45 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:38:45 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on StBin 0x5601ca63b070.
Apr 01 19:40:47 rlpclin-ThinkPad-T440p gnome-shell[1609]: clutter_actor_remove_child: assertion 'child->priv->parent != NULL' failed
Apr 01 19:40:47 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to remove actor of type 'StWidget' from group of class 'Gjs_ui_layout_UiActor', but the container is not the actor's parent.
Apr 01 19:40:52 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:40:52 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5edf90.
Apr 01 19:40:52 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:40:52 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5ed8b0.
Apr 01 19:40:52 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:40:52 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5ed540.
Apr 01 19:40:52 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:40:52 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5edc20.
Apr 01 19:40:52 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:40:52 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on StLabel 0x5601c881d5b0.
Apr 01 19:40:52 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:40:52 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on StBin 0x5601ca6e3230.
Apr 01 19:45:39 rlpclin-ThinkPad-T440p autokey-gtk[1857]: Theme file for DMZ-White has no directories
Apr 01 19:45:42 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:45:42 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601cc7c2ae0.
Apr 01 19:45:42 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:45:42 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601cc7c2400.
Apr 01 19:45:42 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:45:42 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601cc7c2770.
Apr 01 19:45:42 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:45:42 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on StLabel 0x5601ca63e460.
Apr 01 19:45:42 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:45:42 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on StBin 0x5601c955f080.
Apr 01 19:45:43 rlpclin-ThinkPad-T440p gnome-shell[1609]: clutter_actor_remove_child: assertion 'child->priv->parent != NULL' failed
Apr 01 19:45:43 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to remove actor of type 'StWidget' from group of class 'Gjs_ui_layout_UiActor', but the container is not the actor's parent.
Apr 01 19:46:03 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:46:03 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5ed1d0.
Apr 01 19:46:03 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:46:03 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5ec780.
Apr 01 19:46:03 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:46:03 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5ece60.
Apr 01 19:46:03 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:46:03 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5ecaf0.
Apr 01 19:46:03 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:46:03 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on StLabel 0x5601cc7c1480.
Apr 01 19:46:03 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:46:03 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on StBin 0x5601c9574070.
Apr 01 19:48:04 rlpclin-ThinkPad-T440p kernel: kauditd_printk_skb: 6 callbacks suppressed
Apr 01 19:48:50 rlpclin-ThinkPad-T440p gnome-shell[1609]: clutter_actor_remove_child: assertion 'child->priv->parent != NULL' failed
Apr 01 19:48:50 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to remove actor of type 'StWidget' from group of class 'Gjs_ui_layout_UiActor', but the container is not the actor's parent.
Apr 01 19:48:54 rlpclin-ThinkPad-T440p gnome-shell[1609]: clutter_actor_remove_child: assertion 'child->priv->parent != NULL' failed
Apr 01 19:48:54 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to remove actor of type 'StWidget' from group of class 'Gjs_ui_layout_UiActor', but the container is not the actor's parent.
Apr 01 19:49:03 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:49:03 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5ece60.
Apr 01 19:49:03 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:49:03 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601cc7c2ae0.
Apr 01 19:49:03 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:49:03 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601cc7c2770.
Apr 01 19:49:03 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:49:03 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5ed1d0.
Apr 01 19:49:03 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:49:03 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601cc7c2400.
Apr 01 19:49:03 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:49:03 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on StLabel 0x5601c86e7ac0.
Apr 01 19:49:03 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:49:03 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on StBin 0x5601ca6f0e30.
Apr 01 19:57:21 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:57:21 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5edc20.
Apr 01 19:57:21 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:57:21 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5ed8b0.
Apr 01 19:57:21 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:57:21 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5ed540.
Apr 01 19:57:21 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:57:21 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5ecaf0.
Apr 01 19:57:21 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:57:21 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5ec780.
Apr 01 19:57:21 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:57:21 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on StLabel 0x5601ca2bf480.
Apr 01 19:57:21 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:57:21 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on StBin 0x5601ca63e520.
Apr 01 19:57:30 rlpclin-ThinkPad-T440p gnome-shell[1609]: clutter_actor_remove_child: assertion 'child->priv->parent != NULL' failed
Apr 01 19:57:30 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to remove actor of type 'StWidget' from group of class 'Gjs_ui_layout_UiActor', but the container is not the actor's parent.
Apr 01 19:57:42 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:57:42 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5ed1d0.
Apr 01 19:57:42 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:57:42 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5ece60.
Apr 01 19:57:42 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:57:42 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601cc7c2770.
Apr 01 19:57:42 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:57:42 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601cc7c2400.
Apr 01 19:57:42 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:57:42 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601cc7c2ae0.
Apr 01 19:57:42 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:57:42 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on StLabel 0x5601cba362f0.
Apr 01 19:57:42 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 19:57:42 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on StBin 0x5601c94d9800.
Apr 01 19:58:51 rlpclin-ThinkPad-T440p gnome-shell[1609]: st_widget_get_theme_node called on the widget [0x5601cc8c3ea0 StWidget] which is not in the stage.
Apr 01 19:58:51 rlpclin-ThinkPad-T440p gnome-shell[1609]: st_widget_get_theme_node called on the widget [0x5601ca6fc660 StWidget] which is not in the stage.
Apr 01 20:00:49 rlpclin-ThinkPad-T440p gnome-shell[1609]: clutter_actor_remove_child: assertion 'child->priv->parent != NULL' failed
Apr 01 20:00:49 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to remove actor of type 'StWidget' from group of class 'Gjs_ui_layout_UiActor', but the container is not the actor's parent.
Apr 01 20:01:10 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 20:01:10 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601cc7c2400.
Apr 01 20:01:10 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 20:01:10 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5edf90.
Apr 01 20:01:10 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 20:01:10 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5ed1d0.
Apr 01 20:01:10 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 20:01:10 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5ece60.
Apr 01 20:01:10 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 20:01:10 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5ecaf0.
Apr 01 20:01:10 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 20:01:10 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on StLabel 0x5601ca63dac0.
Apr 01 20:01:10 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 20:01:10 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on StBin 0x5601cca3c750.
Apr 01 20:01:30 rlpclin-ThinkPad-T440p gnome-shell[1609]: clutter_actor_remove_child: assertion 'child->priv->parent != NULL' failed
Apr 01 20:01:30 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to remove actor of type 'StWidget' from group of class 'Gjs_ui_layout_UiActor', but the container is not the actor's parent.
Apr 01 20:01:33 rlpclin-ThinkPad-T440p gnome-shell[1609]: clutter_actor_remove_child: assertion 'child->priv->parent != NULL' failed
Apr 01 20:01:33 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to remove actor of type 'StWidget' from group of class 'Gjs_ui_layout_UiActor', but the container is not the actor's parent.
Apr 01 20:01:39 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 20:01:39 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5ed8b0.
Apr 01 20:01:39 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 20:01:39 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5ed540.
Apr 01 20:01:39 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 20:01:39 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601ca5ec780.
Apr 01 20:01:39 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 20:01:39 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601cc7c2770.
Apr 01 20:01:39 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 20:01:39 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on Preview 0x5601cc7c2ae0.
Apr 01 20:01:39 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 20:01:39 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on StLabel 0x5601c94d6920.
Apr 01 20:01:39 rlpclin-ThinkPad-T440p gnome-shell[1609]: Attempting to call back into JSAPI during the sweeping phase of GC. This is most likely caused by not destroying a Clutter actor or Gtk+ widget with ::destroy signals connected, but can also be caused by using the destroy(), dispose(), or remove() vfuncs. Because it would crash the application, it has been blocked and the JS callback not invoked.
Apr 01 20:01:39 rlpclin-ThinkPad-T440p gnome-shell[1609]: The offending signal was destroy on StBin 0x5601ca6df870.
|
Ich hoffe, ich bekomme nicht geschimpft, denn das sind über 1 000 Zeilen ...
|