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
|
<schemalist gettext-domain="@GETTEXT_PACKAGE@">
<schema id="org.mate.search-tool" path="/org/mate/search-tool/">
<key name="search-history" type="a{sas}">
<default>[ ]</default>
<summary>Search history</summary>
<description>This key defines the items which were searched for in the past.</description>
</key>
<key name="show-additional-options" type="b">
<default>false</default>
<summary>Show Additional Options</summary>
</key>
<key name="disable-quick-search" type="b">
<default>false</default>
<summary>Disable Quick Search</summary>
<description>This key determines if the search tool disables the use of the locate command when performing simple file name searches.</description>
</key>
<key name="quick-search-excluded-paths" type="as">
<default>[ '/mnt/*', '/media/*', '/dev/*', '/tmp/*', '/proc/*', '/var/*' ]</default>
<summary>Quick Search Excluded Paths</summary>
<description>This key defines the paths the search tool will exclude from a quick search. The wildcards '*' and '?' are supported. The default values are /mnt/*, /media/*, /dev/*, /tmp/*, /proc/*, and /var/*.</description>
</key>
<key name="disable-quick-search-second-scan" type="b">
<default>false</default>
<summary>Disable Quick Search Second Scan</summary>
<description>This key determines if the search tool disables the use of the find command after performing a quick search.</description>
</key>
<key name="quick-search-second-scan-excluded-paths" type="as">
<default>[ '/' ]</default>
<summary>Quick Search Second Scan Excluded Paths</summary>
<description>This key defines the paths the search tool will exclude from a second scan when performing a quick search. The second scan uses the find command to search for files. The purpose of the second scan is to find files that have not been indexed. The wildcards '*' and '?' are supported. The default value is /.</description>
</key>
<key name="columns-order" type="ai">
<default>[ 0 ]</default>
<summary>Search Result Columns Order</summary>
<description>This key defines the order of the columns in the search results. This key should not be modified by the user.</description>
</key>
<key name="default-window-width" type="i">
<default>-1</default>
<summary>Default Window Width</summary>
<description>This key defines the window width, and it's used to remember the size of the search tool between sessions. Setting it to -1 will make the search tool use the default width.</description>
</key>
<key name="default-window-height" type="i">
<default>-1</default>
<summary>Default Window Height</summary>
<description>This key defines the window height, and it's used to remember the size of the search tool between sessions. Setting it to -1 will make the search tool use the default height.</description>
</key>
<key name="default-window-maximized" type="b">
<default>false</default>
<summary>Default Window Maximized</summary>
<description>This key determines if the search tool window starts in a maximized state.</description>
</key>
<key name="look-in-folder" type="s">
<default>''</default>
<summary>Look in Folder</summary>
<description>This key defines the default value of the "Look in Folder" widget.</description>
</key>
<child name="select" schema="org.mate.search-tool.select"/>
</schema>
<schema id="org.mate.search-tool.select" path="/org/mate/search-tool/select/">
<key name="contains-the-text" type="b">
<default>true</default>
<description>This key determines if the "Contains the text" search option is selected when the search tool is started.</description>
</key>
<key name="date-modified-less-than" type="b">
<default>false</default>
<description>This key determines if the "Date modified less than" search option is selected when the search tool is started.</description>
</key>
<key name="date-modified-more-than" type="b">
<default>false</default>
<description>This key determines if the "Date modified more than" search option is selected when the search tool is started.</description>
</key>
<key name="size-at-least" type="b">
<default>false</default>
<description>This key determines if the "Size at least" search option is selected when the search tool is started.</description>
</key>
<key name="size-at-most" type="b">
<default>false</default>
<description>This key determines if the "Size at most" search option is selected when the search tool is started.</description>
</key>
<key name="file-is-empty" type="b">
<default>false</default>
<description>This key determines if the "File is empty" search option is selected when the search tool is started.</description>
</key>
<key name="owned-by-user" type="b">
<default>false</default>
<description>This key determines if the "Owned by user" search option is selected when the search tool is started.</description>
</key>
<key name="owned-by-group" type="b">
<default>false</default>
<description>This key determines if the "Owned by group" search option is selected when the search tool is started.</description>
</key>
<key name="owner-is-unrecognized" type="b">
<default>false</default>
<description>This key determines if the "Owner is unrecognized" search option is selected when the search tool is started.</description>
</key>
<key name="name-does-not-contain" type="b">
<default>false</default>
<description>This key determines if the "Name does not contain" search option is selected when the search tool is started.</description>
</key>
<key name="name-matches-regular-expression" type="b">
<default>false</default>
<description>This key determines if the "Name matches regular expression" search option is selected when the search tool is started.</description>
</key>
<key name="show-hidden-files-and-folders" type="b">
<default>false</default>
<description>This key determines if the "Show hidden files and folders" search option is selected when the search tool is started.</description>
</key>
<key name="follow-symbolic-links" type="b">
<default>false</default>
<description>This key determines if the "Follow symbolic links" search option is selected when the search tool is started.</description>
</key>
<key name="exclude-other-filesystems" type="b">
<default>false</default>
<description>This key determines if the "Exclude other filesystems" search option is selected when the search tool is started.</description>
</key>
</schema>
</schemalist>
|