This repository has been archived by the owner on Jan 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog.txt
2112 lines (2112 loc) · 90.6 KB
/
log.txt
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
signal time=1622069977.198570 sender=org.freedesktop.DBus -> destination=:1.3541 serial=2 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameAcquired
string ":1.3541"
signal time=1622069977.199387 sender=org.freedesktop.DBus -> destination=:1.3541 serial=4 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameLost
string ":1.3541"
signal time=1622069980.704768 sender=:1.37 -> destination=(null destination) serial=10353 path=/org/gnome/Shell/Introspect; interface=org.gnome.Shell.Introspect; member=RunningApplicationsChanged
method call time=1622069980.708093 sender=:1.1424 -> destination=:1.37 serial=723 path=/org/gnome/Shell/Introspect; interface=org.gnome.Shell.Introspect; member=GetRunningApplications
method return time=1622069980.801556 sender=:1.37 -> destination=:1.1424 serial=10354 reply_serial=723
array [
dict entry(
string "window:388"
array [
dict entry(
string "active-on-seats"
variant array [
string "seat0"
]
)
dict entry(
string "sandboxed-app-id"
variant string "flutter_flutter"
)
]
)
dict entry(
string "code_code.desktop"
array [
dict entry(
string "sandboxed-app-id"
variant string "code_code"
)
]
)
dict entry(
string "firefox.desktop"
array [
]
)
dict entry(
string "org.gnome.Terminal.desktop"
array [
]
)
dict entry(
string "gnome-system-monitor.desktop"
array [
]
)
dict entry(
string "keepassxc_keepassxc.desktop"
array [
dict entry(
string "sandboxed-app-id"
variant string "keepassxc_keepassxc"
)
]
)
dict entry(
string "org.gnome.Nautilus.desktop"
array [
]
)
dict entry(
string "thunderbird.desktop"
array [
]
)
]
signal time=1622069980.948802 sender=:1.3507 -> destination=(null destination) serial=16 path=/org/gtk/gio/DesktopAppInfo; interface=org.gtk.gio.DesktopAppInfo; member=Launched
array of bytes "/var/lib/snapd/desktop/applications/code_code.desktop" + \0
string ""
int64 111121
array [
string "file:///home/mea/flutter-linux-snap-url-launcher-bug/README.md"
]
array [
dict entry(
string "origin-desktop-file"
variant array of bytes "/var/lib/snapd/desktop/applications/code_code.desktop" + \0
)
dict entry(
string "origin-prgname"
variant array of bytes "flutterlinuxsnapurllauncherbug" + \0
)
dict entry(
string "origin-pid"
variant int64 110502
)
]
method call time=1622069981.011469 sender=:1.3542 -> destination=org.freedesktop.DBus serial=1 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=Hello
method return time=1622069981.011510 sender=org.freedesktop.DBus -> destination=:1.3542 serial=1 reply_serial=1
string ":1.3542"
signal time=1622069981.011522 sender=org.freedesktop.DBus -> destination=(null destination) serial=4115 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged
string ":1.3542"
string ""
string ":1.3542"
signal time=1622069981.011537 sender=org.freedesktop.DBus -> destination=:1.3542 serial=2 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameAcquired
string ":1.3542"
method call time=1622069981.012964 sender=:1.3542 -> destination=org.freedesktop.systemd1 serial=2 path=/org/freedesktop/systemd1; interface=org.freedesktop.systemd1.Manager; member=StartTransientUnit
string "snap.code.code.f8200ea3-3c4a-458b-8455-4ce222a206f9.scope"
string "fail"
array [
struct {
string "PIDs"
variant array [
uint32 111121
]
}
]
array [
]
method call time=1622069981.013050 sender=:1.0 -> destination=org.freedesktop.DBus serial=15361 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=GetConnectionUnixUser
string ":1.3542"
method return time=1622069981.013060 sender=org.freedesktop.DBus -> destination=:1.0 serial=5639 reply_serial=15361
uint32 1000
method call time=1622069981.013763 sender=:1.0 -> destination=org.freedesktop.DBus serial=15362 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',sender='org.freedesktop.DBus',path='/org/freedesktop/DBus',interface='org.freedesktop.DBus',member='NameOwnerChanged',arg0=':1.3542'"
method return time=1622069981.013791 sender=org.freedesktop.DBus -> destination=:1.0 serial=5640 reply_serial=15362
method call time=1622069981.013797 sender=:1.0 -> destination=org.freedesktop.DBus serial=15363 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=GetNameOwner
string ":1.3542"
method return time=1622069981.013805 sender=org.freedesktop.DBus -> destination=:1.0 serial=5641 reply_serial=15363
string ":1.3542"
signal time=1622069981.015442 sender=:1.0 -> destination=(null destination) serial=15364 path=/org/freedesktop/systemd1; interface=org.freedesktop.systemd1.Manager; member=JobNew
uint32 8785
object path "/org/freedesktop/systemd1/job/8785"
string "snap.code.code.f8200ea3-3c4a-458b-8455-4ce222a206f9.scope"
method return time=1622069981.015492 sender=:1.0 -> destination=:1.3542 serial=15365 reply_serial=2
object path "/org/freedesktop/systemd1/job/8785"
signal time=1622069981.024107 sender=:1.0 -> destination=(null destination) serial=15366 path=/org/freedesktop/systemd1; interface=org.freedesktop.systemd1.Manager; member=JobRemoved
uint32 8785
object path "/org/freedesktop/systemd1/job/8785"
string "snap.code.code.f8200ea3-3c4a-458b-8455-4ce222a206f9.scope"
string "done"
method call time=1622069981.024149 sender=:1.0 -> destination=org.freedesktop.DBus serial=15367 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=RemoveMatch
string "type='signal',sender='org.freedesktop.DBus',path='/org/freedesktop/DBus',interface='org.freedesktop.DBus',member='NameOwnerChanged',arg0=':1.3542'"
signal time=1622069981.026213 sender=org.freedesktop.DBus -> destination=:1.3542 serial=5 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameLost
string ":1.3542"
signal time=1622069981.026251 sender=org.freedesktop.DBus -> destination=(null destination) serial=4116 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged
string ":1.3542"
string ":1.3542"
string ""
method call time=1622069981.762697 sender=:1.3543 -> destination=org.freedesktop.DBus serial=1 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=Hello
method return time=1622069981.762733 sender=org.freedesktop.DBus -> destination=:1.3543 serial=1 reply_serial=1
string ":1.3543"
signal time=1622069981.762746 sender=org.freedesktop.DBus -> destination=(null destination) serial=4117 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged
string ":1.3543"
string ""
string ":1.3543"
signal time=1622069981.762758 sender=org.freedesktop.DBus -> destination=:1.3543 serial=2 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameAcquired
string ":1.3543"
method call time=1622069981.765221 sender=:1.3543 -> destination=org.freedesktop.DBus serial=2 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',interface='ca.desrt.dconf.Writer',path='/ca/desrt/dconf/Writer/user',arg0path='/system/proxy/'"
method return time=1622069981.765262 sender=org.freedesktop.DBus -> destination=:1.3543 serial=3 reply_serial=2
method call time=1622069981.765268 sender=:1.3543 -> destination=org.freedesktop.DBus serial=3 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=RemoveMatch
string "type='signal',interface='ca.desrt.dconf.Writer',path='/ca/desrt/dconf/Writer/user',arg0path='/system/proxy/'"
method return time=1622069981.765288 sender=org.freedesktop.DBus -> destination=:1.3543 serial=4 reply_serial=3
method call time=1622069981.765293 sender=:1.3543 -> destination=org.freedesktop.DBus serial=4 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',interface='ca.desrt.dconf.Writer',path='/ca/desrt/dconf/Writer/user',arg0path='/system/proxy/'"
method return time=1622069981.765299 sender=org.freedesktop.DBus -> destination=:1.3543 serial=5 reply_serial=4
method call time=1622069981.765303 sender=:1.3543 -> destination=org.freedesktop.DBus serial=5 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',interface='ca.desrt.dconf.Writer',path='/ca/desrt/dconf/Writer/user',arg0path='/system/proxy/http/'"
method return time=1622069981.765309 sender=org.freedesktop.DBus -> destination=:1.3543 serial=6 reply_serial=5
method call time=1622069981.765312 sender=:1.3543 -> destination=org.freedesktop.DBus serial=6 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',interface='ca.desrt.dconf.Writer',path='/ca/desrt/dconf/Writer/user',arg0path='/system/proxy/https/'"
method return time=1622069981.765318 sender=org.freedesktop.DBus -> destination=:1.3543 serial=7 reply_serial=6
method call time=1622069981.765322 sender=:1.3543 -> destination=org.freedesktop.DBus serial=7 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',interface='ca.desrt.dconf.Writer',path='/ca/desrt/dconf/Writer/user',arg0path='/system/proxy/ftp/'"
method return time=1622069981.765329 sender=org.freedesktop.DBus -> destination=:1.3543 serial=8 reply_serial=7
method call time=1622069981.765334 sender=:1.3543 -> destination=org.freedesktop.DBus serial=8 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',interface='ca.desrt.dconf.Writer',path='/ca/desrt/dconf/Writer/user',arg0path='/system/proxy/socks/'"
method return time=1622069981.765343 sender=org.freedesktop.DBus -> destination=:1.3543 serial=9 reply_serial=8
method call time=1622069981.875399 sender=:1.3543 -> destination=org.freedesktop.DBus serial=9 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=RemoveMatch
string "type='signal',interface='ca.desrt.dconf.Writer',path='/ca/desrt/dconf/Writer/user',arg0path='/system/proxy/socks/'"
method return time=1622069981.875450 sender=org.freedesktop.DBus -> destination=:1.3543 serial=10 reply_serial=9
method call time=1622069981.875458 sender=:1.3543 -> destination=org.freedesktop.DBus serial=10 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=RemoveMatch
string "type='signal',interface='ca.desrt.dconf.Writer',path='/ca/desrt/dconf/Writer/user',arg0path='/system/proxy/ftp/'"
method return time=1622069981.875468 sender=org.freedesktop.DBus -> destination=:1.3543 serial=11 reply_serial=10
method call time=1622069981.875472 sender=:1.3543 -> destination=org.freedesktop.DBus serial=11 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=RemoveMatch
string "type='signal',interface='ca.desrt.dconf.Writer',path='/ca/desrt/dconf/Writer/user',arg0path='/system/proxy/https/'"
method return time=1622069981.875482 sender=org.freedesktop.DBus -> destination=:1.3543 serial=12 reply_serial=11
method call time=1622069981.875488 sender=:1.3543 -> destination=org.freedesktop.DBus serial=12 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=RemoveMatch
string "type='signal',interface='ca.desrt.dconf.Writer',path='/ca/desrt/dconf/Writer/user',arg0path='/system/proxy/http/'"
method return time=1622069981.875498 sender=org.freedesktop.DBus -> destination=:1.3543 serial=13 reply_serial=12
method call time=1622069981.875503 sender=:1.3543 -> destination=org.freedesktop.DBus serial=13 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=RemoveMatch
string "type='signal',interface='ca.desrt.dconf.Writer',path='/ca/desrt/dconf/Writer/user',arg0path='/system/proxy/'"
method return time=1622069981.875524 sender=org.freedesktop.DBus -> destination=:1.3543 serial=14 reply_serial=13
signal time=1622069981.888170 sender=:1.37 -> destination=(null destination) serial=10355 path=/org/gnome/Shell/Introspect; interface=org.gnome.Shell.Introspect; member=RunningApplicationsChanged
method call time=1622069981.888648 sender=:1.1424 -> destination=:1.37 serial=724 path=/org/gnome/Shell/Introspect; interface=org.gnome.Shell.Introspect; member=GetRunningApplications
method return time=1622069981.900590 sender=:1.37 -> destination=:1.1424 serial=10356 reply_serial=724
array [
dict entry(
string "code_code.desktop"
array [
dict entry(
string "active-on-seats"
variant array [
string "seat0"
]
)
dict entry(
string "sandboxed-app-id"
variant string "code_code"
)
]
)
dict entry(
string "window:388"
array [
dict entry(
string "sandboxed-app-id"
variant string "flutter_flutter"
)
]
)
dict entry(
string "firefox.desktop"
array [
]
)
dict entry(
string "org.gnome.Terminal.desktop"
array [
]
)
dict entry(
string "gnome-system-monitor.desktop"
array [
]
)
dict entry(
string "keepassxc_keepassxc.desktop"
array [
dict entry(
string "sandboxed-app-id"
variant string "keepassxc_keepassxc"
)
]
)
dict entry(
string "org.gnome.Nautilus.desktop"
array [
]
)
dict entry(
string "thunderbird.desktop"
array [
]
)
]
signal time=1622069981.903506 sender=org.freedesktop.DBus -> destination=:1.3543 serial=6 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameLost
string ":1.3543"
signal time=1622069981.903542 sender=org.freedesktop.DBus -> destination=(null destination) serial=4118 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged
string ":1.3543"
string ":1.3543"
string ""
method call time=1622069982.129311 sender=:1.3544 -> destination=org.freedesktop.DBus serial=1 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=Hello
method return time=1622069982.129354 sender=org.freedesktop.DBus -> destination=:1.3544 serial=1 reply_serial=1
string ":1.3544"
signal time=1622069982.129367 sender=org.freedesktop.DBus -> destination=(null destination) serial=4119 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged
string ":1.3544"
string ""
string ":1.3544"
signal time=1622069982.129386 sender=org.freedesktop.DBus -> destination=:1.3544 serial=2 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameAcquired
string ":1.3544"
method call time=1622069982.129739 sender=:1.3544 -> destination=org.freedesktop.DBus serial=2 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal', path='/org/freedesktop/DBus/Local',interface='org.freedesktop.DBus.Local', member='Disconnected'"
method return time=1622069982.129763 sender=org.freedesktop.DBus -> destination=:1.3544 serial=3 reply_serial=2
method call time=1622069982.130012 sender=:1.3544 -> destination=org.freedesktop.DBus serial=3 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=ListNames
method return time=1622069982.130054 sender=org.freedesktop.DBus -> destination=:1.3544 serial=4 reply_serial=3
array [
string "org.freedesktop.DBus"
string ":1.3507"
string ":1.106"
string "org.freedesktop.Notifications"
string ":1.7"
string ":1.1803"
string "org.gtk.vfs.mountpoint_2451"
string ":1.8"
string ":1.1804"
string "org.freedesktop.portal.Desktop"
string "org.kde.StatusNotifierItem-2758-1"
string ":1.9"
string "org.gnome.Mutter.DisplayConfig"
string ":1.429"
string "org.freedesktop.systemd1"
string "org.gnome.Mutter.IdleMonitor"
string "org.gnome.evolution.dataserver.AddressBook10"
string "org.gnome.SettingsDaemon.Wacom"
string "org.gnome.SettingsDaemon.MediaKeys"
string "org.gtk.vfs.Daemon"
string "org.gnome.SettingsDaemon.PrintNotifications"
string "org.gnome.SettingsDaemon.Datetime"
string "org.pulseaudio.Server"
string "org.gtk.vfs.mountpoint_11185"
string "org.gnome.SettingsDaemon.XSettings"
string "org.gnome.SettingsDaemon.UsbProtection"
string ":1.80"
string "org.gnome.SessionManager"
string "org.freedesktop.impl.portal.desktop.gtk"
string ":1.81"
string ":1.82"
string ":1.60"
string ":1.83"
string ":1.61"
string "org.gnome.SystemMonitor"
string ":1.84"
string ":1.62"
string "org.gnome.evolution.dataserver.Sources5"
string ":1.40"
string "org.gnome.Terminal"
string ":1.85"
string "org.gnome.SettingsDaemon.ScreensaverProxy"
string ":1.63"
string ":1.41"
string "org.gtk.vfs.UDisks2VolumeMonitor"
string "org.a11y.Bus"
string ":1.86"
string ":1.64"
string ":1.42"
string ":1.20"
string "org.gnome.Calendar"
string "org.gnome.SettingsDaemon.Power"
string ":1.65"
string "org.gnome.Shell.AudioDeviceSelection"
string ":1.43"
string "org.gnome.Identity"
string ":1.66"
string "org.gnome.Shell.CalendarServer"
string ":1.44"
string "org.gnome.keyring"
string "org.freedesktop.PackageKit"
string ":1.45"
string "org.gnome.Shell"
string ":1.68"
string ":1.46"
string ":1.24"
string ":1.397"
string ":1.111"
string ":1.69"
string ":1.47"
string "org.gnome.Shell.Wacom.PadOsd"
string ":1.1038"
string ":1.112"
string ":1.48"
string "org.kde.StatusNotifierItem-2587-1"
string "org.gnome.SettingsDaemon.Wwan"
string "org.gnome.Shell.Screenshot"
string ":1.49"
string ":1.114"
string "org.gtk.Settings"
string ":1.115"
string "org.freedesktop.portal.Documents"
string "ca.desrt.dconf"
string "org.gtk.vfs.GPhoto2VolumeMonitor"
string "org.gnome.SettingsDaemon"
string ":1.876"
string ":1.117"
string "org.gnome.SettingsDaemon.Sound"
string ":1.877"
string ":1.118"
string "io.snapcraft.Store"
string "org.gnome.SettingsDaemon.Rfkill"
string "org.freedesktop.ScreenSaver"
string "org.gnome.Shell.Screencast"
string "org.gtk.MountOperationHandler"
string "org.gnome.Shell.Introspect"
string "org.gnome.evolution.dataserver.Calendar8"
string "org.gnome.Magnifier"
string "org.gtk.vfs.AfcVolumeMonitor"
string ":1.719"
string "org.freedesktop.FileManager1"
string "org.gnome.seahorse.Application"
string "org.gnome.SettingsDaemon.Smartcard"
string "org.gnome.SettingsDaemon.A11ySettings"
string "org.PulseAudio1"
string "org.gtk.vfs.mountpoint_http"
string "org.gnome.Nautilus"
string "org.gnome.SettingsDaemon.Housekeeping"
string "org.gtk.vfs.GoaVolumeMonitor"
string "org.gnome.Panel"
string "org.gnome.SettingsDaemon.Sharing"
string "com.canonical.Unity"
string "org.gtk.Notifications"
string "org.gnome.Evolution-alarm-notify"
string ":1.3040"
string ":1.93"
string ":1.71"
string "org.freedesktop.portal.IBus"
string "org.gnome.OnlineAccounts"
string "org.gnome.ScreenSaver"
string ":1.72"
string "org.gnome.Shell.Notifications"
string "org.freedesktop.impl.portal.desktop.gnome"
string ":1.73"
string "org.gtk.vfs.Metadata"
string ":1.52"
string ":1.75"
string ":1.53"
string "org.gnome.SettingsDaemon.Keyboard"
string ":1.54"
string "org.freedesktop.impl.portal.PermissionStore"
string ":1.10"
string "org.gtk.vfs.mountpoint_dnssd"
string ":1.77"
string ":1.55"
string "org.gnome.keyring.SystemPrompter"
string ":1.11"
string "org.kde.StatusNotifierWatcher"
string ":1.2454"
string ":1.384"
string ":1.78"
string ":1.12"
string ":1.3544"
string ":1.79"
string ":1.57"
string ":1.0"
string ":1.35"
string ":1.188"
string ":1.58"
string ":1.14"
string ":1.1423"
string ":1.101"
string ":1.59"
string ":1.2"
string "org.freedesktop.Tracker1.Miner.Files"
string "org.freedesktop.secrets"
string ":1.37"
string ":1.1424"
string ":1.388"
string ":1.124"
string ":1.102"
string ":1.3"
string "org.gtk.vfs.MTPVolumeMonitor"
string ":1.38"
string "org.freedesktop.IBus.Panel.Extension.Gtk3"
string ":1.4"
string ":1.39"
string ":1.423"
string ":1.126"
string ":1.5"
string ":1.424"
string ":1.402"
string ":1.105"
string "org.gnome.Disks.NotificationMonitor"
string ":1.6"
string "org.freedesktop.IBus"
]
method call time=1622069982.130953 sender=:1.3544 -> destination=org.freedesktop.DBus serial=4 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=RemoveMatch
string "type='signal', path='/org/freedesktop/DBus/Local',interface='org.freedesktop.DBus.Local', member='Disconnected'"
method return time=1622069982.130969 sender=org.freedesktop.DBus -> destination=:1.3544 serial=5 reply_serial=4
signal time=1622069982.132073 sender=org.freedesktop.DBus -> destination=:1.3544 serial=7 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameLost
string ":1.3544"
signal time=1622069982.132098 sender=org.freedesktop.DBus -> destination=(null destination) serial=4120 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged
string ":1.3544"
string ":1.3544"
string ""
method call time=1622069982.137638 sender=:1.3545 -> destination=org.freedesktop.DBus serial=1 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=Hello
method return time=1622069982.137674 sender=org.freedesktop.DBus -> destination=:1.3545 serial=1 reply_serial=1
string ":1.3545"
signal time=1622069982.137686 sender=org.freedesktop.DBus -> destination=(null destination) serial=4121 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged
string ":1.3545"
string ""
string ":1.3545"
signal time=1622069982.137703 sender=org.freedesktop.DBus -> destination=:1.3545 serial=2 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameAcquired
string ":1.3545"
method call time=1622069982.138004 sender=:1.3545 -> destination=org.freedesktop.DBus serial=2 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal', path='/org/freedesktop/DBus/Local',interface='org.freedesktop.DBus.Local', member='Disconnected'"
method return time=1622069982.138029 sender=org.freedesktop.DBus -> destination=:1.3545 serial=3 reply_serial=2
method call time=1622069982.138266 sender=:1.3545 -> destination=org.freedesktop.DBus serial=3 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=ListNames
method return time=1622069982.138304 sender=org.freedesktop.DBus -> destination=:1.3545 serial=4 reply_serial=3
array [
string "org.freedesktop.DBus"
string ":1.3507"
string ":1.106"
string "org.freedesktop.Notifications"
string ":1.7"
string ":1.1803"
string "org.gtk.vfs.mountpoint_2451"
string ":1.8"
string ":1.1804"
string "org.freedesktop.portal.Desktop"
string "org.kde.StatusNotifierItem-2758-1"
string ":1.9"
string "org.gnome.Mutter.DisplayConfig"
string ":1.429"
string "org.freedesktop.systemd1"
string "org.gnome.Mutter.IdleMonitor"
string "org.gnome.evolution.dataserver.AddressBook10"
string "org.gnome.SettingsDaemon.Wacom"
string "org.gnome.SettingsDaemon.MediaKeys"
string "org.gtk.vfs.Daemon"
string "org.gnome.SettingsDaemon.PrintNotifications"
string "org.gnome.SettingsDaemon.Datetime"
string "org.pulseaudio.Server"
string "org.gtk.vfs.mountpoint_11185"
string "org.gnome.SettingsDaemon.XSettings"
string "org.gnome.SettingsDaemon.UsbProtection"
string ":1.80"
string "org.gnome.SessionManager"
string "org.freedesktop.impl.portal.desktop.gtk"
string ":1.81"
string ":1.82"
string ":1.60"
string ":1.83"
string ":1.61"
string "org.gnome.SystemMonitor"
string ":1.84"
string ":1.62"
string "org.gnome.evolution.dataserver.Sources5"
string ":1.40"
string "org.gnome.Terminal"
string ":1.85"
string "org.gnome.SettingsDaemon.ScreensaverProxy"
string ":1.63"
string ":1.41"
string "org.gtk.vfs.UDisks2VolumeMonitor"
string "org.a11y.Bus"
string ":1.86"
string ":1.64"
string ":1.42"
string ":1.20"
string "org.gnome.Calendar"
string "org.gnome.SettingsDaemon.Power"
string ":1.65"
string "org.gnome.Shell.AudioDeviceSelection"
string ":1.43"
string "org.gnome.Identity"
string ":1.66"
string "org.gnome.Shell.CalendarServer"
string ":1.44"
string "org.gnome.keyring"
string "org.freedesktop.PackageKit"
string ":1.45"
string "org.gnome.Shell"
string ":1.68"
string ":1.46"
string ":1.24"
string ":1.397"
string ":1.111"
string ":1.69"
string ":1.47"
string "org.gnome.Shell.Wacom.PadOsd"
string ":1.1038"
string ":1.112"
string ":1.48"
string "org.kde.StatusNotifierItem-2587-1"
string "org.gnome.SettingsDaemon.Wwan"
string "org.gnome.Shell.Screenshot"
string ":1.49"
string ":1.114"
string "org.gtk.Settings"
string ":1.115"
string "org.freedesktop.portal.Documents"
string "ca.desrt.dconf"
string "org.gtk.vfs.GPhoto2VolumeMonitor"
string "org.gnome.SettingsDaemon"
string ":1.876"
string ":1.117"
string "org.gnome.SettingsDaemon.Sound"
string ":1.877"
string ":1.118"
string "io.snapcraft.Store"
string "org.gnome.SettingsDaemon.Rfkill"
string "org.freedesktop.ScreenSaver"
string "org.gnome.Shell.Screencast"
string "org.gtk.MountOperationHandler"
string "org.gnome.Shell.Introspect"
string "org.gnome.evolution.dataserver.Calendar8"
string "org.gnome.Magnifier"
string "org.gtk.vfs.AfcVolumeMonitor"
string ":1.719"
string "org.freedesktop.FileManager1"
string "org.gnome.seahorse.Application"
string "org.gnome.SettingsDaemon.Smartcard"
string "org.gnome.SettingsDaemon.A11ySettings"
string "org.PulseAudio1"
string "org.gtk.vfs.mountpoint_http"
string "org.gnome.Nautilus"
string "org.gnome.SettingsDaemon.Housekeeping"
string "org.gtk.vfs.GoaVolumeMonitor"
string "org.gnome.Panel"
string "org.gnome.SettingsDaemon.Sharing"
string "com.canonical.Unity"
string "org.gtk.Notifications"
string "org.gnome.Evolution-alarm-notify"
string ":1.3040"
string ":1.93"
string ":1.71"
string "org.freedesktop.portal.IBus"
string "org.gnome.OnlineAccounts"
string "org.gnome.ScreenSaver"
string ":1.72"
string "org.gnome.Shell.Notifications"
string "org.freedesktop.impl.portal.desktop.gnome"
string ":1.73"
string "org.gtk.vfs.Metadata"
string ":1.52"
string ":1.75"
string ":1.53"
string "org.gnome.SettingsDaemon.Keyboard"
string ":1.54"
string "org.freedesktop.impl.portal.PermissionStore"
string ":1.10"
string "org.gtk.vfs.mountpoint_dnssd"
string ":1.77"
string ":1.55"
string "org.gnome.keyring.SystemPrompter"
string ":1.11"
string "org.kde.StatusNotifierWatcher"
string ":1.2454"
string ":1.384"
string ":1.78"
string ":1.12"
string ":1.79"
string ":1.57"
string ":1.0"
string ":1.35"
string ":1.3545"
string ":1.188"
string ":1.58"
string ":1.14"
string ":1.1423"
string ":1.101"
string ":1.59"
string ":1.2"
string "org.freedesktop.Tracker1.Miner.Files"
string "org.freedesktop.secrets"
string ":1.37"
string ":1.1424"
string ":1.388"
string ":1.124"
string ":1.102"
string ":1.3"
string "org.gtk.vfs.MTPVolumeMonitor"
string ":1.38"
string "org.freedesktop.IBus.Panel.Extension.Gtk3"
string ":1.4"
string ":1.39"
string ":1.423"
string ":1.126"
string ":1.5"
string ":1.424"
string ":1.402"
string ":1.105"
string "org.gnome.Disks.NotificationMonitor"
string ":1.6"
string "org.freedesktop.IBus"
]
method call time=1622069982.139227 sender=:1.3545 -> destination=org.freedesktop.DBus serial=4 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=RemoveMatch
string "type='signal', path='/org/freedesktop/DBus/Local',interface='org.freedesktop.DBus.Local', member='Disconnected'"
method return time=1622069982.139244 sender=org.freedesktop.DBus -> destination=:1.3545 serial=5 reply_serial=4
signal time=1622069982.140506 sender=org.freedesktop.DBus -> destination=:1.3545 serial=8 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameLost
string ":1.3545"
signal time=1622069982.140539 sender=org.freedesktop.DBus -> destination=(null destination) serial=4122 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged
string ":1.3545"
string ":1.3545"
string ""
method call time=1622069982.143235 sender=:1.3546 -> destination=org.freedesktop.DBus serial=1 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=Hello
method return time=1622069982.143287 sender=org.freedesktop.DBus -> destination=:1.3546 serial=1 reply_serial=1
string ":1.3546"
signal time=1622069982.143302 sender=org.freedesktop.DBus -> destination=(null destination) serial=4123 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged
string ":1.3546"
string ""
string ":1.3546"
signal time=1622069982.143320 sender=org.freedesktop.DBus -> destination=:1.3546 serial=2 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameAcquired
string ":1.3546"
method call time=1622069982.143916 sender=:1.3546 -> destination=org.freedesktop.DBus serial=2 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal', path='/org/freedesktop/DBus/Local',interface='org.freedesktop.DBus.Local', member='Disconnected'"
method return time=1622069982.143936 sender=org.freedesktop.DBus -> destination=:1.3546 serial=3 reply_serial=2
method call time=1622069982.144108 sender=:1.3546 -> destination=org.freedesktop.DBus serial=3 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=ListNames
method return time=1622069982.144150 sender=org.freedesktop.DBus -> destination=:1.3546 serial=4 reply_serial=3
array [
string "org.freedesktop.DBus"
string ":1.3507"
string ":1.106"
string "org.freedesktop.Notifications"
string ":1.7"
string ":1.1803"
string "org.gtk.vfs.mountpoint_2451"
string ":1.8"
string ":1.1804"
string "org.freedesktop.portal.Desktop"
string "org.kde.StatusNotifierItem-2758-1"
string ":1.9"
string "org.gnome.Mutter.DisplayConfig"
string ":1.429"
string "org.freedesktop.systemd1"
string "org.gnome.Mutter.IdleMonitor"
string "org.gnome.evolution.dataserver.AddressBook10"
string "org.gnome.SettingsDaemon.Wacom"
string "org.gnome.SettingsDaemon.MediaKeys"
string "org.gtk.vfs.Daemon"
string "org.gnome.SettingsDaemon.PrintNotifications"
string "org.gnome.SettingsDaemon.Datetime"
string "org.pulseaudio.Server"
string "org.gtk.vfs.mountpoint_11185"
string "org.gnome.SettingsDaemon.XSettings"
string "org.gnome.SettingsDaemon.UsbProtection"
string ":1.80"
string "org.gnome.SessionManager"
string "org.freedesktop.impl.portal.desktop.gtk"
string ":1.81"
string ":1.82"
string ":1.60"
string ":1.83"
string ":1.61"
string "org.gnome.SystemMonitor"
string ":1.84"
string ":1.62"
string "org.gnome.evolution.dataserver.Sources5"
string ":1.40"
string "org.gnome.Terminal"
string ":1.85"
string "org.gnome.SettingsDaemon.ScreensaverProxy"
string ":1.63"
string ":1.41"
string "org.gtk.vfs.UDisks2VolumeMonitor"
string "org.a11y.Bus"
string ":1.86"
string ":1.64"
string ":1.42"
string ":1.20"
string "org.gnome.Calendar"
string "org.gnome.SettingsDaemon.Power"
string ":1.65"
string "org.gnome.Shell.AudioDeviceSelection"
string ":1.43"
string "org.gnome.Identity"
string ":1.66"
string "org.gnome.Shell.CalendarServer"
string ":1.44"
string "org.gnome.keyring"
string "org.freedesktop.PackageKit"
string ":1.45"
string "org.gnome.Shell"
string ":1.68"
string ":1.46"
string ":1.24"
string ":1.397"
string ":1.111"
string ":1.69"
string ":1.47"
string "org.gnome.Shell.Wacom.PadOsd"
string ":1.1038"
string ":1.112"
string ":1.48"
string "org.kde.StatusNotifierItem-2587-1"
string "org.gnome.SettingsDaemon.Wwan"
string "org.gnome.Shell.Screenshot"
string ":1.49"
string ":1.114"
string "org.gtk.Settings"
string ":1.115"
string "org.freedesktop.portal.Documents"
string "ca.desrt.dconf"
string "org.gtk.vfs.GPhoto2VolumeMonitor"
string "org.gnome.SettingsDaemon"
string ":1.876"
string ":1.117"
string "org.gnome.SettingsDaemon.Sound"
string ":1.877"
string ":1.118"
string "io.snapcraft.Store"
string "org.gnome.SettingsDaemon.Rfkill"
string "org.freedesktop.ScreenSaver"
string "org.gnome.Shell.Screencast"
string "org.gtk.MountOperationHandler"
string "org.gnome.Shell.Introspect"
string "org.gnome.evolution.dataserver.Calendar8"
string "org.gnome.Magnifier"
string "org.gtk.vfs.AfcVolumeMonitor"
string ":1.719"
string "org.freedesktop.FileManager1"
string "org.gnome.seahorse.Application"
string "org.gnome.SettingsDaemon.Smartcard"
string "org.gnome.SettingsDaemon.A11ySettings"
string "org.PulseAudio1"
string "org.gtk.vfs.mountpoint_http"
string "org.gnome.Nautilus"
string "org.gnome.SettingsDaemon.Housekeeping"
string "org.gtk.vfs.GoaVolumeMonitor"
string "org.gnome.Panel"
string "org.gnome.SettingsDaemon.Sharing"
string "com.canonical.Unity"
string "org.gtk.Notifications"
string "org.gnome.Evolution-alarm-notify"
string ":1.3040"
string ":1.93"
string ":1.71"
string "org.freedesktop.portal.IBus"
string "org.gnome.OnlineAccounts"
string "org.gnome.ScreenSaver"
string ":1.72"
string "org.gnome.Shell.Notifications"
string "org.freedesktop.impl.portal.desktop.gnome"
string ":1.73"
string "org.gtk.vfs.Metadata"
string ":1.52"
string ":1.75"
string ":1.53"
string "org.gnome.SettingsDaemon.Keyboard"
string ":1.54"
string "org.freedesktop.impl.portal.PermissionStore"
string ":1.10"
string "org.gtk.vfs.mountpoint_dnssd"
string ":1.77"
string ":1.55"
string "org.gnome.keyring.SystemPrompter"
string ":1.11"
string "org.kde.StatusNotifierWatcher"
string ":1.2454"
string ":1.384"
string ":1.78"
string ":1.12"
string ":1.79"
string ":1.57"
string ":1.0"
string ":1.35"
string ":1.188"
string ":1.58"
string ":1.14"
string ":1.3546"
string ":1.1423"
string ":1.101"
string ":1.59"
string ":1.2"
string "org.freedesktop.Tracker1.Miner.Files"
string "org.freedesktop.secrets"
string ":1.37"
string ":1.1424"
string ":1.388"
string ":1.124"
string ":1.102"
string ":1.3"
string "org.gtk.vfs.MTPVolumeMonitor"
string ":1.38"
string "org.freedesktop.IBus.Panel.Extension.Gtk3"
string ":1.4"
string ":1.39"
string ":1.423"
string ":1.126"
string ":1.5"
string ":1.424"
string ":1.402"
string ":1.105"
string "org.gnome.Disks.NotificationMonitor"
string ":1.6"
string "org.freedesktop.IBus"
]
method call time=1622069982.144910 sender=:1.3546 -> destination=org.freedesktop.DBus serial=4 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=RemoveMatch
string "type='signal', path='/org/freedesktop/DBus/Local',interface='org.freedesktop.DBus.Local', member='Disconnected'"
method return time=1622069982.144922 sender=org.freedesktop.DBus -> destination=:1.3546 serial=5 reply_serial=4
signal time=1622069982.145304 sender=org.freedesktop.DBus -> destination=:1.3546 serial=9 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameLost
string ":1.3546"
signal time=1622069982.145326 sender=org.freedesktop.DBus -> destination=(null destination) serial=4124 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged
string ":1.3546"
string ":1.3546"
string ""
method call time=1622069982.147880 sender=:1.3547 -> destination=org.freedesktop.DBus serial=1 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=Hello
method return time=1622069982.147905 sender=org.freedesktop.DBus -> destination=:1.3547 serial=1 reply_serial=1
string ":1.3547"
signal time=1622069982.147918 sender=org.freedesktop.DBus -> destination=(null destination) serial=4125 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged
string ":1.3547"
string ""
string ":1.3547"
signal time=1622069982.147937 sender=org.freedesktop.DBus -> destination=:1.3547 serial=2 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameAcquired
string ":1.3547"
method call time=1622069982.148758 sender=:1.3547 -> destination=org.freedesktop.DBus serial=2 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal', path='/org/freedesktop/DBus/Local',interface='org.freedesktop.DBus.Local', member='Disconnected'"
method return time=1622069982.148793 sender=org.freedesktop.DBus -> destination=:1.3547 serial=3 reply_serial=2
method call time=1622069982.149871 sender=:1.3547 -> destination=org.freedesktop.DBus serial=3 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=ListNames
method return time=1622069982.149922 sender=org.freedesktop.DBus -> destination=:1.3547 serial=4 reply_serial=3
array [
string "org.freedesktop.DBus"
string ":1.3507"
string ":1.106"
string "org.freedesktop.Notifications"
string ":1.7"
string ":1.1803"
string "org.gtk.vfs.mountpoint_2451"
string ":1.8"
string ":1.1804"
string "org.freedesktop.portal.Desktop"
string "org.kde.StatusNotifierItem-2758-1"
string ":1.9"
string "org.gnome.Mutter.DisplayConfig"
string ":1.429"
string "org.freedesktop.systemd1"
string "org.gnome.Mutter.IdleMonitor"
string "org.gnome.evolution.dataserver.AddressBook10"
string "org.gnome.SettingsDaemon.Wacom"
string "org.gnome.SettingsDaemon.MediaKeys"
string "org.gtk.vfs.Daemon"
string "org.gnome.SettingsDaemon.PrintNotifications"
string "org.gnome.SettingsDaemon.Datetime"
string "org.pulseaudio.Server"
string "org.gtk.vfs.mountpoint_11185"
string "org.gnome.SettingsDaemon.XSettings"
string "org.gnome.SettingsDaemon.UsbProtection"
string ":1.80"
string "org.gnome.SessionManager"
string "org.freedesktop.impl.portal.desktop.gtk"
string ":1.81"
string ":1.82"
string ":1.60"
string ":1.83"
string ":1.61"
string "org.gnome.SystemMonitor"
string ":1.84"
string ":1.62"
string "org.gnome.evolution.dataserver.Sources5"
string ":1.40"
string "org.gnome.Terminal"
string ":1.85"
string "org.gnome.SettingsDaemon.ScreensaverProxy"
string ":1.63"
string ":1.41"
string "org.gtk.vfs.UDisks2VolumeMonitor"
string "org.a11y.Bus"
string ":1.86"
string ":1.64"
string ":1.42"
string ":1.20"
string "org.gnome.Calendar"
string "org.gnome.SettingsDaemon.Power"
string ":1.65"
string "org.gnome.Shell.AudioDeviceSelection"
string ":1.43"
string "org.gnome.Identity"
string ":1.66"
string "org.gnome.Shell.CalendarServer"
string ":1.44"
string "org.gnome.keyring"
string "org.freedesktop.PackageKit"
string ":1.45"
string "org.gnome.Shell"
string ":1.68"
string ":1.46"
string ":1.24"
string ":1.397"
string ":1.111"
string ":1.69"
string ":1.47"
string "org.gnome.Shell.Wacom.PadOsd"
string ":1.1038"
string ":1.112"
string ":1.48"
string "org.kde.StatusNotifierItem-2587-1"
string "org.gnome.SettingsDaemon.Wwan"
string "org.gnome.Shell.Screenshot"
string ":1.49"
string ":1.114"
string "org.gtk.Settings"
string ":1.115"
string "org.freedesktop.portal.Documents"
string "ca.desrt.dconf"
string "org.gtk.vfs.GPhoto2VolumeMonitor"
string "org.gnome.SettingsDaemon"
string ":1.876"
string ":1.117"
string "org.gnome.SettingsDaemon.Sound"
string ":1.877"
string ":1.118"
string "io.snapcraft.Store"
string "org.gnome.SettingsDaemon.Rfkill"
string "org.freedesktop.ScreenSaver"
string "org.gnome.Shell.Screencast"
string "org.gtk.MountOperationHandler"
string "org.gnome.Shell.Introspect"
string "org.gnome.evolution.dataserver.Calendar8"
string "org.gnome.Magnifier"
string "org.gtk.vfs.AfcVolumeMonitor"
string ":1.719"
string "org.freedesktop.FileManager1"
string "org.gnome.seahorse.Application"
string "org.gnome.SettingsDaemon.Smartcard"
string "org.gnome.SettingsDaemon.A11ySettings"
string "org.PulseAudio1"
string "org.gtk.vfs.mountpoint_http"
string "org.gnome.Nautilus"
string "org.gnome.SettingsDaemon.Housekeeping"
string "org.gtk.vfs.GoaVolumeMonitor"
string "org.gnome.Panel"
string "org.gnome.SettingsDaemon.Sharing"
string "com.canonical.Unity"
string "org.gtk.Notifications"
string "org.gnome.Evolution-alarm-notify"
string ":1.3040"
string ":1.93"
string ":1.71"
string "org.freedesktop.portal.IBus"
string "org.gnome.OnlineAccounts"
string "org.gnome.ScreenSaver"
string ":1.72"
string "org.gnome.Shell.Notifications"
string "org.freedesktop.impl.portal.desktop.gnome"
string ":1.73"
string "org.gtk.vfs.Metadata"
string ":1.52"
string ":1.75"
string ":1.53"