ubuntuusers.de

Unbenannt

Autor:
Heni
Datum:
8. Mai 2017 21:04
Code:
   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
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
Xsession: X session started for henrik at Mo 8. Mai 20:54:35 CEST 2017
localuser:henrik being added to access control list
Loading stage  "initial" 95
Couldn't determine full name for app850.fon
Couldn't determine slant for app850.fon
Couldn't determine weight for app850.fon
Couldn't get family name for app850.fon
Couldn't determine full name for coure.fon
Couldn't determine slant for coure.fon
Couldn't determine weight for coure.fon
Couldn't get family name for coure.fon
Couldn't determine full name for vgasys.fon
Couldn't determine slant for vgasys.fon
Couldn't determine weight for vgasys.fon
Couldn't get family name for vgasys.fon
Couldn't determine full name for vga850.fon
Couldn't determine slant for vga850.fon
Couldn't determine weight for vga850.fon
Couldn't get family name for vga850.fon
Couldn't determine full name for serife.fon
Couldn't determine slant for serife.fon
Couldn't determine weight for serife.fon
Couldn't get family name for serife.fon
Couldn't determine full name for sserife.fon
Couldn't determine slant for sserife.fon
Couldn't determine weight for sserife.fon
Couldn't get family name for sserife.fon
Couldn't determine full name for vgafix.fon
Couldn't determine slant for vgafix.fon
Couldn't determine weight for vgafix.fon
Couldn't get family name for vgafix.fon
Couldn't determine full name for smalle.fon
Couldn't determine slant for smalle.fon
Couldn't determine weight for smalle.fon
Couldn't get family name for smalle.fon
startkde: Starting up...
dbus-update-activation-environment: warning: error sending to systemd: org.freedesktop.DBus.Error.Spawn.ChildExited: Process org.freedesktop.systemd1 exited with status 1
kdeinit5: preparing to launch 'libkdeinit5_klauncher'
kdeinit5: Launched KLauncher, pid = 1564, result = 0
Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
kdeinit5: opened connection to :0
kdeinit5: preparing to launch 'libkdeinit5_kded5'
kdeinit5: Launched KDED, pid = 1566 result = 0
kdeinit5: preparing to launch 'libkdeinit5_kcminit_startup'
kdeinit5: Launched 'kcminit_startup', pid = 1567 result = 0
kdeinit5: Got SETENV 'KDE_MULTIHEAD=false' from launcher.
Initializing  "kcm_input" :  "kcminit_mouse"
Initializing  "kcm_kgamma" :  "kcminit_kgamma"
kdeinit5: Got SETENV 'XCURSOR_THEME=breeze_cursors' from launcher.
kdeinit5: Got SETENV 'XCURSOR_SIZE=0' from launcher.
Initializing  "kcm_style" :  "kcminit_style"
kdeinit5: Got SETENV 'GTK_RC_FILES=/etc/gtk/gtkrc:/home/henrik/.gtkrc:/home/henrik/.config/gtkrc' from launcher.
kdeinit5: Got SETENV 'GTK2_RC_FILES=/etc/gtk-2.0/gtkrc:/home/henrik/.gtkrc-2.0:/home/henrik/.config/gtkrc-2.0' from launcher.
kf5.kded: found kded module "accounts" by prepending 'kded_' to the library path, please fix your metadata.
Initializing  "kcm_access" :  "kcminit_access"
kdeinit5: Got EXEC_NEW '/usr/bin/kaccess' from launcher.
kdeinit5: preparing to launch '/usr/bin/kaccess'
Initializing  "kded_touchpad" :  "kcminit_touchpad"
kdeinit5: PID 1567 terminated.
kdeinit5: Got KWRAPPER '/usr/bin/ksmserver' from wrapper.
kdeinit5: preparing to launch '/usr/bin/ksmserver'
Loaded KAccounts plugin "/usr/lib/x86_64-linux-gnu/qt5/plugins/kaccounts/daemonplugins/kaccounts_ktp_plugin.so"
QCoreApplication::arguments: Please instantiate the QApplication object first
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
kdeinit5: PID 1578 terminated.
kf5.kded: found kded module "printmanager" by prepending 'kded_' to the library path, please fix your metadata.
kdeinit5: Got EXEC_NEW '/usr/lib/x86_64-linux-gnu/libexec/kf5/kconf_update' from launcher.
kdeinit5: preparing to launch '/usr/lib/x86_64-linux-gnu/libexec/kf5/kconf_update'
kdeinit5: PID 1583 terminated.
Qt: Session management error: networkIdsList argument is NULL
powerdevil: Backend loaded, loading core
powerdevil: Core loaded, initializing backend
powerdevil: Falling back to helper to get brightness
pm.kded: unable to register service to dbus
Configuring Lock Action
Setting the name of  0x2385810  to  "org.kde.ActivityManager.ActivityTemplates"
Setting the name of  0x2386390  to  "org.kde.ActivityManager.RunApplication"
Setting the name of  0x2359260  to  "org.kde.ActivityManager.Resources.Scoring"
Creating directory:  "/home/henrik/.local/share/kactivitymanagerd/resources/"
KActivities: Database connection:  "kactivities_db_resources_140663211985088_readwrite" 
    query_only:          QVariant(qlonglong, 0) 
    journal_mode:        QVariant(QString, "wal") 
    wal_autocheckpoint:  QVariant(qlonglong, 100) 
    synchronous:         QVariant(qlonglong, 1)
XSync seems available and ready
XSync Inited
Supported, init completed
Created alarm 33554433
Service started, version: 6.2.0
ksmserver: "/run/user/1000/KSMserver"
ksmserver: KSMServer: SetAProc_loc: conn  0 , prot= local , file= @/tmp/.ICE-unix/1580
ksmserver: KSMServer: SetAProc_loc: conn  1 , prot= unix , file= /tmp/.ICE-unix/1580
kdeinit5: Got SETENV 'SESSION_MANAGER=local/Henrik-Desktop:@/tmp/.ICE-unix/1580,unix/Henrik-Desktop:/tmp/.ICE-unix/1580' from launcher.
kdeinit5: Got EXEC_NEW '/usr/bin/baloo_file' from launcher.
kdeinit5: preparing to launch '/usr/bin/baloo_file'
kdeinit5: Got EXEC_NEW 'lib/x86_64-linux-gnu/libexec/kdeconnectd' from launcher.
kdeinit5: preparing to launch 'libkdeinit5_lib/x86_64-linux-gnu/libexec/kdeconnectd'
Bibliothek „/usr/lib/x86_64-linux-gnu/libkdeinit5_lib/x86_64-linux-gnu/libexec/kdeconnectd“ lässt sich nicht öffnen.
Cannot load library /usr/lib/x86_64-linux-gnu/libkdeinit5_lib/x86_64-linux-gnu/libexec/kdeconnectd: (/usr/lib/x86_64-linux-gnu/libkdeinit5_lib/x86_64-linux-gnu/libexec/libkdeconnectd.so: Kann die Shared-Object-Datei nicht öffnen: Datei oder Verzeichnis nicht gefunden)
kdeinit5: Got EXEC_NEW '/usr/bin/krunner' from launcher.
kdeinit5: preparing to launch '/usr/bin/krunner'
QDBusConnection: name 'org.kde.kglobalaccel' had owner '' but we thought it was ':1.16'
detected kglobalaccel restarting, re-registering all shortcut keys
kdeinit5: PID 1611 terminated.
Session path: "/org/freedesktop/login1/session/_33"
kdeinit5: Got EXEC_NEW '/usr/bin/plasmashell' from launcher.
kdeinit5: preparing to launch '/usr/bin/plasmashell'
QDBusConnection: name 'org.kde.kglobalaccel' had owner '' but we thought it was ':1.16'
detected kglobalaccel restarting, re-registering all shortcut keys
Starting accounts migration...
org.kde.baloo: "/home/henrik"
kscreen.kded: Config KScreen::Config(0x1e53520) is ready
kscreen.kded: PowerDevil SuspendSession action not available!
kscreen.kded: "The name org.kde.Solid.PowerManagement was not provided by any .service files"
completeShutdownOrCheckpoint called
kscreen.kded: Applying config
kscreen.kded: Calculating config ID for KScreen::Config(0x1e53520)
kscreen.kded: 	Part of the Id:  "e410675549091dbaf134c3f860fe4ba0"
kscreen.kded: 	Config ID: "2d55c4f7a1014c1c83f284ad763ea948"
kscreen.kded: Calculating config ID for KScreen::Config(0x1e53520)
kscreen.kded: 	Part of the Id:  "e410675549091dbaf134c3f860fe4ba0"
kscreen.kded: 	Config ID: "2d55c4f7a1014c1c83f284ad763ea948"
kscreen.kded: Applying known config "2d55c4f7a1014c1c83f284ad763ea948"
completeShutdownOrCheckpoint called
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen.kded: Finding a mode for QSize(1920, 1080) @ 60
kscreen.kded: 	Found:  "714"   QSize(1920, 1080) @ 60
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(NULL) ( "none" )
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen.kded: doApplyConfig()
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen.kded: Config applied
kscreen.kded: Monitor for changes:  true
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen: Requesting missing EDID for outputs (713)
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen.kded: Change detected
powerdevil: current screen brightness value:  40
kdeinit5: Got EXEC_NEW '/usr/lib/x86_64-linux-gnu/libexec/polkit-kde-authentication-agent-1' from launcher.
kdeinit5: preparing to launch '/usr/lib/x86_64-linux-gnu/libexec/polkit-kde-authentication-agent-1'
powerdevil: Backend is ready, KDE Power Management system initialized
XSync seems available and ready
XSync Inited
Supported, init completed
powerdevil: Session path: "/org/freedesktop/login1/session/_33"
powerdevil: ACTIVE SESSION PATH: "/org/freedesktop/login1/session/_33"
powerdevil: Current session is now active
powerdevil: fd passing available: true
powerdevil: systemd powersave events handling inhibited, descriptor: 27
powerdevil: systemd support initialized
powerdevil: Got a valid offer for  "DPMSControl"
powerdevil: Core is ready, registering various services on the bus...
powerdevil: Can't contact ck
powerdevil: We are now into activity  "7df6780a-ba89-4266-a620-db921c0fef5b"
powerdevil: ("8a49adac-0ebd-4721-a2cb-518025454f03", "fa79285d-5da1-4c94-866c-07fabcee4b6c", "e398a333-7d7d-4031-93fd-fde162caba18", "1a1ed050-3c52-49e2-b8c1-674a7ea045b5", "5554d202-6065-4ed9-9bfb-1c714d0829ef", "7df6780a-ba89-4266-a620-db921c0fef5b", "eba103db-ce21-4f8e-a862-3dd931d0de29", "c6c7ed07-bfbe-46b4-9c04-3c190c6cb8ea") ()
powerdevil: ("SpecialBehavior") ("mode")
powerdevil: No batteries found, loading AC
powerdevil: Activity is not forcing a profile
powerdevil: Handle button events action could not check for screen configuration
powerdevil: Profiles:  "AC" ""
powerdevil: Screen brightness value max:  100
powerdevil: set screen brightness value:  40
powerdevil: Activity has special behaviors
powerdevil: Activity triggers a suspend inhibition
powerdevil: Added inhibition with cookie  1  from  "Aktivitätenverwaltung"  with  "Die Richtlinien dieser Aktivität verhindern das Versetzen des Systems in den Ruhezustand."
powerdevil: Added interrupt session
powerdevil: Activity triggers a screen management inhibition
powerdevil: Added inhibition with cookie  2  from  "Aktivitätenverwaltung"  with  "Die Richtlinien dieser Aktivität verhindern die Bildschirmverwaltung."
powerdevil: Added change screen settings
powerdevil: Added interrupt session
powerdevil: Disabling DPMS due to inhibition
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
powerdevil: Udev device changed "/sys/devices/pci0000:00/0000:00:02.0/backlight/acpi_video0" "/sys/devices/pci0000:00/0000:00:02.0/backlight/acpi_video0"
New PolkitAgentListener  0x1b5c720
Adding new listener  PolkitQt1::Agent::Listener(0x1b92bc0) for  0x1b5c720
Listener online
Authentication agent result: true
Invalid service name "/org/kde/polkit-kde-authentication-agent-1" using: "/org/kde/polkitkdeauthenticationagent1"
kdeinit5: Got EXEC_NEW '/usr/bin/xembedsniproxy' from launcher.
kdeinit5: preparing to launch '/usr/bin/xembedsniproxy'
ksmserver: Autostart 0 done
kcminit not running? If we are running with mobile profile or in another platform other than X11 this is normal.
ksmserver: Kcminit phase 1 done
kdeinit5: Got EXEC_NEW '/usr/bin/start-pulseaudio-x11' from launcher.
kdeinit5: preparing to launch '/usr/bin/start-pulseaudio-x11'
completeShutdownOrCheckpoint called
ksmserver: Autostart 1 done
kdeinit5: Got EXEC_NEW '/usr/bin/ksuperkey' from launcher.
kdeinit5: preparing to launch '/usr/bin/ksuperkey'
kdeinit5: PID 1648 terminated.
kdeinit5: Got EXEC_NEW '/usr/bin/psensor' from launcher.
kdeinit5: preparing to launch '/usr/bin/psensor'
kdeinit5: Got EXEC_NEW '/usr/bin/seafile-applet' from launcher.
kdeinit5: preparing to launch '/usr/bin/seafile-applet'
kdeinit5: Got EXEC_NEW '/usr/bin/steam' from launcher.
kdeinit5: preparing to launch '/usr/bin/steam'
kdeinit5: Got EXEC_NEW '/usr/lib/at-spi2-core/at-spi-bus-launcher' from launcher.
kdeinit5: preparing to launch '/usr/lib/at-spi2-core/at-spi-bus-launcher'
kdeinit5: Got EXEC_NEW '/bin/sh' from launcher.
kdeinit5: preparing to launch '/bin/sh'
kdeinit5: PID 1664 terminated.
kdeinit5: Got EXEC_NEW '/usr/bin/korgac' from launcher.
kdeinit5: preparing to launch '/usr/bin/korgac'
Trying to convert empty KLocalizedString to QString.
Trying to convert empty KLocalizedString to QString.
Trying to convert empty KLocalizedString to QString.
Trying to use rootObject before initialization is completed, whilst using setInitializationDelayed. Forcing completion
Installing the delayed initialization callback.
bluedevil: Created
OpenGL vendor string:                   NVIDIA Corporation
OpenGL renderer string:                 GeForce GTX 770/PCIe/SSE2
OpenGL version string:                  4.5.0 NVIDIA 378.13
OpenGL shading language version string: 4.50 NVIDIA
Driver:                                 NVIDIA
Driver version:                         378.13
GPU class:                              Unknown
OpenGL version:                         4.5
GLSL version:                           4.50
X server version:                       1.18.4
Linux kernel version:                   4.4
Requires strict binding:                no
GLSL shaders:                           yes
Texture NPOT support:                   yes
Virtual Machine:                        no
kdeinit5: PID 1666 terminated.
kf5.kded: found kded module "kwrited" by prepending 'kded_' to the library path, please fix your metadata.
QXcbConnection: XCB error: 3 (BadWindow), sequence: 993, resource id: 60817409, major code: 18 (ChangeProperty), minor code: 0
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kf5.kded: found kded module "notificationhelper" by prepending 'kded_' to the library path, please fix your metadata.
kf5.kded: found kded module "touchpad" by prepending 'kded_' to the library path, please fix your metadata.
ksmserver: Starting notification thread
Delayed initialization.
Reloading the khotkeys configuration
ksmserver: Kcminit phase 2 done
Version 2 File!
SHO QKeySequence("")
SHO QObject(0x0)
SHO QKeySequence("Ctrl+Alt+I")
SHO QObject(0x0)
SHO QKeySequence("Ctrl+Alt+H")
SHO QObject(0x0)
SHO QKeySequence("Ctrl+Alt+T")
SHO QObject(0x0)
SHO QKeySequence("Ctrl+W")
SHO QObject(0x0)
SHO QKeySequence("Ctrl+Alt+W")
SHO QObject(0x0)
SHO QKeySequence("Ctrl+Alt+B")
SHO QObject(0x0)
completeShutdownOrCheckpoint called
org.kde.plasma: unversioned plugin detected, may result in instability
kde.xembedsniproxy: starting
org.kde.plasma: unversioned plugin detected, may result in instability
SHO QKeySequence("Meta+E")
SHO QObject(0x0)
SHO QKeySequence("Print")
SHO QObject(0x0)
SHO QKeySequence("Shift+Print")
SHO QObject(0x0)
SHO QKeySequence("Meta+Print")
SHO QObject(0x0)
completeShutdownOrCheckpoint called
completeShutdownOrCheckpoint called
kde.xembedsniproxy: Manager selection claimed
SHO QKeySequence("Ctrl+Esc")
SHO QObject(0x0)
true
ksmserver: Autostart 2 done
Imported file "/usr/share/khotkeys/kde32b1.khotkeys"
Imported file "/usr/share/khotkeys/defaults.khotkeys"
Imported file "/usr/share/khotkeys/spectacle.khotkeys"
Imported file "/usr/share/khotkeys/konqueror_gestures_kde321.khotkeys"
QMetaProperty::read: Unable to handle unregistered datatype 'KWayland::Server::SurfaceInterface*' for property 'KWin::Toplevel::surface'
org.kde.plasma: unversioned plugin detected, may result in instability
org.kde.plasma: unversioned plugin detected, may result in instability
org.kde.plasma: unversioned plugin detected, may result in instability
org.kde.plasma: unversioned plugin detected, may result in instability
org.kde.plasma: unversioned plugin detected, may result in instability
kscreen.kded: Saving current config to file
kscreen.kded: Calculating config ID for KScreen::Config(0x1e53520)
kscreen.kded: 	Part of the Id:  "e410675549091dbaf134c3f860fe4ba0"
kscreen.kded: 	Config ID: "2d55c4f7a1014c1c83f284ad763ea948"
kscreen.kded: Config saved on:  "/home/henrik/.local/share/kscreen/2d55c4f7a1014c1c83f284ad763ea948"
Registering ":1.27/org/ayatana/NotificationItem/psensor" to system tray
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen: Requesting missing EDID for outputs (713)
bluedevil: ObexManager operational changed false
Registering "org.kde.StatusNotifierItem-1676-1/StatusNotifierItem" to system tray
bluedevil: Bluetooth operational changed false
kscreen.kded: Change detected
"ETMCalendar"
executing akonadi_control
org.kde.plasma: unversioned plugin detected, may result in instability
org.kde.plasma: unversioned plugin detected, may result in instability
""
Akonadi Client Session: connection config file 'akonadi/akonadiconnectionrc' can not be found in "/home/henrik/.config" nor in any of ("/etc/xdg/xdg-/usr/share/xsessions/plasma", "/etc/xdg", "/usr/share/kubuntu-default-settings/kf5-settings")
connectToServer "/home/henrik/.local/share/akonadi/akonadiserver.socket"
Akonadi Client Session: connection config file 'akonadi/akonadiconnectionrc' can not be found in "/home/henrik/.config" nor in any of ("/etc/xdg/xdg-/usr/share/xsessions/plasma", "/etc/xdg", "/usr/share/kubuntu-default-settings/kf5-settings")
connectToServer "/home/henrik/.local/share/akonadi/akonadiserver.socket"
log_kidentitymanagement: IdentityManager: There was no default identity. Marking first one as default.
Socket error occurred: "QLocalSocket::connectToServer: Ungültiger Name"
Socket error occurred: "QLocalSocket::connectToServer: Ungültiger Name"
org.kde.akonadi.ETM: GEN true false true
org.kde.akonadi.ETM: collection: QVector()
Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
Akonadi server is already starting up
search paths:  ("/home/henrik/bin", "/home/henrik/.local/bin", "/usr/local/sbin", "/usr/local/bin", "/usr/sbin", "/usr/bin", "/sbin", "/bin", "/usr/games", "/usr/local/games", "/snap/bin", "/usr/sbin", "/usr/local/sbin", "/usr/local/libexec", "/usr/libexec", "/opt/mysql/libexec", "/opt/local/lib/mysql5/bin", "/opt/mysql/sbin")
Found mysql_install_db:  "/usr/bin/mysql_install_db"
Found mysqlcheck:  "/usr/bin/mysqlcheck"
kscreen.kded: Saving current config to file
kscreen.kded: Calculating config ID for KScreen::Config(0x1e53520)
kscreen.kded: 	Part of the Id:  "e410675549091dbaf134c3f860fe4ba0"
kscreen.kded: 	Config ID: "2d55c4f7a1014c1c83f284ad763ea948"
kscreen.kded: Config saved on:  "/home/henrik/.local/share/kscreen/2d55c4f7a1014c1c83f284ad763ea948"
No metadata file in the package, expected it at: "/media/HDD/Henrik/Bilder/Hintergrund//metadata.desktop"
No metadata file in the package, expected it at: "/media/HDD/Henrik/Bilder/Hintergrund//metadata.desktop"
No metadata file in the package, expected it at: "/media/HDD/Henrik/Bilder/Hintergrund//metadata.desktop"
kdeinit5: Got EXEC_NEW '/usr/lib/x86_64-linux-gnu/qt5/plugins/kf5/kio/desktop.so' from launcher.
kdeinit5: preparing to launch '/usr/lib/x86_64-linux-gnu/qt5/plugins/kf5/kio/desktop.so'
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen: Requesting missing EDID for outputs (713)
bluedevil: ObexManager operational changed true
bluedevil: ObexAgent registered
Couldn't find node arrow-down. Skipping rendering.
Couldn't find node arrow-up. Skipping rendering.
Couldn't find node arrow-right. Skipping rendering.
Couldn't find node arrow-left. Skipping rendering.
akonadi.collectionattributetable                   OK
akonadi.collectionmimetyperelation                 OK
akonadi.collectionpimitemrelation                  OK
akonadi.collectiontable                            OK
akonadi.flagtable                                  OK
akonadi.mimetypetable                              OK
akonadi.parttable                                  OK
akonadi.parttypetable                              OK
akonadi.pimitemflagrelation                        OK
akonadi.pimitemtable                               OK
akonadi.pimitemtagrelation                         OK
akonadi.relationtable                              OK
akonadi.relationtypetable                          OK
akonadi.resourcetable                              OK
akonadi.schemaversiontable                         OK
akonadi.tagattributetable                          OK
akonadi.tagremoteidresourcerelationtable           OK
akonadi.tagtable                                   OK
akonadi.tagtypetable                               OK
mysql.columns_priv                                 OK
mysql.db                                           OK
mysql.engine_cost                                  OK
mysql.event                                        OK
mysql.func                                         OK
mysql.general_log                                  OK
mysql.gtid_executed                                OK
mysql.help_category                                OK
mysql.help_keyword                                 OK
mysql.help_relation                                OK
mysql.help_topic                                   OK
mysql.innodb_index_stats                           OK
mysql.innodb_table_stats                           OK
mysql.ndb_binlog_index                             OK
mysql.plugin                                       OK
mysql.proc                                         OK
mysql.procs_priv                                   OK
mysql.proxies_priv                                 OK
mysql.server_cost                                  OK
mysql.servers                                      OK
mysql.slave_master_info                            OK
mysql.slave_relay_log_info                         OK
mysql.slave_worker_info                            OK
mysql.slow_log                                     OK
mysql.tables_priv                                  OK
mysql.time_zone                                    OK
mysql.time_zone_leap_second                        OK
mysql.time_zone_name                               OK
mysql.time_zone_transition                         OK
mysql.time_zone_transition_type                    OK
mysql.user                                         OK
sys.sys_config                                     OK
MySQL version OK (required "5.1" , available "5.7" )
Database "akonadi" opened using driver "QMYSQL"
DbInitializer::run()
checking table  "SchemaVersionTable"
checking table  "ResourceTable"
checking table  "CollectionTable"
checking table  "MimeTypeTable"
checking table  "PimItemTable"
checking table  "FlagTable"
checking table  "PartTypeTable"
checking table  "PartTable"
checking table  "CollectionAttributeTable"
checking table  "TagTypeTable"
checking table  "TagTable"
checking table  "TagAttributeTable"
checking table  "TagRemoteIdResourceRelationTable"
checking table  "RelationTypeTable"
checking table  "RelationTable"
checking table  "PimItemFlagRelation"
checking table  "PimItemTagRelation"
checking table  "CollectionMimeTypeRelation"
checking table  "CollectionPimItemRelation"
DbInitializer::run() done
skipping update 2
skipping update 3
skipping update 4
skipping update 8
skipping update 10
skipping update 12
skipping update 13
skipping update 14
skipping update 15
skipping update 16
skipping update 17
skipping update 18
skipping update 19
skipping update 20
skipping update 21
skipping update 22
skipping update 23
skipping update 24
skipping update 25
skipping update 26
skipping update 28
skipping update 30
skipping update 31
kdeinit5: Got EXEC_NEW '/usr/lib/x86_64-linux-gnu/qt5/plugins/kf5/kio/file.so' from launcher.
kdeinit5: preparing to launch '/usr/lib/x86_64-linux-gnu/qt5/plugins/kf5/kio/file.so'
Running Steam on ubuntu 16.04 64-bit
STEAM_RUNTIME is enabled automatically
Couldn't find node arrow-left. Skipping rendering.
Couldn't find node arrow-right. Skipping rendering.
Couldn't find node arrow-up. Skipping rendering.
Couldn't find node arrow-down. Skipping rendering.
QObject::connect: invalid null parameter
org.kde.baloo: "/org/kde/solid/udev/sys/devices/virtual/net/ham0"
QObject::connect: invalid null parameter
Indexes successfully created
search paths:  ("lib/x86_64-linux-gnu", "lib/x86_64-linux-gnu/qt5/plugins/", "lib/x86_64-linux-gnu/kf5/", "lib/x86_64-linux-gnu/kf5/plugins/", "/usr/lib/qt5/plugins/", "/usr/lib/x86_64-linux-gnu/qt5/plugins", "/usr/bin")
SEARCH MANAGER: searching in  "lib/x86_64-linux-gnu/akonadi" : ()
SEARCH MANAGER: searching in  "lib/x86_64-linux-gnu/qt5/plugins//akonadi" : ()
SEARCH MANAGER: searching in  "lib/x86_64-linux-gnu/kf5//akonadi" : ()
SEARCH MANAGER: searching in  "lib/x86_64-linux-gnu/kf5/plugins//akonadi" : ()
SEARCH MANAGER: searching in  "/usr/lib/qt5/plugins//akonadi" : ()
SEARCH MANAGER: searching in  "/usr/lib/x86_64-linux-gnu/qt5/plugins/akonadi" : ()
SEARCH MANAGER: searching in  "/usr/bin/akonadi" : ()
DataStore::unhideAllPimItems()
Search loop is waiting, will wake again in -1 ms
Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
Database "akonadi" opened using driver "QMYSQL"
Database "akonadi" opened using driver "QMYSQL"
Akonadi server is already starting up
PLUGINS:  "/usr/share/akonadi/agents"
PLUGINS:  ("akonadibalooindexingagent.desktop", "akonotesresource.desktop", "archivemailagent.desktop", "birthdaysresource.desktop", "contactsresource.desktop", "davgroupwareresource.desktop", "followupreminder.desktop", "googlecalendarresource.desktop", "googlecontactsresource.desktop", "icaldirresource.desktop", "icalresource.desktop", "imapresource.desktop", "invitationsagent.desktop", "kalarmdirresource.desktop", "kalarmresource.desktop", "kolabresource.desktop", "maildirresource.desktop", "maildispatcheragent.desktop", "mailfilteragent.desktop", "mboxresource.desktop", "migrationagent.desktop", "mixedmaildirresource.desktop", "newmailnotifieragent.desktop", "notesagent.desktop", "notesresource.desktop", "openxchangeresource.desktop", "pop3resource.desktop", "sendlateragent.desktop", "vcarddirresource.desktop", "vcardresource.desktop")
search paths:  ("/home/henrik/bin", "/home/henrik/.local/bin", "/usr/local/sbin", "/usr/local/bin", "/usr/sbin", "/usr/bin", "/sbin", "/bin", "/usr/games", "/usr/local/games", "/snap/bin")
PLUGINS inserting:  "akonadi_baloo_indexer" 0 ("Unique", "Autostart")
PLUGINS inserting:  "akonadi_akonotes_resource" 1 ("Resource", "Notes")
PLUGINS inserting:  "akonadi_archivemail_agent" 0 ("Unique", "Autostart")
PLUGINS inserting:  "akonadi_birthdays_resource" 0 ("Resource", "Unique")
PLUGINS inserting:  "akonadi_contacts_resource" 1 ("Resource")
PLUGINS inserting:  "akonadi_davgroupware_resource" 0 ("Resource", "FreeBusyProvider")
PLUGINS inserting:  "akonadi_followupreminder_agent" 0 ("Unique", "Autostart")
PLUGINS inserting:  "akonadi_googlecalendar_resource" 0 ("Resource", "FreeBusyProvider")
PLUGINS inserting:  "akonadi_googlecontacts_resource" 0 ("Resource")
PLUGINS inserting:  "akonadi_icaldir_resource" 0 ("Resource")
PLUGINS inserting:  "akonadi_ical_resource" 1 ("Resource")
PLUGINS inserting:  "akonadi_imap_resource" 0 ("Resource")
PLUGINS inserting:  "akonadi_invitations_agent" 0 ("NoConfig")
PLUGINS inserting:  "akonadi_kalarm_dir_resource" 0 ("Resource")
PLUGINS inserting:  "akonadi_kalarm_resource" 0 ("Resource")
PLUGINS inserting:  "akonadi_kolab_resource" 0 ("Resource")
PLUGINS inserting:  "akonadi_maildir_resource" 1 ("Resource")
PLUGINS inserting:  "akonadi_maildispatcher_agent" 0 ("Unique", "Autostart")
PLUGINS inserting:  "akonadi_mailfilter_agent" 0 ("Unique", "Autostart", "NoConfig")
PLUGINS inserting:  "akonadi_mbox_resource" 0 ("Resource")
PLUGINS inserting:  "akonadi_migration_agent" 0 ("Unique", "Autostart")
PLUGINS inserting:  "akonadi_mixedmaildir_resource" 0 ("Resource")
PLUGINS inserting:  "akonadi_newmailnotifier_agent" 0 ("Unique", "Autostart")
PLUGINS inserting:  "akonadi_notes_agent" 0 ("Unique", "Autostart")
PLUGINS inserting:  "akonadi_notes_resource" 0 ("Resource")
PLUGINS inserting:  "akonadi_openxchange_resource" 0 ("Resource")
PLUGINS inserting:  "akonadi_pop3_resource" 0 ("Resource", "NeedsNetwork")
PLUGINS inserting:  "akonadi_sendlater_agent" 0 ("Unique", "Autostart")
PLUGINS inserting:  "akonadi_vcarddir_resource" 0 ("Resource")
PLUGINS inserting:  "akonadi_vcard_resource" 0 ("Resource")
"akonadi_akonotes_resource_0"
Akonadi server is already starting up
Akonadi server is already starting up
Akonadi server is already starting up
"akonadi_birthdays_resource"
Akonadi server is already starting up
Akonadi server is already starting up
Akonadi server is already starting up
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
Akonadi server is already starting up
Akonadi server is already starting up
Akonadi server is already starting up
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
"akonadi_followupreminder_agent"
Akonadi server is already starting up
Akonadi server is already starting up
localListDone:  false  deliveryDone:  true
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Akonadi server is already starting up
Akonadi server is already starting up
Akonadi server is already starting up
Database "akonadi" opened using driver "QMYSQL"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Akonadi server is now operational.
============== SESSION: Server state changed to  2
QDBusObjectPath Akonadi::Server::NotificationManager::subscribe(const QString&, bool) Akonadi::Server::NotificationManager(0x1fa5ab0) "akonadi_birthdays_resource_1946_9aBKvZ" false
"/subscriber/akonadi_birthdays_resource_1946_9aBKvZ"
QDBusObjectPath Akonadi::Server::NotificationManager::subscribe(const QString&, bool) Akonadi::Server::NotificationManager(0x1fa5ab0) "akonadi_birthdays_resource_1946_gWFnoc" false
"/subscriber/akonadi_birthdays_resource_1946_gWFnoc"
"akonadi_contacts_resource_0"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
"akonadi_ical_resource_0"
Database "akonadi" opened using driver "QMYSQL"
QDBusObjectPath Akonadi::Server::NotificationManager::subscribe(const QString&, bool) Akonadi::Server::NotificationManager(0x1fa5ab0) "akonadi_contacts_resource_0_1947_cuhV5a" false
"/subscriber/akonadi_contacts_resource_0_1947_cuhV5a"
"akonadi_maildir_resource_0"
QDBusObjectPath Akonadi::Server::NotificationManager::subscribe(const QString&, bool) Akonadi::Server::NotificationManager(0x1fa5ab0) "akonadi_ical_resource_0_1949_kilL5N" false
"/subscriber/akonadi_ical_resource_0_1949_kilL5N"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
Installing breakpad exception handler for appid(steam)/version(1493162727)
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
"akonadi_maildispatcher_agent"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
"akonadi_archivemail_agent"
QDBusObjectPath Akonadi::Server::NotificationManager::subscribe(const QString&, bool) Akonadi::Server::NotificationManager(0x1fa5ab0) "akonadi_maildir_resource_0_1950_igrXU7" false
"/subscriber/akonadi_maildir_resource_0_1950_igrXU7"
QDBusObjectPath Akonadi::Server::NotificationManager::subscribe(const QString&, bool) Akonadi::Server::NotificationManager(0x1fa5ab0) "akonadi_maildispatcher_agent_1951_U7nxUZ" false
"/subscriber/akonadi_maildispatcher_agent_1951_U7nxUZ"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
============== SESSION: Server state changed to  2
QDBusObjectPath Akonadi::Server::NotificationManager::subscribe(const QString&, bool) Akonadi::Server::NotificationManager(0x1fa5ab0) "akonadi_archivemail_agent_1943_gGSHzg" false
QDBusObjectPath Akonadi::Server::NotificationManager::subscribe(const QString&, bool) Akonadi::Server::NotificationManager(0x1fa5ab0) "akonadi_followupreminder_agent_1948_SuxcxJ" false
"/subscriber/akonadi_followupreminder_agent_1948_SuxcxJ"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
"/subscriber/akonadi_archivemail_agent_1943_gGSHzg"
============== SESSION: Server state changed to  2
============== SESSION: Server state changed to  2
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
QDBusObjectPath Akonadi::Server::NotificationManager::subscribe(const QString&, bool) Akonadi::Server::NotificationManager(0x1fa5ab0) "korgac_1676_XflVU2" false
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
"/subscriber/korgac_1676_XflVU2"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
()
"akonadi_migration_agent"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
============== SESSION: Server state changed to  2
QDBusObjectPath Akonadi::Server::NotificationManager::subscribe(const QString&, bool) Akonadi::Server::NotificationManager(0x1fa5ab0) "akonadi_akonotes_resource_0_1942_MhXRBk" false
"/subscriber/akonadi_akonotes_resource_0_1942_MhXRBk"
localListDone:  true  deliveryDone:  true
Nothing to do
QDBusObjectPath Akonadi::Server::NotificationManager::subscribe(const QString&, bool) Akonadi::Server::NotificationManager(0x1fa5ab0) "akonadi_migration_agent_1975_XdqSKV" false
"/subscriber/akonadi_migration_agent_1975_XdqSKV"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
org.kde.akonadi.ETM: GEN true false true
org.kde.akonadi.ETM: collection: QVector()
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
done
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Database "akonadi" opened using driver "QMYSQL"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen.kded: Change detected
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Database "akonadi" opened using driver "QMYSQL"
Database "akonadi" opened using driver "QMYSQL"
New notification bus: "/subscriber/korgac_1676_XflVU2"
Database "akonadi" opened using driver "QMYSQL"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
org.kde.akonadi.ETM: Subtree:  8 QSet(8)
org.kde.akonadi.ETM: collection: "akonadi_ical_resource_0"
org.kde.akonadi.ETM: Subtree:  2 QSet(2)
org.kde.akonadi.ETM: collection: "Geburtstage und Jahrestage"
org.kde.akonadi.ETM: Fetch job took  38 msec
org.kde.akonadi.ETM: was collection fetch job: collections: 2
org.kde.akonadi.ETM: first fetched collection: "Geburtstage und Jahrestage"
Database "akonadi" opened using driver "QMYSQL"
Database "akonadi" opened using driver "QMYSQL"
New notification bus: "/subscriber/akonadi_birthdays_resource_1946_9aBKvZ"
New notification bus: "/subscriber/akonadi_birthdays_resource_1946_gWFnoc"
org.kde.akonadi.ETM: Fetch job took  12 msec
org.kde.akonadi.ETM: was item fetch job: items: 0
Database "akonadi" opened using driver "QMYSQL"
New notification bus: "/subscriber/akonadi_akonotes_resource_0_1942_MhXRBk"
org.kde.akonadi.ETM: Fetch job took  15 msec
org.kde.akonadi.ETM: was item fetch job: items: 0
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Cannot resume a timer that is not paused.
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
"akonadi_newmailnotifier_agent"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Database "akonadi" opened using driver "QMYSQL"
Database "akonadi" opened using driver "QMYSQL"
Database "akonadi" opened using driver "QMYSQL"
New notification bus: "/subscriber/akonadi_followupreminder_agent_1948_SuxcxJ"
New notification bus: "/subscriber/akonadi_migration_agent_1975_XdqSKV"
QDBusObjectPath Akonadi::Server::NotificationManager::subscribe(const QString&, bool) Akonadi::Server::NotificationManager(0x1fa5ab0) "akonadi_newmailnotifier_agent_1976_7eiou7" false
"/subscriber/akonadi_newmailnotifier_agent_1976_7eiou7"
"akonadi_sendlater_agent"
Database "akonadi" opened using driver "QMYSQL"
New notification bus: "/subscriber/akonadi_contacts_resource_0_1947_cuhV5a"
Database "akonadi" opened using driver "QMYSQL"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
QDBusObjectPath Akonadi::Server::NotificationManager::subscribe(const QString&, bool) Akonadi::Server::NotificationManager(0x1fa5ab0) "akonadi_sendlater_agent_2016_VbwI5M" false
"/subscriber/akonadi_sendlater_agent_2016_VbwI5M"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
"akonadi_notes_agent"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
QDBusObjectPath Akonadi::Server::NotificationManager::subscribe(const QString&, bool) Akonadi::Server::NotificationManager(0x1fa5ab0) "akonadi_notes_agent_1986_8xRmHP" false
"/subscriber/akonadi_notes_agent_1986_8xRmHP"
Database "akonadi" opened using driver "QMYSQL"
New notification bus: "/subscriber/akonadi_ical_resource_0_1949_kilL5N"
Database "akonadi" opened using driver "QMYSQL"
QDBusObjectPath Akonadi::Server::NotificationManager::subscribe(const QString&, bool) Akonadi::Server::NotificationManager(0x1fa5ab0) "akonadi_maildispatcher_agent_1951_ZFiBeA" false
"/subscriber/akonadi_maildispatcher_agent_1951_ZFiBeA"
"akonadi_mailfilter_agent"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
QDBusObjectPath Akonadi::Server::NotificationManager::subscribe(const QString&, bool) Akonadi::Server::NotificationManager(0x1fa5ab0) "akonadi_maildispatcher_agent_1951_tPjd3S" false
"/subscriber/akonadi_maildispatcher_agent_1951_tPjd3S"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
Installing breakpad exception handler for appid(steam)/version(1493162727)
QDBusObjectPath Akonadi::Server::NotificationManager::subscribe(const QString&, bool) Akonadi::Server::NotificationManager(0x1fa5ab0) "akonadi_mailfilter_agent_1963_Yq8MaV" false
"/subscriber/akonadi_mailfilter_agent_1963_Yq8MaV"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Database "akonadi" opened using driver "QMYSQL"
New notification bus: "/subscriber/akonadi_maildir_resource_0_1950_igrXU7"
Database "akonadi" opened using driver "QMYSQL"
localListDone:  false  deliveryDone:  true
log_kidentitymanagement: IdentityManager: There was no default identity. Marking first one as default.
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
kdeinit5: Got EXEC_NEW '/usr/lib/x86_64-linux-gnu/qt5/plugins/kf5/kio/file.so' from launcher.
kdeinit5: preparing to launch '/usr/lib/x86_64-linux-gnu/qt5/plugins/kf5/kio/file.so'
localListDone:  true  deliveryDone:  true
Nothing to do
log_kidentitymanagement: IdentityManager: There was no default identity. Marking first one as default.
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
"Archive Mail Kernel ETM"
Invalid URL: QUrl("/home/henrik/.local/share/apps/korganizer/std.ics")
"Die Datei „/home/henrik/.local/share/apps/korganizer/std.ics“ lässt sich nicht laden."
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
QDBusObjectPath Akonadi::Server::NotificationManager::subscribe(const QString&, bool) Akonadi::Server::NotificationManager(0x1fa5ab0) "akonadi_archivemail_agent_1943_PuPuFX" false
"/subscriber/akonadi_archivemail_agent_1943_PuPuFX"
Database "akonadi" opened using driver "QMYSQL"
Database "akonadi" opened using driver "QMYSQL"
New notification bus: "/subscriber/akonadi_maildispatcher_agent_1951_U7nxUZ"
Database "akonadi" opened using driver "QMYSQL"
Database "akonadi" opened using driver "QMYSQL"
New notification bus: "/subscriber/akonadi_maildispatcher_agent_1951_ZFiBeA"
QDBusObjectPath Akonadi::Server::NotificationManager::subscribe(const QString&, bool) Akonadi::Server::NotificationManager(0x1fa5ab0) "akonadi_archivemail_agent_1943_d6AaCb" false
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
Read defaultResourceId "akonadi_maildir_resource_0" from config.
Found resource "akonadi_maildir_resource_0"
"/subscriber/akonadi_archivemail_agent_1943_d6AaCb"
Database "akonadi" opened using driver "QMYSQL"
New notification bus: "/subscriber/akonadi_newmailnotifier_agent_1976_7eiou7"
Database "akonadi" opened using driver "QMYSQL"
New notification bus: "/subscriber/akonadi_maildispatcher_agent_1951_tPjd3S"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
Fetched 7 collections.
Fetched root collection 4 and 7 local folders (total 7 collections).
resourceId "akonadi_maildir_resource_0"
All done! Comitting.
Emitting changed for "akonadi_maildir_resource_0"
Emitting defaultFoldersChanged.
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen.kded: Change detected
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
org.kde.akonadi.ETM: GEN true false false
org.kde.akonadi.ETM: collection: QVector()
org.kde.akonadi.ETM: 
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Database "akonadi" opened using driver "QMYSQL"
Database "akonadi" opened using driver "QMYSQL"
New notification bus: "/subscriber/akonadi_archivemail_agent_1943_PuPuFX"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Database "akonadi" opened using driver "QMYSQL"
Database "akonadi" opened using driver "QMYSQL"
New notification bus: "/subscriber/akonadi_archivemail_agent_1943_gGSHzg"
Database "akonadi" opened using driver "QMYSQL"
New notification bus: "/subscriber/akonadi_archivemail_agent_1943_d6AaCb"
org.kde.akonadi.ETM: Subtree:  4 QSet(11, 4, 6, 7, 12, 13, 14)
org.kde.akonadi.ETM: Fetch job took  22 msec
org.kde.akonadi.ETM: was collection fetch job: collections: 7
org.kde.akonadi.ETM: first fetched collection: "Lokale Ordner"
org.kde.akonadi.ETM: collection: QVector()
org.kde.akonadi.ETM: Fetch job took  24 msec
org.kde.akonadi.ETM: was collection fetch job: collections: 6
org.kde.akonadi.ETM: first fetched collection: "Search"
org.kde.akonadi.ETM: Fetch job took  2 msec
org.kde.akonadi.ETM: was collection fetch job: collections: 0
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Database "akonadi" opened using driver "QMYSQL"
Database "akonadi" opened using driver "QMYSQL"
New notification bus: "/subscriber/akonadi_sendlater_agent_2016_VbwI5M"
"KNotes Session"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
QDBusObjectPath Akonadi::Server::NotificationManager::subscribe(const QString&, bool) Akonadi::Server::NotificationManager(0x1fa5ab0) "akonadi_notes_agent_1986_tYUAIz" false
"/subscriber/akonadi_notes_agent_1986_tYUAIz"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
log_kidentitymanagement: IdentityManager: There was no default identity. Marking first one as default.
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Database "akonadi" opened using driver "QMYSQL"
New notification bus: "/subscriber/akonadi_notes_agent_1986_8xRmHP"
org.kde.akonadi.ETM: GEN true false true
org.kde.akonadi.ETM: collection: QVector()
Database "akonadi" opened using driver "QMYSQL"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Database "akonadi" opened using driver "QMYSQL"
Database "akonadi" opened using driver "QMYSQL"
New notification bus: "/subscriber/akonadi_notes_agent_1986_tYUAIz"
"MailFilter Kernel ETM"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
QDBusObjectPath Akonadi::Server::NotificationManager::subscribe(const QString&, bool) Akonadi::Server::NotificationManager(0x1fa5ab0) "akonadi_mailfilter_agent_1963_IHVqNF" false
"/subscriber/akonadi_mailfilter_agent_1963_IHVqNF"
org.kde.akonadi.ETM: Subtree:  10 QSet(10)
org.kde.akonadi.ETM: collection: "Notizen"
org.kde.akonadi.ETM: Fetch job took  10 msec
org.kde.akonadi.ETM: was collection fetch job: collections: 1
org.kde.akonadi.ETM: first fetched collection: "Notizen"
org.kde.akonadi.ETM: Fetch job took  1 msec
org.kde.akonadi.ETM: was item fetch job: items: 0
localListDone:  false  deliveryDone:  true
localListDone:  true  deliveryDone:  true
Nothing to do
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
QDBusObjectPath Akonadi::Server::NotificationManager::subscribe(const QString&, bool) Akonadi::Server::NotificationManager(0x1fa5ab0) "akonadi_mailfilter_agent_1963_3nM9ek" false
"/subscriber/akonadi_mailfilter_agent_1963_3nM9ek"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
org.kde.akonadi.ETM: GEN true false false
org.kde.akonadi.ETM: collection: QVector()
org.kde.akonadi.ETM: 
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Database "akonadi" opened using driver "QMYSQL"
Database "akonadi" opened using driver "QMYSQL"
New notification bus: "/subscriber/akonadi_mailfilter_agent_1963_Yq8MaV"
Database "akonadi" opened using driver "QMYSQL"
Database "akonadi" opened using driver "QMYSQL"
New notification bus: "/subscriber/akonadi_mailfilter_agent_1963_3nM9ek"
New notification bus: "/subscriber/akonadi_mailfilter_agent_1963_IHVqNF"
Database "akonadi" opened using driver "QMYSQL"
QDBusObjectPath Akonadi::Server::NotificationManager::subscribe(const QString&, bool) Akonadi::Server::NotificationManager(0x1fa5ab0) "akonadi_mailfilter_agent_1963_3DiqOH" false
"/subscriber/akonadi_mailfilter_agent_1963_3DiqOH"
connectToServer "/tmp/akonadi-henrik.I2GqBs/akonadiserver.socket"
org.kde.akonadi.ETM: Subtree:  4 QSet(4, 6, 7, 11, 12, 13, 14)
org.kde.akonadi.ETM: Fetch job took  11 msec
org.kde.akonadi.ETM: was collection fetch job: collections: 7
org.kde.akonadi.ETM: first fetched collection: "Lokale Ordner"
Connected to "Akonadi" , using protocol version 52
Server says: "Not Really IMAP server"
Database "akonadi" opened using driver "QMYSQL"
New notification bus: "/subscriber/akonadi_mailfilter_agent_1963_3DiqOH"
org.kde.akonadi.ETM: collection: QVector()
org.kde.akonadi.ETM: Fetch job took  13 msec
org.kde.akonadi.ETM: was collection fetch job: collections: 6
org.kde.akonadi.ETM: first fetched collection: "Search"
org.kde.akonadi.ETM: Fetch job took  0 msec
org.kde.akonadi.ETM: was collection fetch job: collections: 0
Installing breakpad exception handler for appid(steam)/version(1493162727)
file:///usr/share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/main.qml:37: TypeError: Cannot read property 'DateTime' of undefined
Both point size and pixel size set. Using pixel size.
Both point size and pixel size set. Using pixel size.
Both point size and pixel size set. Using pixel size.
Both point size and pixel size set. Using pixel size.
Both point size and pixel size set. Using pixel size.
Both point size and pixel size set. Using pixel size.
[0508/205439.896696:WARNING:audio_manager.cc(317)] Multiple instances of AudioManager detected
[0508/205439.896902:WARNING:audio_manager.cc(278)] Multiple instances of AudioManager detected
kscreen.kded: Saving current config to file
kscreen.kded: Calculating config ID for KScreen::Config(0x1e53520)
kscreen.kded: 	Part of the Id:  "e410675549091dbaf134c3f860fe4ba0"
kscreen.kded: 	Config ID: "2d55c4f7a1014c1c83f284ad763ea948"
kscreen.kded: Config saved on:  "/home/henrik/.local/share/kscreen/2d55c4f7a1014c1c83f284ad763ea948"
Both point size and pixel size set. Using pixel size.
Both point size and pixel size set. Using pixel size.
file:///usr/share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/DigitalClock.qml:444:5: QML Text: Cannot anchor to a null item.
Both point size and pixel size set. Using pixel size.
Both point size and pixel size set. Using pixel size.
Installing breakpad exception handler for appid(steam)/version(1493162727)
Installing breakpad exception handler for appid(steam)/version(1493162727)
Installing breakpad exception handler for appid(steam)/version(1493162727)
kdeinit5: PID 1646 terminated.
Registering "org.kde.StatusNotifierHost-1623" as system tray
Known plasmoid ids: QHash(("org.kde.discovernotifier", 16)("org.kde.plasma.printmanager", 18)("org.kde.plasma.notifications", 17)("org.kde.kdeconnect", 20)("org.kde.plasma.devicenotifier", 19)("org.kde.plasma.clipboard", 22)("org.kde.plasma.volume", 21)("org.kde.ktp-contactlist", 24)("org.kde.plasma.battery", 23)("org.kde.plasma.networkmanagement", 25))
org.kde.plasma: unversioned plugin detected, may result in instability
<Unknown File>: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
<Unknown File>: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
<Unknown File>: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
<Unknown File>: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
Installing breakpad exception handler for appid(steam)/version(1493162727)
Installing breakpad exception handler for appid(steam)/version(1493162727)
Installing breakpad exception handler for appid(steam)/version(1493162727)
Installing breakpad exception handler for appid(steam)/version(1493162727)
Installing breakpad exception handler for appid(steam)/version(1493162727)
Installing breakpad exception handler for appid(steam)/version(1493162727)
Installing breakpad exception handler for appid(steam)/version(1493162727)
should recheck... QProcess(0x29fe690) 0
file:///usr/share/plasma/plasmoids/org.kde.plasma.systemtray/contents/ui/TaskDelegate.qml:156: TypeError: Cannot read property 'taskItem' of undefined
<Unknown File>: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
<Unknown File>: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
<Unknown File>: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
<Unknown File>: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
Notifications service registered
file:///usr/share/plasma/plasmoids/org.kde.plasma.notifications/contents/ui/Notifications.qml:135: TypeError: Cannot read property 'IdleTime' of undefined
XSync seems available and ready
XSync Inited
Supported, init completed
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Button.qml:96: TypeError: Cannot read property of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Button.qml:96: TypeError: Cannot read property of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:37: TypeError: Cannot read property 'flat' of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:38: TypeError: Cannot read property 'hovered' of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:124: TypeError: Cannot read property 'text' of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Styles/Base/ButtonStyle.qml:83: TypeError: Cannot read property 'menu' of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:37: TypeError: Cannot read property 'flat' of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:38: TypeError: Cannot read property 'hovered' of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:124: TypeError: Cannot read property 'text' of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Styles/Base/ButtonStyle.qml:83: TypeError: Cannot read property 'menu' of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Button.qml:96: TypeError: Cannot read property of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Button.qml:96: TypeError: Cannot read property of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:37: TypeError: Cannot read property 'flat' of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:38: TypeError: Cannot read property 'hovered' of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:124: TypeError: Cannot read property 'text' of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Styles/Base/ButtonStyle.qml:83: TypeError: Cannot read property 'menu' of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:37: TypeError: Cannot read property 'flat' of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:38: TypeError: Cannot read property 'hovered' of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:124: TypeError: Cannot read property 'text' of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Styles/Base/ButtonStyle.qml:83: TypeError: Cannot read property 'menu' of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Button.qml:96: TypeError: Cannot read property of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Button.qml:96: TypeError: Cannot read property of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:37: TypeError: Cannot read property 'flat' of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:38: TypeError: Cannot read property 'hovered' of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Styles/Plasma/ToolButtonStyle.qml:124: TypeError: Cannot read property 'text' of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Styles/Base/ButtonStyle.qml:83: TypeError: Cannot read property 'menu' of null
file:///usr/share/plasma/plasmoids/org.kde.plasma.systemtray/contents/ui/TaskDelegate.qml:156: TypeError: Cannot read property 'taskItem' of undefined
org.kde.plasma: unversioned plugin detected, may result in instability
<Unknown File>: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
<Unknown File>: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
<Unknown File>: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
<Unknown File>: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
libkcups: Create-Printer-Subscriptions last error: 0 successful-ok
libkcups: Get-Jobs last error: 0 successful-ok
libkcups: Get-Jobs last error: 0 successful-ok
file:///usr/share/plasma/plasmoids/org.kde.plasma.systemtray/contents/ui/TaskDelegate.qml:156: TypeError: Cannot read property 'taskItem' of undefined
org.kde.plasma: unversioned plugin detected, may result in instability
<Unknown File>: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
<Unknown File>: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
<Unknown File>: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
<Unknown File>: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.

** (steam:2038): WARNING **: Unknown device type 14

** (steam:2038): WARNING **: Could not create object for /org/freedesktop/NetworkManager/Devices/1: unknown object type

** (steam:2038): WARNING **: Unknown device type 16

** (steam:2038): WARNING **: Could not create object for /org/freedesktop/NetworkManager/Devices/2: unknown object type
Installing breakpad exception handler for appid(steam)/version(1493162727)
file:///usr/share/plasma/plasmoids/org.kde.plasma.systemtray/contents/ui/TaskDelegate.qml:156: TypeError: Cannot read property 'taskItem' of undefined
org.kde.plasma: unversioned plugin detected, may result in instability
org.kde.plasma: unversioned plugin detected, may result in instability
<Unknown File>: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
<Unknown File>: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
<Unknown File>: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
<Unknown File>: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
org.kde.plasma.pulseaudio: Attempting connection to PulseAudio sound daemon
org.kde.plasma.pulseaudio: QHash((262, "Volume")(263, "Muted")(264, "HasVolume")(265, "VolumeWritable")(266, "Name")(267, "Description")(268, "CardIndex")(269, "Ports")(270, "ActivePortIndex")(257, "Index")(258, "PulseObject")(259, "ObjectName")(260, "Index")(261, "Properties"))
org.kde.plasma.pulseaudio: QHash((262, "Volume")(263, "Muted")(264, "HasVolume")(265, "VolumeWritable")(266, "Name")(267, "Description")(268, "CardIndex")(269, "Ports")(270, "ActivePortIndex")(257, "Index")(258, "PulseObject")(259, "ObjectName")(260, "Index")(261, "Properties"))

** (steam:2038): WARNING **: Ignoring invalid property 'secondaries'

** (steam:2038): WARNING **: Ignoring invalid property 'route-data'

** (steam:2038): WARNING **: Ignoring invalid property 'address-data'

** (steam:2038): WARNING **: Ignoring invalid property 'route-data'

** (steam:2038): WARNING **: Ignoring invalid property 'address-data'
file:///usr/lib/x86_64-linux-gnu/qt5/qml/org/kde/plasma/extras/ScrollArea.qml:48: Error: Cannot assign to non-existent property "interactive"
Registering "org.kde.StatusNotifierItem-1655-1/StatusNotifierItem" to system tray
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/ScrollView.qml:286: TypeError: Cannot read property '__wheelScrollLines' of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Private/ScrollViewHelper.qml:66: TypeError: Cannot read property 'padding' of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Private/ScrollViewHelper.qml:65: TypeError: Cannot read property 'padding' of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Private/ScrollViewHelper.qml:64: TypeError: Cannot read property 'padding' of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Private/ScrollViewHelper.qml:63: TypeError: Cannot read property 'padding' of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Private/ScrollViewHelper.qml:114: TypeError: Cannot read property 'corner' of null
file:///usr/lib/x86_64-linux-gnu/qt5/qml/QtQuick/Controls/Private/ScrollBar.qml:91: TypeError: Cannot read property of null
org.kde.plasma: unversioned plugin detected, may result in instability
file:///usr/share/plasma/plasmoids/org.kde.plasma.volume/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.volume/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.volume/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.volume/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
libkcups: 0
libkcups: 0
Registering "org.kde.StatusNotifierItem-1655-1/StatusNotifierItem"
ST : DBus service  "org.kde.Solid.PowerManagement" appeared. Loading  "org.kde.plasma.battery"
org.kde.plasma: unversioned plugin detected, may result in instability
file:///usr/share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/clipboard.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/clipboard.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/clipboard.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/clipboard.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
Generating new string page texture 3: 384x256, total string texture memory is 393,22 KB
ST : DBus service  "org.freedesktop.Telepathy.MissionControl5" appeared. Loading  "org.kde.ktp-contactlist"
org.kde.plasma: unversioned plugin detected, may result in instability
file:///usr/share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/clipboard.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/clipboard.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/clipboard.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.clipboard/contents/ui/clipboard.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
kdeinit5: Got EXEC_NEW '/usr/lib/x86_64-linux-gnu/qt5/plugins/kf5/kio/file.so' from launcher.
kdeinit5: preparing to launch '/usr/lib/x86_64-linux-gnu/qt5/plugins/kf5/kio/file.so'
kdeinit5: Got EXEC_NEW '/usr/lib/x86_64-linux-gnu/qt5/plugins/kf5/kio/trash.so' from launcher.
kdeinit5: preparing to launch '/usr/lib/x86_64-linux-gnu/qt5/plugins/kf5/kio/trash.so'
Both point size and pixel size set. Using pixel size.
Both point size and pixel size set. Using pixel size.
Could not resolve property : radialGradient4782
Could not resolve property : radialGradient4857
Could not resolve property : radialGradient4883
Could not resolve property : radialGradient4885
Both point size and pixel size set. Using pixel size.
Both point size and pixel size set. Using pixel size.
org.kde.plasma.pulseaudio: state callback
<Unknown File>: QML QQuickLayoutAttached: Binding loop detected for property "preferredWidth"
Installing breakpad exception handler for appid(steam)/version(1493162727)
QDBusConnection: name 'org.kde.kdeconnect' had owner '' but we thought it was ':1.55'

(steam:2038): Gtk-WARNING **: Im Modulpfad »qtcurve« konnte keine Themen-Engine gefunden werden,

(steam:2038): Gtk-WARNING **: Im Modulpfad »qtcurve« konnte keine Themen-Engine gefunden werden,
powerdevil: Screen brightness value:  40
powerdevil: Screen brightness value max:  100
powerdevil: Screen brightness value:  40
powerdevil: Screen brightness value max:  100
ST : DBus service  "org.freedesktop.NetworkManager" appeared. Loading  "org.kde.plasma.networkmanagement"
org.kde.plasma: unversioned plugin detected, may result in instability
file:///usr/share/plasma/plasmoids/org.kde.ktp-contactlist/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.ktp-contactlist/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.ktp-contactlist/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.ktp-contactlist/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
<Unknown File>: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
<Unknown File>: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
<Unknown File>: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
<Unknown File>: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
networkmanager-qt: void NetworkManager::NetworkManagerPrivate::propertiesChanged(const QVariantMap&) Unhandled property "AllDevices"
networkmanager-qt: void NetworkManager::NetworkManagerPrivate::propertiesChanged(const QVariantMap&) Unhandled property "Devices"
networkmanager-qt: void NetworkManager::NetworkManagerPrivate::propertiesChanged(const QVariantMap&) Unhandled property "GlobalDnsConfiguration"
Registering ":1.56/org/ayatana/NotificationItem/steam" to system tray
initialization OK, home trash dir: "/home/henrik/.local/share/Trash"
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
Registering ":1.56/org/ayatana/NotificationItem/steam"
systemtray: ST new task  ":1.56/org/ayatana/NotificationItem/steam"
kdeinit5: Got EXEC_NEW '/usr/lib/x86_64-linux-gnu/qt5/plugins/kf5/kio/trash.so' from launcher.
kdeinit5: preparing to launch '/usr/lib/x86_64-linux-gnu/qt5/plugins/kf5/kio/trash.so'
requesting unexisting screen 1
requesting unexisting screen 2
requesting unexisting screen 3
requesting unexisting screen 4
requesting unexisting screen 5
networkmanager-qt: void NetworkManager::NetworkManagerPrivate::propertiesChanged(const QVariantMap&) Unhandled property "AllDevices"
networkmanager-qt: void NetworkManager::NetworkManagerPrivate::propertiesChanged(const QVariantMap&) Unhandled property "Devices"
networkmanager-qt: void NetworkManager::NetworkManagerPrivate::propertiesChanged(const QVariantMap&) Unhandled property "GlobalDnsConfiguration"
initialization OK, home trash dir: "/home/henrik/.local/share/Trash"
Both point size and pixel size set. Using pixel size.
Both point size and pixel size set. Using pixel size.
ktp-common-internals: Current presence changed
ktp-common-internals: Current presence changed
org.kde.plasma.pulseaudio: state callback
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
Wrong IconThemePath "/home/henrik/.local/share/Steam/public" : too short or does not end with 'icons'
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
Installing breakpad exception handler for appid(steam)/version(1493162727)
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
org.kde.plasma.pulseaudio: state callback
org.kde.plasma.pulseaudio: ready
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
file:///usr/share/plasma/plasmoids/org.kde.plasma.networkmanagement/contents/ui/main.qml: QML Plasmoid: Cannot anchor to an item that isn't a parent or sibling.
roaming config store loaded successfully - 3162 bytes.
migrating temporary roaming config store
Installing breakpad exception handler for appid(steam)/version(1493162727)
Errors in resource/layout/pagination_panel.layout:
unknown color 'Text2' referenced by style key 'textcolor'
Errors in resource/layout/gamespage_details_cloud.layout:
unknown color 'Label' referenced by style key 'textcolor'
Failed to init SteamVR because it isn't installed
ExecCommandLine: ""/home/henrik/.local/share/Steam/ubuntu12_32/steam" "
kdeinit5: PID 2122 terminated.
Installing breakpad exception handler for appid(steam)/version(1493162727)
System startup time: 4,89 seconds
Opening joystick Logitech RumblePad 2
Generating new string page texture 92: 256x256, total string texture memory is 655,36 KB
Generating new string page texture 93: 128x256, total string texture memory is 131,07 KB
Generating new string page texture 94: 128x256, total string texture memory is 786,43 KB
Generating new string page texture 95: 64x256, total string texture memory is 196,61 KB
Generating new string page texture 96: 64x256, total string texture memory is 851,97 KB
Generating new string page texture 97: 48x256, total string texture memory is 901,12 KB
Errors in resource/layout/gamespage_details_rental.layout:
unknown color 'Label' referenced by style key 'textcolor'
unknown color 'Label' referenced by style key 'selectedtextcolor'

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.

(steam:2038): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
Generating new string page texture 107: 128x256, total string texture memory is 1,03 MB
Generating new string page texture 108: 256x256, total string texture memory is 1,29 MB
Generating new string page texture 109: 256x256, total string texture memory is 1,56 MB
Generating new string page texture 110: 128x256, total string texture memory is 1,69 MB
Generating new string page texture 111: 1024x256, total string texture memory is 2,74 MB
Installing breakpad exception handler for appid(steam)/version(1493162727)
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen.kded: Change detected
kscreen.kded: Change detected
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
org.kde.plasma.pulseaudio: returning roles QHash((262, "Volume")(263, "Muted")(264, "HasVolume")(265, "VolumeWritable")(266, "Name")(267, "Description")(268, "CardIndex")(269, "Ports")(270, "ActivePortIndex")(257, "Index")(258, "PulseObject")(259, "ObjectName")(260, "Index")(261, "Properties"))
org.kde.plasma.pulseaudio: PROPERTY CHANGED ( 0 ) ::  261 "Properties"
org.kde.plasma.pulseaudio: returning roles QHash((262, "Volume")(263, "Muted")(264, "HasVolume")(265, "VolumeWritable")(266, "Name")(267, "Description")(268, "CardIndex")(269, "Ports")(270, "ActivePortIndex")(257, "Index")(258, "PulseObject")(259, "ObjectName")(260, "Index")(261, "Properties"))
org.kde.plasma.pulseaudio: PROPERTY CHANGED ( 0 ) ::  262 "Volume"
org.kde.plasma.pulseaudio: returning roles QHash((262, "Volume")(263, "Muted")(264, "HasVolume")(265, "VolumeWritable")(266, "Name")(267, "Description")(268, "CardIndex")(269, "Ports")(270, "ActivePortIndex")(257, "Index")(258, "PulseObject")(259, "ObjectName")(260, "Index")(261, "Properties"))
org.kde.plasma.pulseaudio: PROPERTY CHANGED ( 0 ) ::  268 "CardIndex"
org.kde.plasma.pulseaudio: returning roles QHash((262, "Volume")(263, "Muted")(264, "HasVolume")(265, "VolumeWritable")(266, "Name")(267, "Description")(268, "CardIndex")(269, "Ports")(270, "ActivePortIndex")(257, "Index")(258, "PulseObject")(259, "ObjectName")(260, "Index")(261, "Properties"))
org.kde.plasma.pulseaudio: PROPERTY CHANGED ( 0 ) ::  269 "Ports"
org.kde.plasma.pulseaudio: returning roles QHash((262, "Volume")(263, "Muted")(264, "HasVolume")(265, "VolumeWritable")(266, "Name")(267, "Description")(268, "CardIndex")(269, "Ports")(270, "ActivePortIndex")(257, "Index")(258, "PulseObject")(259, "ObjectName")(260, "Index")(261, "Properties"))
org.kde.plasma.pulseaudio: PROPERTY CHANGED ( 0 ) ::  270 "ActivePortIndex"
org.kde.plasma.pulseaudio: returning roles QHash((262, "Volume")(263, "Muted")(264, "HasVolume")(265, "VolumeWritable")(266, "Name")(267, "Description")(268, "CardIndex")(269, "Ports")(270, "ActivePortIndex")(257, "Index")(258, "PulseObject")(259, "ObjectName")(260, "Index")(261, "Properties"))
org.kde.plasma.pulseaudio: PROPERTY CHANGED ( 2 ) ::  261 "Properties"
org.kde.plasma.pulseaudio: returning roles QHash((262, "Volume")(263, "Muted")(264, "HasVolume")(265, "VolumeWritable")(266, "Name")(267, "Description")(268, "CardIndex")(269, "Ports")(270, "ActivePortIndex")(257, "Index")(258, "PulseObject")(259, "ObjectName")(260, "Index")(261, "Properties"))
org.kde.plasma.pulseaudio: PROPERTY CHANGED ( 2 ) ::  262 "Volume"
org.kde.plasma.pulseaudio: returning roles QHash((262, "Volume")(263, "Muted")(264, "HasVolume")(265, "VolumeWritable")(266, "Name")(267, "Description")(268, "CardIndex")(269, "Ports")(270, "ActivePortIndex")(257, "Index")(258, "PulseObject")(259, "ObjectName")(260, "Index")(261, "Properties"))
org.kde.plasma.pulseaudio: PROPERTY CHANGED ( 2 ) ::  268 "CardIndex"
org.kde.plasma.pulseaudio: returning roles QHash((262, "Volume")(263, "Muted")(264, "HasVolume")(265, "VolumeWritable")(266, "Name")(267, "Description")(268, "CardIndex")(269, "Ports")(270, "ActivePortIndex")(257, "Index")(258, "PulseObject")(259, "ObjectName")(260, "Index")(261, "Properties"))
org.kde.plasma.pulseaudio: PROPERTY CHANGED ( 2 ) ::  269 "Ports"
org.kde.plasma.pulseaudio: returning roles QHash((262, "Volume")(263, "Muted")(264, "HasVolume")(265, "VolumeWritable")(266, "Name")(267, "Description")(268, "CardIndex")(269, "Ports")(270, "ActivePortIndex")(257, "Index")(258, "PulseObject")(259, "ObjectName")(260, "Index")(261, "Properties"))
org.kde.plasma.pulseaudio: PROPERTY CHANGED ( 2 ) ::  270 "ActivePortIndex"
org.kde.plasma.pulseaudio: returning roles QHash((262, "Volume")(263, "Muted")(264, "HasVolume")(265, "VolumeWritable")(266, "Name")(267, "Description")(268, "CardIndex")(269, "Ports")(270, "ActivePortIndex")(257, "Index")(258, "PulseObject")(259, "ObjectName")(260, "Index")(261, "Properties"))
org.kde.plasma.pulseaudio: PROPERTY CHANGED ( 1 ) ::  261 "Properties"
org.kde.plasma.pulseaudio: returning roles QHash((262, "Volume")(263, "Muted")(264, "HasVolume")(265, "VolumeWritable")(266, "Name")(267, "Description")(268, "CardIndex")(269, "Ports")(270, "ActivePortIndex")(257, "Index")(258, "PulseObject")(259, "ObjectName")(260, "Index")(261, "Properties"))
org.kde.plasma.pulseaudio: PROPERTY CHANGED ( 1 ) ::  262 "Volume"
org.kde.plasma.pulseaudio: returning roles QHash((262, "Volume")(263, "Muted")(264, "HasVolume")(265, "VolumeWritable")(266, "Name")(267, "Description")(268, "CardIndex")(269, "Ports")(270, "ActivePortIndex")(257, "Index")(258, "PulseObject")(259, "ObjectName")(260, "Index")(261, "Properties"))
org.kde.plasma.pulseaudio: PROPERTY CHANGED ( 1 ) ::  268 "CardIndex"
org.kde.plasma.pulseaudio: returning roles QHash((262, "Volume")(263, "Muted")(264, "HasVolume")(265, "VolumeWritable")(266, "Name")(267, "Description")(268, "CardIndex")(269, "Ports")(270, "ActivePortIndex")(257, "Index")(258, "PulseObject")(259, "ObjectName")(260, "Index")(261, "Properties"))
org.kde.plasma.pulseaudio: PROPERTY CHANGED ( 1 ) ::  269 "Ports"
org.kde.plasma.pulseaudio: returning roles QHash((262, "Volume")(263, "Muted")(264, "HasVolume")(265, "VolumeWritable")(266, "Name")(267, "Description")(268, "CardIndex")(269, "Ports")(270, "ActivePortIndex")(257, "Index")(258, "PulseObject")(259, "ObjectName")(260, "Index")(261, "Properties"))
org.kde.plasma.pulseaudio: PROPERTY CHANGED ( 1 ) ::  270 "ActivePortIndex"
org.kde.plasma.pulseaudio: returning roles QHash((262, "Volume")(263, "Muted")(264, "HasVolume")(265, "VolumeWritable")(266, "Name")(267, "Description")(268, "CardIndex")(269, "Ports")(270, "ActivePortIndex")(257, "Index")(258, "PulseObject")(259, "ObjectName")(260, "Index")(261, "Properties"))
org.kde.plasma.pulseaudio: PROPERTY CHANGED ( 0 ) ::  261 "Properties"
org.kde.plasma.pulseaudio: returning roles QHash((262, "Volume")(263, "Muted")(264, "HasVolume")(265, "VolumeWritable")(266, "Name")(267, "Description")(268, "CardIndex")(269, "Ports")(270, "ActivePortIndex")(257, "Index")(258, "PulseObject")(259, "ObjectName")(260, "Index")(261, "Properties"))
org.kde.plasma.pulseaudio: PROPERTY CHANGED ( 0 ) ::  262 "Volume"
org.kde.plasma.pulseaudio: returning roles QHash((262, "Volume")(263, "Muted")(264, "HasVolume")(265, "VolumeWritable")(266, "Name")(267, "Description")(268, "CardIndex")(269, "Ports")(270, "ActivePortIndex")(257, "Index")(258, "PulseObject")(259, "ObjectName")(260, "Index")(261, "Properties"))
org.kde.plasma.pulseaudio: PROPERTY CHANGED ( 0 ) ::  268 "CardIndex"
org.kde.plasma.pulseaudio: returning roles QHash((262, "Volume")(263, "Muted")(264, "HasVolume")(265, "VolumeWritable")(266, "Name")(267, "Description")(268, "CardIndex")(269, "Ports")(270, "ActivePortIndex")(257, "Index")(258, "PulseObject")(259, "ObjectName")(260, "Index")(261, "Properties"))
org.kde.plasma.pulseaudio: PROPERTY CHANGED ( 0 ) ::  269 "Ports"
org.kde.plasma.pulseaudio: returning roles QHash((262, "Volume")(263, "Muted")(264, "HasVolume")(265, "VolumeWritable")(266, "Name")(267, "Description")(268, "CardIndex")(269, "Ports")(270, "ActivePortIndex")(257, "Index")(258, "PulseObject")(259, "ObjectName")(260, "Index")(261, "Properties"))
org.kde.plasma.pulseaudio: PROPERTY CHANGED ( 0 ) ::  270 "ActivePortIndex"
kscreen.kded: Saving current config to file
kscreen.kded: Calculating config ID for KScreen::Config(0x1e53520)
kscreen.kded: 	Part of the Id:  "e410675549091dbaf134c3f860fe4ba0"
kscreen.kded: 	Config ID: "2d55c4f7a1014c1c83f284ad763ea948"
kscreen.kded: Config saved on:  "/home/henrik/.local/share/kscreen/2d55c4f7a1014c1c83f284ad763ea948"
org.kde.kurifilter-shorturi: "ksysguard"
org.kde.kurifilter-shorturi: path = "ksysguard"  isLocalFullPath= false  exists= false  url= QUrl("ksysguard")
org.kde.kurifilter-ikws: "ksysguard" : QUrl("file:ksysguard") , type = 3
org.kde.kurifilter-ikws: "ksysguard"
QXcbConnection: XCB error: 3 (BadWindow), sequence: 5090, resource id: 41943228, major code: 18 (ChangeProperty), minor code: 0
BluezQt: PendingCall Error: "Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken."
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen.kded: Change detected
QXcbConnection: XCB error: 3 (BadWindow), sequence: 5450, resource id: 10485779, major code: 18 (ChangeProperty), minor code: 0
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen.kded: Saving current config to file
kscreen.kded: Calculating config ID for KScreen::Config(0x1e53520)
kscreen.kded: 	Part of the Id:  "e410675549091dbaf134c3f860fe4ba0"
kscreen.kded: 	Config ID: "2d55c4f7a1014c1c83f284ad763ea948"
kscreen.kded: Config saved on:  "/home/henrik/.local/share/kscreen/2d55c4f7a1014c1c83f284ad763ea948"
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen.kded: Change detected
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
kscreen.kded: Change detected
kscreen: Primary output changed from KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" ) to KScreen::Output(Id: 713 , Name: "HDMI-0" ) ( "HDMI-0" )
QXcbConnection: XCB error: 3 (BadWindow), sequence: 5913, resource id: 117440542, major code: 18 (ChangeProperty), minor code: 0
kscreen.kded: Saving current config to file
kscreen.kded: Calculating config ID for KScreen::Config(0x1e53520)
kscreen.kded: 	Part of the Id:  "e410675549091dbaf134c3f860fe4ba0"
kscreen.kded: 	Config ID: "2d55c4f7a1014c1c83f284ad763ea948"
kscreen.kded: Config saved on:  "/home/henrik/.local/share/kscreen/2d55c4f7a1014c1c83f284ad763ea948"
kdeinit5: Got EXT_EXEC '/usr/bin/dolphin' from launcher.
kdeinit5: preparing to launch '/usr/bin/dolphin'
QXcbConnection: XCB error: 3 (BadWindow), sequence: 6482, resource id: 117440513, major code: 18 (ChangeProperty), minor code: 0
QXcbConnection: XCB error: 3 (BadWindow), sequence: 6486, resource id: 117440514, major code: 18 (ChangeProperty), minor code: 0
no winId: probably startup task
kdeinit5: Got EXEC_NEW '/usr/lib/x86_64-linux-gnu/qt5/plugins/kf5/kio/file.so' from launcher.
kdeinit5: preparing to launch '/usr/lib/x86_64-linux-gnu/qt5/plugins/kf5/kio/file.so'
kdeinit5: Got EXEC_NEW '/usr/lib/x86_64-linux-gnu/qt5/plugins/kf5/kio/trash.so' from launcher.
kdeinit5: preparing to launch '/usr/lib/x86_64-linux-gnu/qt5/plugins/kf5/kio/trash.so'
initialization OK, home trash dir: "/home/henrik/.local/share/Trash"
listdir:  QUrl("trash:/")
kdeinit5: Got EXEC_NEW '/usr/lib/x86_64-linux-gnu/qt5/plugins/kf5/kio/file.so' from launcher.
kdeinit5: preparing to launch '/usr/lib/x86_64-linux-gnu/qt5/plugins/kf5/kio/file.so'
KSambaShare: Could not find smb.conf!