summaryrefslogtreecommitdiff
path: root/libnautilus-private/apps_nautilus_preferences.schemas.in
blob: 3671bc39b36482591475b58d143373dff029e0f9 (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
<gconfschemafile>
  <schemalist>

    <!-- Keep the defaults in sync with the emergency fallbacks 
         in nautilus-global-preferences.c -->

    <!-- General preferences -->

    <schema>
      <key>/schemas/desktop/gnome/file_views/show_hidden_files</key>
      <applyto>/desktop/gnome/file_views/show_hidden_files</applyto>
      <owner>nautilus</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
         <short>Whether to show hidden files</short>
         <long>
          If set to true, then hidden files are shown in 
          the file manager.  Hidden files are either dotfiles or are
	  listed in the folder's .hidden file.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/desktop/gnome/file_views/show_backup_files</key>
      <applyto>/desktop/gnome/file_views/show_backup_files</applyto>
      <owner>nautilus</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
         <short>Whether to show backup files</short>
         <long>
          If set to true, then backup files such as those created
          by Emacs are displayed. Currently, only files ending in 
          a tilde (~) are considered backup files.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/preferences/confirm_trash</key>
      <applyto>/apps/nautilus/preferences/confirm_trash</applyto>
      <owner>nautilus</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
         <short>Whether to ask for confirmation when moving files to trash</short>
         <long>
           If set to true, then Nautilus will ask for confirmation when 
           you attempt to put files in the trash.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/preferences/enable_delete</key>
      <applyto>/apps/nautilus/preferences/enable_delete</applyto>
      <owner>nautilus</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
         <short>Whether to enable immediate deletion</short>
         <long>
           If set to true, then Nautilus will have a feature allowing
           you to delete a file immediately and in-place, instead of moving it 
           to the trash. This feature can be dangerous, so use caution.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/preferences/show_icon_text</key>
      <applyto>/apps/nautilus/preferences/show_icon_text</applyto>
      <owner>nautilus</owner>
      <type>string</type>
      <default>local_only</default>
      <locale name="C">
         <short>When to show preview text in icons</short>
         <long>
           Speed tradeoff for when to show a preview of text file contents
           in the file's icon.
           If set to "always" then always show previews, 
           even if the folder is on a remote server.
           If set to "local_only" then only show previews for local filesystems.
           If set to "never" then never bother to read preview data.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/preferences/show_directory_item_counts</key>
      <applyto>/apps/nautilus/preferences/show_directory_item_counts</applyto>
      <owner>nautilus</owner>
      <type>string</type>
      <default>local_only</default>
      <locale name="C">
         <short>When to show number of items in a folder</short>
         <long>
           Speed tradeoff for when to show the number of items in a 
           folder. If set to "always" then always show item counts, 
           even if the folder is on a remote server. 
           If set to "local_only" then only show counts for local filesystems.
           If set to "never" then never bother to compute item counts.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/preferences/click_policy</key>
      <applyto>/apps/nautilus/preferences/click_policy</applyto>
      <owner>nautilus</owner>
      <type>string</type>
      <default>double</default>
      <locale name="C">
         <short>Type of click used to launch/open files</short>
         <long>
           Possible values are "single" to launch files on a single click, 
           or "double" to launch them on a double click.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/preferences/executable_text_activation</key>
      <applyto>/apps/nautilus/preferences/executable_text_activation</applyto>
      <owner>nautilus</owner>
      <type>string</type>
      <default>ask</default>
      <locale name="C">
         <short>What to do with executable text files when activated</short>
         <long>
        What to do with executable text files when they are activated
        (single or double clicked).
        Possible values are "launch" to launch them as programs,
        "ask" to ask what to do via a dialog, and "display" to display
        them as text files.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/preferences/theme</key>
      <applyto>/apps/nautilus/preferences/theme</applyto>
      <owner>nautilus</owner>
      <type>string</type>
      <default>default</default>
      <locale name="C">
         <short>Current Nautilus theme (deprecated)</short>
         <long>
          Name of the Nautilus theme to use.
	  This has been deprecated as of Nautilus 2.2.
	  Please use the icon theme instead.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/preferences/show_image_thumbnails</key>
      <applyto>/apps/nautilus/preferences/show_image_thumbnails</applyto>
      <owner>nautilus</owner>
      <type>string</type>
      <default>local_only</default>
      <locale name="C">
         <short>When to show thumbnails of image files</short>
         <long>
           Speed tradeoff for when to show an image file as a thumbnail.
           If set to "always" then always thumbnail, 
           even if the folder is on a remote server.
           If set to "local_only" then only show thumbnails for local filesystems.
           If set to "never" then never bother to thumbnail images,
           just use a generic icon.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/preferences/thumbnail_limit</key>
      <applyto>/apps/nautilus/preferences/thumbnail_limit</applyto>
      <owner>nautilus</owner>
      <type>int</type>
      <default>3145728</default>
      <locale name="C">
         <short>Maximum image size for thumbnailing</short>
         <long>
          Images over this size (in bytes) won't be 
          thumbnailed. The purpose of this setting is to 
          avoid thumbnailing large images that may 
          take a long time to load or use lots of memory.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/preferences/directory_limit</key>
      <applyto>/apps/nautilus/preferences/directory_limit</applyto>
      <owner>nautilus</owner>
      <type>int</type>
      <default>-1</default>
      <locale name="C">
         <short>Maximum handled files in a folder</short>
         <long>
	  Folders over this size will be truncated to
	  around this size. The purpose of this is to avoid unintentionally
	  blowing the heap and killing Nautilus on massive folders.
	  A negative value denotes no limit. The limit is approximate due
	  to the reading of folders chunk-wise.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/preferences/preview_sound</key>
      <applyto>/apps/nautilus/preferences/preview_sound</applyto>
      <owner>nautilus</owner>
      <type>string</type>
      <default>local_only</default>
      <locale name="C">
         <short>Whether to preview sounds when mousing over an icon</short>
         <long>
           Speed tradeoff for when to preview a sound file when mousing
           over a files icon.
           If set to "always" then always plays the sound, 
           even if the file is on a remote server.
           If set to "local_only" then only plays previews on local filesystems.
           If set to "never" then it never previews sound.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/preferences/show_special_flags</key>
      <applyto>/apps/nautilus/preferences/show_special_flags</applyto>
      <owner>nautilus</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
         <short>Enable 'special' flags in file preferences dialog</short>
	 <long>
	  If set to true, then Nautilus lets you edit some of the more
	  esoteric options of a file in the file preferences dialog.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/preferences/sort_directories_first</key>
      <applyto>/apps/nautilus/preferences/sort_directories_first</applyto>
      <owner>nautilus</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
         <short>Show folders first in windows</short>
	 <long>
	  If set to true, then Nautilus shows folders prior to
	  showing files in the icon and list views.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/preferences/show_desktop</key>
      <applyto>/apps/nautilus/preferences/show_desktop</applyto>
      <owner>nautilus</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
         <short>Nautilus handles drawing the desktop</short>
	 <long>
	  If set to true, then Nautilus will draw the icons on the
	  desktop.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/preferences/desktop_font</key>
      <applyto>/apps/nautilus/preferences/desktop_font</applyto>
      <owner>nautilus</owner>
      <type>string</type>
      <default>Sans 10</default>
      <locale name="C">
         <short>Desktop font</short>
	 <long>
	  The font description used for the icons on the desktop.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/preferences/desktop_is_home_dir</key>
      <applyto>/apps/nautilus/preferences/desktop_is_home_dir</applyto>
      <owner>nautilus</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
         <short>Nautilus uses the users home folder as the desktop</short>
	 <long>
	  If set to true, then Nautilus will use the user's home
	  folder as the desktop.  If it is false, then it will use
	  ~/Desktop as the desktop.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/preferences/search_bar_type</key>
      <applyto>/apps/nautilus/preferences/search_bar_type</applyto>
      <owner>nautilus</owner>
      <type>string</type>
      <default>search_by_text</default>
      <locale name="C">
         <short>Criteria for search bar searching</short>
	 <long>
	  Criteria when matching files searched for in the search bar.
	  If set to "search_by_text", then Nautilus will Search for files
	  by file name only.
	  If set to "search_by_text_and_properties", then Nautilus will
	  search for files by file name and file properties. 
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/preferences/window_always_new</key>
      <applyto>/apps/nautilus/preferences/window_always_new</applyto>
      <owner>nautilus</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
         <short>Bring up a new window for every opened file</short>
	 <long>
	  If set to true, then Nautilus will bring up a new Nautilus
	  window by default whenever an item is opened.
	</long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/preferences/background_set</key>
      <applyto>/apps/nautilus/preferences/background_set</applyto>
      <owner>nautilus</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
         <short>Custom Background Set</short>
         <long>Whether a custom default folder background has been set.</long>
      </locale>
    </schema>
    
    <schema>
      <key>/schemas/apps/nautilus/preferences/background_color</key>
      <applyto>/apps/nautilus/preferences/background_color</applyto>
      <owner>nautilus</owner>
      <type>string</type>
      <default>#ffffff</default>
      <locale name="C">
         <short>Default Background Color</short>
         <long>Filename for the default folder background.  Only used if background_set is true.</long>
      </locale>
    </schema>
    
    <schema>
      <key>/schemas/apps/nautilus/preferences/background_filename</key>
      <applyto>/apps/nautilus/preferences/background_filename</applyto>
      <owner>nautilus</owner>
      <type>string</type>
      <default></default>
      <locale name="C">
         <short>Default Background Filename</short>
         <long>Filename for the default folder background.  Only used if background_set is true.</long>
      </locale>
    </schema>


    <schema>
      <key>/schemas/apps/nautilus/preferences/side_pane_background_set</key>
      <applyto>/apps/nautilus/preferences/side_pane_background_set</applyto>
      <owner>nautilus</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
        <short>Custom Side Pane Background Set</short>
        <long>Whether a custom default side pane background has been set.</long>
      </locale>
    </schema>
    
    <schema>
      <key>/schemas/apps/nautilus/preferences/side_pane_background_color</key>
      <applyto>/apps/nautilus/preferences/side_pane_background_color</applyto>
      <owner>nautilus</owner>
      <type>string</type>
      <default>#ffffff</default>
      <locale name="C">
         <short>Default Side Pane Background Color</short>
         <long>Filename for the default side pane background.  Only used if side_pane_background_set is true.</long>
      </locale>
    </schema>
    
    <schema>
      <key>/schemas/apps/nautilus/preferences/side_pane_background_filename</key>
      <applyto>/apps/nautilus/preferences/side_pane_background_filename</applyto>
      <owner>nautilus</owner>
      <type>string</type>
      <default></default>
      <locale name="C">
         <short>Default Side Pane Background Filename</short>
         <long>Filename for the default side pane background.  Only used if side_pane_background_set is true.</long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/preferences/default_folder_viewer</key>
      <applyto>/apps/nautilus/preferences/default_folder_viewer</applyto>
      <owner>nautilus</owner>
      <type>string</type>
      <default>icon_view</default>
      <locale name="C">
         <short>Default folder viewer</short>
         <long>
	 When a folder is visited this viewer is used unless you have selected
	 another view for that particular folder. Possible values are "list_view"
	 and "icon_view".
         </long>
      </locale>
    </schema>
    
    <!-- Icon View -->

    <schema>
      <key>/schemas/apps/nautilus/icon_view/captions</key>
      <applyto>/apps/nautilus/icon_view/captions</applyto>
      <owner>nautilus</owner>
      <type>list</type>
      <list_type>string</list_type>
      <default>[none,size,date_modified]</default>
      <locale name="C">
         <short>List of possible captions on icons</short>
         <long>
	  A list of captions below an icon in the icon view and
          the desktop.  The actual number of captions shown depends on
          the zoom level.  Possible values are:
	  "size", "type", "date_modified", "date_changed", "date_accessed", "owner",
	  "group", "permissions", "octal_permissions" and "mime_type".
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/icon_view/default_sort_order</key>
      <applyto>/apps/nautilus/icon_view/default_sort_order</applyto>
      <owner>nautilus</owner>
      <type>string</type>
      <default>name</default>
      <locale name="C">
         <short>Default sort order</short>
         <long>
           The default sort-order for items in the icon view. Possible
	   values are "name", "size", "type", "modification_date", and "emblems".
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/icon_view/default_sort_in_reverse_order</key>
      <applyto>/apps/nautilus/icon_view/default_sort_in_reverse_order</applyto>
      <owner>nautilus</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
         <short>Reverse sort order in new windows</short>
         <long>
           If true, files in new windows will be sorted in reverse order.
	   ie, if sorted by name, then instead of sorting the files from
	   "a" to "z", they will be sorted from "z" to "a"; if sorted by
	   size, instead of being incrementally they will be sorted
	   decrementally.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/icon_view/default_use_tighter_layout</key>
      <applyto>/apps/nautilus/icon_view/default_use_tighter_layout</applyto>
      <owner>nautilus</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
         <short>Use tighter layout in new windows</short>
         <long>
           If true, icons will be laid out tighter by default in new windows.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/icon_view/labels_beside_icons</key>
      <applyto>/apps/nautilus/icon_view/labels_beside_icons</applyto>
      <owner>nautilus</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
         <short>Put labels beside icons</short>
         <long>
           If true, labels will be placed beside icons rather than
	   underneath them.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/icon_view/default_use_manual_layout</key>
      <applyto>/apps/nautilus/icon_view/default_use_manual_layout</applyto>
      <owner>nautilus</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
         <short>Use manual layout in new windows</short>
         <long>
           If true, new windows will use manual layout by default.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/icon_view/default_zoom_level</key>
      <applyto>/apps/nautilus/icon_view/default_zoom_level</applyto>
      <owner>nautilus</owner>
      <type>string</type>
      <default>standard</default>
      <locale name="C">
         <short>Default icon zoom level</short>
         <long>
             Default zoom level used by the icon view.
         </long>
      </locale>
    </schema>

    <!-- List View -->

    <schema>
      <key>/schemas/apps/nautilus/list_view/default_sort_order</key>
      <applyto>/apps/nautilus/list_view/default_sort_order</applyto>
      <owner>nautilus</owner>
      <type>string</type>
      <default>name</default>
      <locale name="C">
         <short>Default sort order</short>
         <long>
           The default sort-order for the items in the list view. Possible
	   values are "name", "size", "type", and "modification_date".
         </long>
      </locale>
    </schema>    
         
    <schema>
      <key>/schemas/apps/nautilus/list_view/default_sort_in_reverse_order</key>
      <applyto>/apps/nautilus/list_view/default_sort_in_reverse_order</applyto>
      <owner>nautilus</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
         <short>Reverse sort order in new windows</short>
         <long>
           If true, files in new windows will be sorted in reverse order.
	   ie, if sorted by name, then instead of sorting the files from
	   "a" to "z", they will be sorted from "z" to "a".
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/list_view/default_zoom_level</key>
      <applyto>/apps/nautilus/list_view/default_zoom_level</applyto>
      <owner>nautilus</owner>
      <type>string</type>
      <default>smaller</default>
      <locale name="C">
         <short>Default list zoom level</short>
         <long>
             Default zoom level used by the list view.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/preferences/hide_built_in_bookmarks</key>
      <applyto>/apps/nautilus/preferences/hide_built_in_bookmarks</applyto>
      <owner>nautilus</owner>
      <type>bool</type>
      <default>false</default>
      <locale name="C">
         <short>Hide default bookmarks in the bookmark menu</short>
	 <long>
	  If set to true, then Nautilus will just show the user's
	  bookmarks in the bookmark menu.
	</long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/preferences/sidebar_width</key>
      <applyto>/apps/nautilus/preferences/sidbar_width</applyto>
      <owner>nautilus</owner>
      <type>int</type>
      <default>148</default>
      <locale name="C">
         <short>Width of the side pane</short>
         <long>
          The default width of the side pane in new windows.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/preferences/start_with_toolbar</key>
      <applyto>/apps/nautilus/preferences/start_with_toolbar</applyto>
      <owner>nautilus</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
         <short>Show toolbar in new windows</short>
         <long>
           If set to true, newly opened windows will have toolbars visible.
         </long>
      </locale>
    </schema>
    
    <schema>
      <key>/schemas/apps/nautilus/preferences/start_with_location_bar</key>
      <applyto>/apps/nautilus/preferences/start_with_location_bar</applyto>
      <owner>nautilus</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
         <short>Show location bar in new windows</short>
         <long>
           If set to true, newly opened windows will have the
	   location bar visible.
         </long>
      </locale>
    </schema>
    
    <schema>
      <key>/schemas/apps/nautilus/preferences/start_with_status_bar</key>
      <applyto>/apps/nautilus/preferences/start_with_status_bar</applyto>
      <owner>nautilus</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
         <short>Show status bar in new windows</short>
         <long>
           If set to true, newly opened windows will have the status
	   bar visible.
         </long>
      </locale>
    </schema>
         
    <schema>
      <key>/schemas/apps/nautilus/preferences/start_with_sidebar</key>
      <applyto>/apps/nautilus/preferences/start_with_sidebar</applyto>
      <owner>nautilus</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
         <short>Show side pane in new windows</short>
         <long>
           If set to true, newly opened windows will have the side
	   pane visible.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/preferences/side_pane_view</key>
      <applyto>/apps/nautilus/preferences/side_pane_view</applyto>
      <owner>nautilus</owner>
      <type>string</type>
      <default></default>
      <locale name="C">
         <short>Side pane view</short>
         <long>
	   The side pane view to show in newly opened windows.
         </long>
      </locale>
    </schema>
    
    <schema>
      <key>/schemas/apps/nautilus/sidebar_panels/tree/show_only_directories</key>
      <applyto>/apps/nautilus/sidebar_panels/tree/show_only_directories</applyto>
      <owner>nautilus</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
         <short>Only show folders in the tree sidebar</short>
         <long>
           If set to true, Nautilus will only show folders
           in the tree side pane. Otherwise it will show both folders
	   and files.
         </long>
      </locale>
    </schema>
    
    <schema>
      <key>/schemas/apps/nautilus/preferences/add_to_session</key>
      <applyto>/apps/nautilus/preferences/add_to_session</applyto>
      <owner>nautilus</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
         <short>Add Nautilus to session</short>
         <long>
          If this is set to true, Nautilus adds itself to the session
	  when it starts up. This means it will be started the next
	  time you log in.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/desktop/home_icon_visible</key>
      <applyto>/apps/nautilus/desktop/home_icon_visible</applyto>
      <owner>nautilus</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
         <short>Home icon visible on desktop</short>
         <long>
          If this is set to true, an icon linking to the home folder
	  will be put on the desktop.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/desktop/computer_icon_visible</key>
      <applyto>/apps/nautilus/desktop/computer_icon_visible</applyto>
      <owner>nautilus</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
         <short>Computer icon visible on desktop</short>
         <long>
          If this is set to true, an icon linking to the computer location
	  will be put on the desktop.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/desktop/trash_icon_visible</key>
      <applyto>/apps/nautilus/desktop/trash_icon_visible</applyto>
      <owner>nautilus</owner>
      <type>bool</type>
      <default>true</default>
      <locale name="C">
         <short>Trash icon visible on desktop</short>
         <long>
          If this is set to true, an icon linking to the trash
	  will be put on the desktop.
         </long>
      </locale>
    </schema>

    <schema>
      <key>/schemas/apps/nautilus/desktop/home_icon_name</key>
      <applyto>/apps/nautilus/desktop/home_icon_name</applyto>
      <owner>nautilus</owner>
      <type>string</type>
      <locale name="C">
         <short>Desktop home icon name</short>
         <long>
          This name can be set if you want a custom name
	  for the home icon on the desktop.
         </long>
      </locale>
    </schema>
        
    <schema>
      <key>/schemas/apps/nautilus/desktop/trash_icon_name</key>
      <applyto>/apps/nautilus/desktop/trash_icon_name</applyto>
      <owner>nautilus</owner>
      <type>string</type>
      <locale name="C">
         <short>Desktop trash icon name</short>
         <long>
          This name can be set if you want a custom name
	  for the trash icon on the desktop.
         </long>
      </locale>
    </schema>
        
  </schemalist>  
</gconfschemafile>