summaryrefslogtreecommitdiff
path: root/data/config/standard/e.src
blob: d83c804d69f79e7dde537de512bddb695b7fafd0 (plain)
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
group "E_Config" struct {
    value "config_version" int: 1000035;
    value "config_type" uint: 3;
    value "desktop_default_name" string: "%i-%i";
    value "desktop_default_window_profile" string: "standard";
    value "menus_scroll_speed" double: 1000.0;
    value "menus_fast_mouse_move_threshhold" double: 300.0;
    value "menus_click_drag_timeout" double: 0.25;
    value "border_shade_animate" int: 1;
    value "border_shade_transition" int: 3;
    value "border_shade_speed" double: 3000.0;
    value "priority" int: 3;
    value "image_cache" int: 4096;
    value "font_cache" int: 512;
    value "edje_cache" int: 32;
    value "edje_collection_cache" int: 64;
    value "zone_desks_x_count" int: 4;
    value "zone_desks_y_count" int: 1;
    value "show_desktop_icons" int: 1;
    value "edge_flip_dragging" int: 1;
    value "use_shaped_win" int: 0;
    value "language" string: "en_US.UTF-8";
    value "window_placement_policy" int: 0;
    value "window_grouping" int: 0;
    value "focus_policy" int: 2;
    value "focus_setting" int: 3;
    value "pass_click_on" int: 1;
    value "window_activehint_policy" int: 2;
    value "always_click_to_raise" int: 0;
    value "always_click_to_focus" int: 0;
    value "use_auto_raise" int: 0;
    value "auto_raise_delay" double: 0.5;
    value "use_resist" int: 1;
    value "drag_resist" int: 16;
    value "desk_resist" int: 32;
    value "window_resist" int: 12;
    value "gadget_resist" int: 32;
    value "geometry_auto_resize_limit" int: 1;
    value "geometry_auto_move" int: 1;
    value "winlist_warp_while_selecting" int: 0;
    value "winlist_warp_at_end" int: 1;
    value "pointer_warp_speed" double: 0.1;
    value "winlist_scroll_animate" int: 1;
    value "winlist_scroll_speed" double: 0.1;
    value "winlist_list_show_iconified" int: 1;
    value "winlist_list_show_other_desk_iconified" int: 1;
    value "winlist_list_show_other_screen_iconified" int: 0;
    value "winlist_list_show_other_desk_windows" int: 0;
    value "winlist_list_show_other_screen_windows" int: 0;
    value "winlist_list_uncover_while_selecting" int: 0;
    value "winlist_list_jump_desk_while_selecting" int: 0;
    value "winlist_list_focus_while_selecting" int: 0;
    value "winlist_list_raise_while_selecting" int: 0;
    value "winlist_mode" int: 1;
    value "winlist_large_size" double: 0.6666;
    value "winlist_list_size" double: 0.3333;
    value "winlist_list_no_miniatures" int: 0;
    value "maximize_policy" int: 50;
    value "allow_manip" int: 0;
    value "border_fix_on_shelf_toggle" int: 0;
    value "allow_above_fullscreen" int: 0;
    value "kill_if_close_not_possible" int: 1;
    value "kill_process" int: 1;
    value "kill_timer_wait" double: 10.0;
    value "ping_clients" int: 1;
    value "transition_desk" string: "vswipe";
    value "transition_change" string: "crossfade";
    value "remember_internal_windows" int: 3;
    value "move_info_follows" int: 1;
    value "resize_info_follows" int: 1;
    value "move_info_visible" int: 1;
    value "resize_info_visible" int: 1;
    value "focus_last_focused_per_desktop" int: 1;
    value "focus_revert_on_hide_or_close" int: 1;
    value "pointer_slide" int: 1;
    value "use_e_cursor" int: 1;
    value "cursor_size" int: 32;
    value "menu_autoscroll_margin" int: 0;
    value "menu_autoscroll_cursor_margin" int: 1;
    value "transient.move" int: 1;
    value "transient.resize" int: 0;
    value "transient.raise" int: 1;
    value "transient.lower" int: 1;
    value "transient.layer" int: 1;
    value "transient.desktop" int: 1;
    value "transient.iconify" int: 1;
    value "modal_windows" int: 1;
    value "menu_eap_name_show" int: 1;
    value "menu_eap_generic_show" int: 1;
    value "menu_eap_comment_show" int: 0;
    value "menu_gadcon_client_toplevel" int: 0;
    value "fullscreen_policy" int: 0;
    value "exebuf_term_cmd" string: "xterm -hold -e";
    value "use_app_icon" int: 0;
    value "cnfmdlg_disabled" int: 0;
    value "cfgdlg_auto_apply" int: 0;
    value "cfgdlg_default_mode" int: 0;
    value "font_hinting" int: 0;
    value "desklock_auth_method" int: 0;
    value "desklock_login_box_zone" int: -1;
    value "desklock_start_locked" int: 0;
    value "desklock_on_suspend" int: 0;
    value "desklock_autolock_screensaver" int: 0;
    value "desklock_post_screensaver_time" double: 0.0;
    value "desklock_use_custom_desklock" int: 0;
    value "desklock_ask_presentation" uchar: 1;
    value "desklock_ask_presentation_timeout" double: 30.0;
    value "display_res_restore" int: 0;
    value "display_res_width" int: 1;
    value "display_res_height" int: 1;
    value "display_res_hz" int: 0;
    value "display_res_rotation" int: 0;
    value "screensaver_enable" int: 1;
    value "screensaver_timeout" int: 300;
    value "screensaver_interval" int: 5;
    value "screensaver_blanking" int: 2;
    value "screensaver_expose" int: 2;
    value "screensaver_ask_presentation" uchar: 1;
    value "screensaver_ask_presentation_timeout" double: 30.0;
    value "screensaver_suspend" uchar: 0;
    value "screensaver_suspend_on_ac" uchar: 0;
    value "screensaver_suspend_delay" double: 15.0;
    value "dpms_enable" int: 1;
    value "dpms_standby_enable" int: 1;
    value "dpms_suspend_enable" int: 1;
    value "dpms_off_enable" int: 1;
    value "dpms_standby_timeout" int: 300;
    value "dpms_suspend_timeout" int: 300;
    value "dpms_off_timeout" int: 300;
    value "clientlist_group_by" int: 0;
    value "clientlist_include_all_zones" int: 0;
    value "clientlist_separate_with" int: 0;
    value "clientlist_sort_by" int: 0;
    value "clientlist_separate_iconified_apps" int: 0;
    value "clientlist_warp_to_iconified_desktop" int: 0;
    value "clientlist_limit_caption_len" int: 0;
    value "clientlist_max_caption_len" int: 2;
    value "mouse_hand" int: 1;
    value "mouse_accel" double: 0.0;
    value "mouse_accel_threshold" int: 4;
    value "mouse_natural_scroll" uchar: 0;
    value "mouse_emulate_middle_button" uchar: 1;
    value "touch_accel" double: 0.0;
    value "touch_natural_scroll" uchar: 0;
    value "touch_emulate_middle_button" uchar: 1;
    value "touch_tap_to_click" uchar: 0;
    value "touch_clickpad" uchar: 1;
    value "touch_scrolling_2finger" uchar: 1;
    value "touch_scrolling_edge" uchar: 0;
    value "touch_scrolling_circular" uchar: 0;
    value "touch_scrolling_horiz" uchar: 1;
    value "touch_palm_detect" uchar: 1;
    value "border_raise_on_mouse_action" int: 1;
    value "desk_flip_wrap" int: 0;
    value "fullscreen_flip" int: 1;
    value "icon_theme" string: "hicolor";
    value "icon_theme_overrides" uchar: 0;
    value "desk_flip_animate_mode" int: 1;
    value "desk_flip_animate_type" string: "auto/pane";
    value "desk_flip_animate_interpolation" int: 0;
    value "desk_flip_animate_time" double: 0.2;
    value "wallpaper_import_last_dev" string: "~/";
    value "wallpaper_import_last_path" string: "/";
    value "theme_default_border_style" string: "default";
    value "desk_auto_switch" int: 0;
    value "thumb_nice" int: 0;
    value "gesture_open_input_devices" int: 0;
    value "screen_limits" int: 0;
    value "menu_favorites_show" int: 1;
    value "menu_apps_show" int: 1;
    value "ping_clients_interval" int: 128;
    value "cache_flush_poll_interval" int: 512;
    value "thumbscroll_enable" int: 0;
    value "thumbscroll_threshhold" int: 8;
    value "thumbscroll_momentum_threshhold" double: 100.0;
    value "thumbscroll_friction" double: 1.0;
    value "scale.min" double: 0.8;
    value "scale.max" double: 3.0;
    value "scale.factor" double: 1.0;
    value "scale.base_dpi" int: 90;
    value "scale.use_dpi" uchar: 0;
    value "scale.use_custom" uchar: 0;
    value "scale.xapp_base_dpi" int: 75;
    value "scale.set_xapp_dpi" uchar: 1;
    value "show_cursor" uchar: 1;
    value "idle_cursor" uchar: 1;
    value "default_system_menu" string: "";
    value "cfgdlg_normal_wins" uchar: 0;
    value "syscon.main.icon_size" int: 64;
    value "syscon.secondary.icon_size" int: 48;
    value "syscon.extra.icon_size" int: 48;
    value "syscon.timeout" double: 5.0;
    value "syscon.do_input" uchar: 1;
    value "exec.expire_timeout" double: 30.0;
    value "exec.show_run_dialog" uchar: 1;
    value "exec.show_exit_dialog" uchar: 1;
    value "null_container_win" uchar: 0;
    value "backlight.normal" double: 1.0;
    value "backlight.dim" double: 0.3;
    value "backlight.transition" double: 0.5;
    value "backlight.timer" double: 30.0;
    value "backlight.battery_timer" double: 20.0;
    value "backlight.idle_dim" uchar: 1;
    value "backlight.ddc" uchar: 1;
    value "deskenv.load_xrdb" uchar: 1;
    value "deskenv.load_xmodmap" uchar: 1;
    value "deskenv.load_gnome" uchar: 0;
    value "deskenv.load_kde" uchar: 0;
    value "device_desktop" int: 1;
    value "device_auto_mount" int: 0;
    value "device_auto_open" int: 0;
    value "xsettings.enabled" uchar: 1;
    value "xsettings.match_e17_theme" uchar: 1;
    value "xsettings.match_e17_icon_theme" uchar: 1;
    value "xsettings.xft_antialias" int: 0;
    value "xsettings.xft_hinting" int: 0;
    value "update.check" uchar: 1;
    value "update.later" uchar: 0;
    value "powersave.none" double: 0.25;
    value "powersave.low" double: 5.0;
    value "powersave.medium" double: 60.0;
    value "powersave.high" double: 300.0;
    value "powersave.extreme" double: 1200.0;
    value "powersave.min" int: 0;
    value "powersave.max" int: 5;
    group "syscon.actions" list {
        group "E_Config_Syscon_Action" struct {
            value "action" string: "halt";
            value "params" string: "now";
            value "button" string: "button";
            value "icon" string: "system-shutdown";
            value "is_main" int: 2;
        }
        group "E_Config_Syscon_Action" struct {
            value "action" string: "suspend";
            value "params" string: "now";
            value "button" string: "button";
            value "icon" string: "system-suspend";
            value "is_main" int: 1;
        }
        group "E_Config_Syscon_Action" struct {
            value "action" string: "desk_lock";
            value "button" string: "button";
            value "icon" string: "system-lock-screen";
            value "is_main" int: 1;
        }
        group "E_Config_Syscon_Action" struct {
            value "action" string: "reboot";
            value "params" string: "now";
            value "button" string: "button";
            value "icon" string: "system-restart";
            value "is_main" int: 0;
        }
        group "E_Config_Syscon_Action" struct {
            value "action" string: "hibernate";
            value "params" string: "now";
            value "button" string: "button";
            value "icon" string: "system-suspend-hibernate";
            value "is_main" int: 0;
        }
        group "E_Config_Syscon_Action" struct {
            value "action" string: "logout";
            value "params" string: "now";
            value "button" string: "button";
            value "icon" string: "system-log-out";
            value "is_main" int: 0;
        }
    }
    group "mime_icons" list {
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "image/jpeg";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "image/png";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "image/x-pixmap";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "image/x-xpixmap";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "image/svg+xml";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "image/gif";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "image/tiff";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "application/x-edje";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "application/pdf";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "application/postscript";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "image/x-photoshop";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "image/x-portable-anymap";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "image/x-portable-bitmap";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "image/x-portable-graymap";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "image/x-portable-pixmap";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "image/vnd.wap.wbmp";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "image/x-ms-bmp";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "image/bmp";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "image/x-icon";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "image/vnd.microsoft.icon";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "image/x-tga";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "image/svg+xml-compressed";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "application/x-xcf";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "image/x-xcf";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "image/x-compressed-xcf";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "application/x-font";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "application/x-font-ttf";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "application/x-font-type1";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "application/x-font-afm";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "application/x-font-snf";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "application/x-font-otf";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "application/vnd.font-fontforge-sfd";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "application/x-font-linux-psf";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "application/x-font-ttx";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "application/x-font-speedo";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "application/x-font-pcf";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "application/x-font-bdf";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "application/x-cisco-vpn-settings";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/3gpp";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/x-flv";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/x-matroska";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/quicktime";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/mp4";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/mpeg";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/mp2t";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "application/mxf";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/x-ogm+ogg";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/ogg";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/x-theora+ogg";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "application/vnd.rn-realmedia";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "application/x-shockwave-flash";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/x-ms-wmv";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/x-flv";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/3gpp";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/3gpp2";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/webm";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/x-real-video";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/dv";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/mpeg";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/mp2t";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/mp4";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/quicktime";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/mp4v-es";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/webm";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/x-la-asf";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/x-ms-asf";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/x-ms-wm";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/x-ms-wmx";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/x-ms-wvx";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/x-msvideo";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "video/x-matroska";
            value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
            value "mime" string: "application/x-desktop";
            value "icon" string: "DESKTOP";
        }
        group "E_Config_Mime_Icon" struct {
           value "mime" string: "application/vnd.oasis.opendocument.presentation";
           value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
           value "mime" string: "application/vnd.ms-excel";
           value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
           value "mime" string: "application/vnd.ms-powerpoint";
           value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
           value "mime" string: "application/vnd.ms-word";
           value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
           value "mime" string: "application/vnd.oasis.opendocument.spreadsheet";
           value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
           value "mime" string: "application/vnd.oasis.opendocument.text";
           value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
           value "mime" string: "application/vnd.openxmlformats-officedocument.presentationml.presentation";
           value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
           value "mime" string: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";
           value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
           value "mime" string: "application/vnd.openxmlformats-officedocument.wordprocessingml.document";
           value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
           value "mime" string: "text/richtext";
           value "icon" string: "THUMB";
        }
        group "E_Config_Mime_Icon" struct {
           value "mime" string: "application/msword";
           value "icon" string: "THUMB";
        }
    }
    group "shelves" list {
        group "E_Config_Shelf" struct {
            group "desk_list" list {
                group "E_Config_Shelf_Desk" struct {
                    value "x" int: 135642264;
                    value "y" int: 1;
                }
            }
            value "name" string: "shelf";
            value "id" int: 1;
            value "zone" int: 0;
            value "layer" int: 250;
            value "orient" int: 6;
            value "fit_along" uchar: 1;
            value "fit_size" uchar: 0;
            value "style" string: "default";
            value "size" int: 40;
            value "overlap" int: 0;
            value "autohide" int: 0;
            value "autohide_show_action" int: 0;
            value "hide_timeout" float: 1.0;
            value "hide_duration" float: 1.0;
            value "desk_show_mode" int: 0;
        }
    }
    group "gadcons" list {
        group "E_Config_Gadcon" struct {
            group "clients" list {
                group "E_Config_Gadcon_Client" struct {
                    value "name" string: "start";
                    value "id" string: "start";
                    value "geom.pos" int: 0;
                    value "geom.size" int: 32;
                    value "geom.res" int: 800;
                    value "geom.pos_x" double: 0.0;
                    value "geom.pos_y" double: 0.0;
                    value "geom.size_w" double: 0.0;
                    value "geom.size_h" double: 0.0;
                    value "state_info.seq" int: 1;
                    value "state_info.flags" int: 0;
                    value "style" string: "plain";
                    value "autoscroll" uchar: 0;
                    value "resizable" uchar: 0;
                }
                group "E_Config_Gadcon_Client" struct {
                    value "name" string: "pager";
                    value "id" string: "pager";
                    value "geom.pos" int: 32;
                    value "geom.size" int: 32;
                    value "geom.res" int: 800;
                    value "geom.pos_x" double: 0.0;
                    value "geom.pos_y" double: 0.0;
                    value "geom.size_w" double: 0.0;
                    value "geom.size_h" double: 0.0;
                    value "state_info.seq" int: 2;
                    value "state_info.flags" int: 0;
                    value "style" string: "inset";
                    value "autoscroll" uchar: 0;
                    value "resizable" uchar: 0;
                }
                group "E_Config_Gadcon_Client" struct {
                    value "name" string: "ibar";
                    value "id" string: "ibar.1";
                    value "geom.pos" int: 96;
                    value "geom.size" int: 32;
                    value "geom.res" int: 800;
                    value "geom.pos_x" double: 0.0;
                    value "geom.pos_y" double: 0.0;
                    value "geom.size_w" double: 0.0;
                    value "geom.size_h" double: 0.0;
                    value "state_info.seq" int: 4;
                    value "state_info.flags" int: 0;
                    value "style" string: "inset";
                    value "autoscroll" uchar: 0;
                    value "resizable" uchar: 0;
                }
                group "E_Config_Gadcon_Client" struct {
                    value "name" string: "systray";
                    value "id" string: "systray";
                    value "geom.pos" int: 128;
                    value "geom.size" int: 32;
                    value "geom.res" int: 800;
                    value "geom.pos_x" double: 0.0;
                    value "geom.pos_y" double: 0.0;
                    value "geom.size_w" double: 0.0;
                    value "geom.size_h" double: 0.0;
                    value "state_info.seq" int: 5;
                    value "state_info.flags" int: 1;
                    value "autoscroll" uchar: 0;
                    value "resizable" uchar: 0;
                }
                group "E_Config_Gadcon_Client" struct {
                    value "name" string: "backlight";
                    value "id" string: "backlight";
                    value "geom.pos" int: 160;
                    value "geom.size" int: 32;
                    value "geom.res" int: 800;
                    value "geom.pos_x" double: 0.0;
                    value "geom.pos_y" double: 0.0;
                    value "geom.size_w" double: 0.0;
                    value "geom.size_h" double: 0.0;
                    value "state_info.seq" int: 6;
                    value "state_info.flags" int: 0;
                    value "style" string: "plain";
                    value "autoscroll" uchar: 0;
                    value "resizable" uchar: 0;
                }
                group "E_Config_Gadcon_Client" struct {
                    value "name" string: "temperature";
                    value "id" string: "temperature.1";
                    value "geom.pos" int: 192;
                    value "geom.size" int: 32;
                    value "geom.res" int: 800;
                    value "geom.pos_x" double: 0.0;
                    value "geom.pos_y" double: 0.0;
                    value "geom.size_w" double: 0.0;
                    value "geom.size_h" double: 0.0;
                    value "state_info.seq" int: 7;
                    value "state_info.flags" int: 0;
                    value "style" string: "plain";
                    value "autoscroll" uchar: 0;
                    value "resizable" uchar: 0;
                }
                group "E_Config_Gadcon_Client" struct {
                    value "name" string: "cpufreq";
                    value "id" string: "cpufreq";
                    value "geom.pos" int: 224;
                    value "geom.size" int: 32;
                    value "geom.res" int: 800;
                    value "geom.pos_x" double: 0.0;
                    value "geom.pos_y" double: 0.0;
                    value "geom.size_w" double: 0.0;
                    value "geom.size_h" double: 0.0;
                    value "state_info.seq" int: 8;
                    value "state_info.flags" int: 0;
                    value "style" string: "plain";
                    value "autoscroll" uchar: 0;
                    value "resizable" uchar: 0;
                }
                group "E_Config_Gadcon_Client" struct {
                    value "name" string: "battery";
                    value "id" string: "battery";
                    value "geom.pos" int: 256;
                    value "geom.size" int: 32;
                    value "geom.res" int: 800;
                    value "geom.pos_x" double: 0.0;
                    value "geom.pos_y" double: 0.0;
                    value "geom.size_w" double: 0.0;
                    value "geom.size_h" double: 0.0;
                    value "state_info.seq" int: 9;
                    value "state_info.flags" int: 0;
                    value "style" string: "plain";
                    value "autoscroll" uchar: 0;
                    value "resizable" uchar: 0;
                }
                group "E_Config_Gadcon_Client" struct {
                    value "name" string: "clock";
                    value "id" string: "clock";
                    value "geom.pos" int: 288;
                    value "geom.size" int: 32;
                    value "geom.res" int: 800;
                    value "geom.pos_x" double: 0.0;
                    value "geom.pos_y" double: 0.0;
                    value "geom.size_w" double: 0.0;
                    value "geom.size_h" double: 0.0;
                    value "state_info.seq" int: 10;
                    value "state_info.flags" int: 0;
                    value "style" string: "plain";
                    value "autoscroll" uchar: 0;
                    value "resizable" uchar: 0;
                }
                group "E_Config_Gadcon_Client" struct {
                    value "name" string: "mixer";
                    value "id" string: "mixer.0";
                    value "geom.pos" int: 320;
                    value "geom.size" int: 32;
                    value "geom.res" int: 800;
                    value "geom.pos_x" double: 0.0;
                    value "geom.pos_y" double: 0.0;
                    value "geom.size_w" double: 0.0;
                    value "geom.size_h" double: 0.0;
                    value "state_info.seq" int: 11;
                    value "state_info.flags" int: 0;
                    value "style" string: "plain";
                    value "autoscroll" uchar: 0;
                    value "resizable" uchar: 0;
                }
                group "E_Config_Gadcon_Client" struct {
                    value "name" string: "connman";
                    value "id" string: "connman";
                    value "geom.pos" int: 352;
                    value "geom.size" int: 32;
                    value "geom.res" int: 800;
                    value "geom.pos_x" double: 0.0;
                    value "geom.pos_y" double: 0.0;
                    value "geom.size_w" double: 0.0;
                    value "geom.size_h" double: 0.0;
                    value "state_info.seq" int: 12;
                    value "state_info.flags" int: 0;
                    value "style" string: "plain";
                    value "autoscroll" uchar: 0;
                    value "resizable" uchar: 0;
                }
                group "E_Config_Gadcon_Client" struct {
                    value "name" string: "bluez5";
                    value "id" string: "bluez5.0";
                    value "geom.pos" int: 384;
                    value "geom.size" int: 32;
                    value "geom.res" int: 800;
                    value "geom.pos_x" double: 0.0;
                    value "geom.pos_y" double: 0.0;
                    value "geom.size_w" double: 0.0;
                    value "geom.size_h" double: 0.0;
                    value "state_info.seq" int: 13;
                    value "state_info.flags" int: 0;
                    value "style" string: "plain";
                    value "autoscroll" uchar: 0;
                    value "resizable" uchar: 0;
                }
                group "E_Config_Gadcon_Client" struct {
                    value "name" string: "tasks";
                    value "id" string: "tasks.0";
                    value "geom.pos" int: 416;
                    value "geom.size" int: 32;
                    value "geom.res" int: 800;
                    value "geom.pos_x" double: 0.0;
                    value "geom.pos_y" double: 0.0;
                    value "geom.size_w" double: 0.0;
                    value "geom.size_h" double: 0.0;
                    value "state_info.seq" int: 14;
                    value "state_info.flags" int: 0;
                    value "style" string: "inset";
                    value "autoscroll" uchar: 1;
                    value "resizable" uchar: 0;
                }
                group "E_Config_Gadcon_Client" struct {
                    value "name" string: "xkbswitch";
                    value "id" string: "xkbswitch";
                    value "geom.pos" int: 736;
                    value "geom.size" int: 32;
                    value "geom.res" int: 800;
                    value "geom.pos_x" double: 0.0;
                    value "geom.pos_y" double: 0.0;
                    value "geom.size_w" double: 0.0;
                    value "geom.size_h" double: 0.0;
                    value "state_info.seq" int: 15;
                    value "state_info.flags" int: 0;
                    value "style" string: "plain";
                    value "autoscroll" uchar: 0;
                    value "resizable" uchar: 0;
                }
                group "E_Config_Gadcon_Client" struct {
                    value "name" string: "syscon";
                    value "id" string: "syscon.1";
                    value "geom.pos" int: 768;
                    value "geom.size" int: 32;
                    value "geom.res" int: 800;
                    value "geom.pos_x" double: 0.0;
                    value "geom.pos_y" double: 0.0;
                    value "geom.size_w" double: 0.0;
                    value "geom.size_h" double: 0.0;
                    value "state_info.seq" int: 16;
                    value "state_info.flags" int: 0;
                    value "style" string: "plain";
                    value "autoscroll" uchar: 0;
                    value "resizable" uchar: 0;
                }
            }
            value "name" string: "shelf";
            value "id" int: 1;
        }
        group "E_Config_Gadcon" struct {
            group "clients" list {
                group "E_Config_Gadcon_Client" struct {
                    value "name" string: "efm_navigation";
                    value "id" string: "efm_navigation.1";
                    value "geom.pos" int: 720;
                    value "geom.size" int: 80;
                    value "geom.res" int: 800;
                    value "geom.pos_x" double: 0.0;
                    value "geom.pos_y" double: 0.0;
                    value "geom.size_w" double: 0.0;
                    value "geom.size_h" double: 0.0;
                    value "state_info.seq" int: 1;
                    value "state_info.flags" int: 0;
                    value "orient" int: 0;
                    value "autoscroll" uchar: 0;
                    value "resizable" uchar: 0;
                }
            }
            value "name" string: "toolbar";
            value "id" int: 1;
            value "zone" int: 0;
        }
        group "E_Config_Gadcon" struct {
            value "name" string: "gadman";
            value "id" int: 114;
        }
        group "E_Config_Gadcon" struct {
            value "name" string: "gadman_top";
            value "id" int: 115;
        }
    }
    group "modules" list {
        group "E_Config_Module" struct {
            value "name" string: "tasks";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "mixer";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "conf_window_remembers";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "conf_interaction";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "fileman";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "fileman_opinfo";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "conf_window_manipulation";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "conf_theme";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "conf_shelves";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "conf_performance";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "conf_paths";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "conf_menus";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "conf_bindings";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "conf_intl";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "conf_display";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "conf_dialogs";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "conf_applications";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "conf_randr";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "conf";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "xkbswitch";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "winlist";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "pager";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "temperature";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "cpufreq";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "battery";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "clock";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "ibar";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "start";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "gadman";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "syscon";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "lokker";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "notification";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "everything";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "shot";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "backlight";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "connman";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "bluez5";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "polkit";
            value "enabled" uchar: 1;
        }
        group "E_Config_Module" struct {
            value "name" string: "systray";
            value "enabled" uchar: 1;
        }
    }
    group "xkb.used_layouts" list {
        group "E_Config_XKB_Layout" struct {
           value "name" string: "us";
           value "model" string: "default";
           value "variant" string: "basic";
        }
    }
    value "xkb.only_label" int: 0;
    value "xkb.default_model" string: "default";
    value "xkb.use_cache" uchar: 0;
    value "keyboard.repeat_delay" int: 400;
    value "keyboard.repeat_rate" int: 25;
    value "exe_always_single_instance" uchar: 0;
    value "use_desktop_window_profile" int: 0;
}