summarylogtreecommitdiffstats
path: root/org.gnome.nautilus.gschema.xml.in
diff options
context:
space:
mode:
authorBrian Bidulock2015-07-08 23:47:39 -0600
committerBrian Bidulock2015-07-08 23:47:39 -0600
commita9b714203474b14b2aad34133258fe5ecd9744af (patch)
treefc412a4a9bb8d5fd5d1078c38638bb6249a17d37 /org.gnome.nautilus.gschema.xml.in
downloadaur-a9b714203474b14b2aad34133258fe5ecd9744af.tar.gz
initial version
Diffstat (limited to 'org.gnome.nautilus.gschema.xml.in')
-rw-r--r--org.gnome.nautilus.gschema.xml.in328
1 files changed, 328 insertions, 0 deletions
diff --git a/org.gnome.nautilus.gschema.xml.in b/org.gnome.nautilus.gschema.xml.in
new file mode 100644
index 000000000000..56435d139311
--- /dev/null
+++ b/org.gnome.nautilus.gschema.xml.in
@@ -0,0 +1,328 @@
+<schemalist>
+ <enum id="org.gnome.nautilus.SpeedTradeoff">
+ <value nick="always" value="0"/>
+ <value nick="local-only" value="1"/>
+ <value nick="never" value="2"/>
+ </enum>
+
+ <enum id="org.gnome.nautilus.ClickPolicy">
+ <value nick="single" value="0"/>
+ <value nick="double" value="1"/>
+ </enum>
+
+ <enum id="org.gnome.nautilus.ActivationChoice">
+ <value nick="launch" value="0"/>
+ <value nick="display" value="1"/>
+ <value nick="ask" value="2"/>
+ </enum>
+
+ <enum id="org.gnome.nautilus.FolderView">
+ <value nick="icon-view" value="0"/>
+ <value nick="list-view" value="1"/>
+ </enum>
+
+ <enum id="org.gnome.nautilus.SortOrder">
+ <value nick="manually" value="0"/>
+ <value nick="name" value="1"/>
+ <value nick="size" value="2"/>
+ <value nick="type" value="3"/>
+ <value nick="mtime" value="4"/>
+ <value nick="atime" value="5"/>
+ <value nick="trash-time" value="6"/>
+ </enum>
+
+ <enum id="org.gnome.nautilus.ZoomLevel">
+ <value nick="smallest" value="0"/>
+ <value nick="smaller" value="1"/>
+ <value nick="small" value="2"/>
+ <value nick="standard" value="3"/>
+ <value nick="large" value="4"/>
+ <value nick="larger" value="5"/>
+ <value nick="largest" value="6"/>
+ </enum>
+
+ <enum id="org.gnome.nautilus.TabPosition">
+ <value nick="after-current-tab" value="0"/>
+ <value nick="end" value="1"/>
+ </enum>
+
+ <schema id="org.gnome.nautilus" path="/org/gnome/nautilus/" gettext-domain="nautilus">
+ <child name="preferences" schema="org.gnome.nautilus.preferences"/>
+ <child name="icon-view" schema="org.gnome.nautilus.icon-view"/>
+ <child name="list-view" schema="org.gnome.nautilus.list-view"/>
+ <child name="desktop" schema="org.gnome.nautilus.desktop"/>
+ <child name="window-state" schema="org.gnome.nautilus.window-state"/>
+ </schema>
+
+ <schema id="org.gnome.nautilus.preferences" path="/org/gnome/nautilus/preferences/" gettext-domain="nautilus">
+ <key name="tabs-open-position" enum="org.gnome.nautilus.TabPosition">
+ <aliases>
+ <alias value='after_current_tab' target='after-current-tab'/>
+ </aliases>
+ <default>'after-current-tab'</default>
+ <_summary>Where to position newly open tabs in browser windows.</_summary>
+ <_description>If set to "after-current-tab", then new tabs are inserted after the current tab. If set to "end", then new tabs are appended to the end of the tab list.</_description>
+ </key>
+ <key name="always-use-browser" type="b">
+ <default>true</default>
+ <_summary>Enables the classic Nautilus behavior, where all windows are browsers</_summary>
+ <_description>If set to true, then all Nautilus windows will be browser windows. This is how Nautilus used to behave before version 2.6, and some people prefer this behavior.</_description>
+ </key>
+ <key name="always-use-location-entry" type="b">
+ <default>false</default>
+ <_summary>Always use the location entry, instead of the pathbar</_summary>
+ <_description>If set to true, then Nautilus browser windows will always use a textual input entry for the location toolbar, instead of the pathbar.</_description>
+ </key>
+ <key name="confirm-trash" type="b">
+ <default>true</default>
+ <_summary>Whether to ask for confirmation when deleting files, or emptying Trash</_summary>
+ <_description>If set to true, then Nautilus will ask for confirmation when you attempt to delete files, or empty the Trash.</_description>
+ </key>
+ <key name="enable-delete" type="b">
+ <default>false</default>
+ <_summary>Whether to enable immediate deletion</_summary>
+ <_description>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.</_description>
+ </key>
+ <key name="show-icon-text" enum="org.gnome.nautilus.SpeedTradeoff">
+ <aliases><alias value='local_only' target='local-only'/></aliases>
+ <default>'local-only'</default>
+ <_summary>When to show preview text in icons</_summary>
+ <_description>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 file systems. If set to "never" then never bother to read preview data.</_description>
+ </key>
+ <key name="show-directory-item-counts" enum="org.gnome.nautilus.SpeedTradeoff">
+ <aliases><alias value='local_only' target='local-only'/></aliases>
+ <default>'local-only'</default>
+ <_summary>When to show number of items in a folder</_summary>
+ <_description>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 file systems. If set to "never" then never bother to compute item counts.</_description>
+ </key>
+ <key name="click-policy" enum="org.gnome.nautilus.ClickPolicy">
+ <default>'double'</default>
+ <_summary>Type of click used to launch/open files</_summary>
+ <_description>Possible values are "single" to launch files on a single click, or "double" to launch them on a double click.</_description>
+ </key>
+ <key name="executable-text-activation" enum="org.gnome.nautilus.ActivationChoice">
+ <default>'ask'</default>
+ <_summary>What to do with executable text files when activated</_summary>
+ <_description>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.</_description>
+ </key>
+ <key name="install-mime-activation" type="b">
+ <default>true</default>
+ <_summary>Show the package installer for unknown mime types</_summary>
+ <_description>Whether to show the user a package installer dialog in case an unknown mime type is opened, in order to search for an application to handle it.</_description>
+ </key>
+ <key name="mouse-use-extra-buttons" type="b">
+ <default>true</default>
+ <_summary>Use extra mouse button events in Nautilus' browser window</_summary>
+ <_description>For users with mice that have "Forward" and "Back" buttons, this key will determine if any action is taken inside of Nautilus when either is pressed.</_description>
+ </key>
+ <key name="mouse-forward-button" type="i">
+ <default>9</default>
+ <_summary>Mouse button to activate the "Forward" command in browser window</_summary>
+ <_description>For users with mice that have buttons for "Forward" and "Back", this key will set which button activates the "Forward" command in a browser window. Possible values range between 6 and 14.</_description>
+ </key>
+ <key name="mouse-back-button" type="i">
+ <default>8</default>
+ <_summary>Mouse button to activate the "Back" command in browser window</_summary>
+ <_description>For users with mice that have buttons for "Forward" and "Back", this key will set which button activates the "Back" command in a browser window. Possible values range between 6 and 14.</_description>
+ </key>
+ <key name="show-image-thumbnails" enum="org.gnome.nautilus.SpeedTradeoff">
+ <aliases><alias value='local_only' target='local-only'/></aliases>
+ <default>'local-only'</default>
+ <_summary>When to show thumbnails of image files</_summary>
+ <_description>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 file systems. If set to "never" then never bother to thumbnail images, just use a generic icon.</_description>
+ </key>
+ <key name="thumbnail-limit" type="t">
+ <default>10485760</default>
+ <_summary>Maximum image size for thumbnailing</_summary>
+ <_description>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.</_description>
+ </key>
+ <key name="show-advanced-permissions" type="b">
+ <default>false</default>
+ <_summary>Show advanced permissions in the file property dialog</_summary>
+ <_description>If set to true, then Nautilus lets you edit and display file permissions in a more unix-like way, accessing some more esoteric options.</_description>
+ </key>
+ <key name="sort-directories-first" type="b">
+ <default>false</default>
+ <_summary>Show folders first in windows</_summary>
+ <_description>If set to true, then Nautilus shows folders prior to showing files in the icon and list views.</_description>
+ </key>
+ <key name="default-sort-order" enum="org.gnome.nautilus.SortOrder">
+ <aliases>
+ <alias value='modification_date' target='mtime'/>
+ </aliases>
+ <default>'name'</default>
+ <_summary>Default sort order</_summary>
+ <_description>The default sort-order for items in the icon view. Possible values are "name", "size", "type" and "mtime".</_description>
+ </key>
+ <key name="default-sort-in-reverse-order" type="b">
+ <default>false</default>
+ <_summary>Reverse sort order in new windows</_summary>
+ <_description>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.</_description>
+ </key>
+ <key name="default-folder-viewer" enum="org.gnome.nautilus.FolderView">
+ <aliases>
+ <alias value='icon_view' target='icon-view'/>
+ <alias value='compact_view' target='icon-view'/>
+ <alias value='compact-view' target='icon-view'/>
+ <alias value='list_view' target='list-view'/>
+ </aliases>
+ <default>'icon-view'</default>
+ <_summary>Default folder viewer</_summary>
+ <_description>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".</_description>
+ </key>
+ <key name="show-hidden-files" type="b">
+ <default>false</default>
+ <_summary>Whether to show hidden files</_summary>
+ <_description>If set to true, then hidden files are shown by default in the file manager. Hidden files are either dotfiles, listed in the folder's .hidden file or backup files ending with a tilde (~).</_description>
+ </key>
+ <key name="bulk-rename-tool" type="ay">
+ <default>[]</default>
+ <_summary>Bulk rename utility</_summary>
+ <_description>If set, Nautilus will append URIs of selected files and treat the result as a command line for bulk renaming. Bulk rename applications can register themselves in this key by setting the key to a space-separated string of their executable name and any command line options. If the executable name is not set to a full path, it will be searched for in the search path.</_description>
+ </key>
+ </schema>
+
+ <schema id="org.gnome.nautilus.icon-view" path="/org/gnome/nautilus/icon-view/" gettext-domain="nautilus">
+ <key name="captions" type="as">
+ <default>[ 'none', 'size', 'date_modified' ]</default>
+ <_summary>List of possible captions on icons</_summary>
+ <_description>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. Some possible values are:
+ "size", "type", "date_modified", "date_changed", "date_accessed", "owner",
+ "group", "permissions", "octal_permissions" and "mime_type".</_description>
+ </key>
+ <key name="default-zoom-level" enum="org.gnome.nautilus.ZoomLevel">
+ <default>'standard'</default>
+ <_summary>Default icon zoom level</_summary>
+ <_description>Default zoom level used by the icon view.</_description>
+ </key>
+ <key name="thumbnail-size" type="i">
+ <default>64</default>
+ <_summary>Default Thumbnail Icon Size</_summary>
+ <_description>The default size of an icon for a thumbnail in the icon view.</_description>
+ </key>
+ <key name="text-ellipsis-limit" type="as">
+ <default>[ '3' ]</default>
+ <_summary>Text Ellipsis Limit</_summary>
+ <_description>A string specifying how parts of overlong file names
+ should be replaced by ellipses, depending on the zoom
+ level.
+ Each of the list entries is of the form "Zoom Level:Integer".
+ For each specified zoom level, if the given integer is
+ larger than 0, the file name will not exceed the given number of lines.
+ If the integer is 0 or smaller, no limit is imposed on the specified zoom level.
+ A default entry of the form "Integer" without any specified zoom level
+ is also allowed. It defines the maximum number of lines for all other zoom levels.
+ Examples:
+ 0 - always display overlong file names;
+ 3 - shorten file names if they exceed three lines;
+ smallest:5,smaller:4,0 - shorten file names if they exceed five lines
+ for zoom level "smallest". Shorten file names if they exceed four lines
+ for zoom level "smaller". Do not shorten file names for other zoom levels.
+
+ Available zoom levels:
+ smallest (33%), smaller (50%), small (66%), standard (100%), large (150%),
+ larger (200%), largest (400%)</_description>
+ </key>
+ </schema>
+
+ <schema id="org.gnome.nautilus.list-view" path="/org/gnome/nautilus/list-view/" gettext-domain="nautilus">
+ <key name="default-zoom-level" enum="org.gnome.nautilus.ZoomLevel">
+ <default>'small'</default>
+ <_summary>Default list zoom level</_summary>
+ <_description>Default zoom level used by the list view.</_description>
+ </key>
+ <key name="default-visible-columns" type="as">
+ <default>[ 'name', 'size', 'type', 'date_modified' ]</default>
+ <_summary>Default list of columns visible in the list view</_summary>
+ <_description>Default list of columns visible in the list view.</_description>
+ </key>
+ <key name="default-column-order" type="as">
+ <default>[ 'name', 'size', 'type', 'date_modified' ]</default>
+ <_summary>Default column order in the list view</_summary>
+ <_description>Default column order in the list view.</_description>
+ </key>
+ </schema>
+
+ <schema id="org.gnome.nautilus.desktop" path="/org/gnome/nautilus/desktop/" gettext-domain="nautilus">
+ <key name="font" type="s">
+ <default l10n="messages" context="desktop-font">''</default>
+ <_summary>Desktop font</_summary>
+ <_description>The font _description used for the icons on the desktop.</_description>
+ </key>
+ <key name="home-icon-visible" type="b">
+ <default>true</default>
+ <_summary>Home icon visible on desktop</_summary>
+ <_description>If this is set to true, an icon linking to the home folder will be put on the desktop.</_description>
+ </key>
+ <key name="trash-icon-visible" type="b">
+ <default>true</default>
+ <_summary>Trash icon visible on desktop</_summary>
+ <_description>If this is set to true, an icon linking to the trash will be put on the desktop.</_description>
+ </key>
+ <key name="volumes-visible" type="b">
+ <default>true</default>
+ <_summary>Show mounted volumes on the desktop</_summary>
+ <_description>If this is set to true, icons linking to mounted volumes will be put on the desktop.</_description>
+ </key>
+ <key name="network-icon-visible" type="b">
+ <default>false</default>
+ <_summary>Network Servers icon visible on the desktop</_summary>
+ <_description>If this is set to true, an icon linking to the Network Servers view will be put on the desktop.</_description>
+ </key>
+ <key name="home-icon-name" type="s">
+ <default>''</default>
+ <_summary>Desktop home icon name</_summary>
+ <_description>This name can be set if you want a custom name for the home icon on the desktop.</_description>
+ </key>
+ <key name="trash-icon-name" type="s">
+ <default l10n="messages" context="trash-icon-name">'Trash'</default>
+ <_summary>Desktop trash icon name</_summary>
+ <_description>This name can be set if you want a custom name for the trash icon on the desktop.</_description>
+ </key>
+ <key name="network-icon-name" type="s">
+ <default l10n="messages" context="network-icon-name">'Network Servers'</default>
+ <_summary>Network servers icon name</_summary>
+ <_description>This name can be set if you want a custom name for the network servers icon on the desktop.</_description>
+ </key>
+ <key name="text-ellipsis-limit" type="i">
+ <default>3</default>
+ <_summary>Text Ellipsis Limit</_summary>
+ <_description>An integer specifying how parts of overlong file names should be replaced by ellipses on the desktop. If the number is larger than 0, the file name will not exceed the given number of lines. If the number is 0 or smaller, no limit is imposed on the number of displayed lines.</_description>
+ </key>
+ <key name="background-fade" type="b">
+ <default>true</default>
+ <_summary>Fade the background on change</_summary>
+ <_description>If set to true, then Nautilus will use a fade effect to change the desktop background.</_description>
+ </key>
+ </schema>
+
+ <schema id="org.gnome.nautilus.window-state" path="/org/gnome/nautilus/window-state/" gettext-domain="nautilus">
+ <key name="geometry" type="s">
+ <default>''</default>
+ <_summary>The geometry string for a navigation window.</_summary>
+ <_description>A string containing the saved geometry and coordinates string for navigation windows.</_description>
+ </key>
+ <key name="maximized" type="b">
+ <default>false</default>
+ <_summary>Whether the navigation window should be maximized.</_summary>
+ <_description>Whether the navigation window should be maximized by default.</_description>
+ </key>
+ <key name="sidebar-width" type="i">
+ <default>148</default>
+ <_summary>Width of the side pane</_summary>
+ <_description>The default width of the side pane in new windows.</_description>
+ </key>
+ <key name="start-with-location-bar" type="b">
+ <default>true</default>
+ <_summary>Show location bar in new windows</_summary>
+ <_description>If set to true, newly opened windows will have the location bar visible.</_description>
+ </key>
+ <key name="start-with-sidebar" type="b">
+ <default>true</default>
+ <_summary>Show side pane in new windows</_summary>
+ <_description>If set to true, newly opened windows will have the side pane visible.</_description>
+ </key>
+ </schema>
+</schemalist>