🐛 fix(_def): backup snigdha os settings

This commit is contained in:
eshanized
2024-12-27 06:53:02 +05:30
parent 4c1b311e65
commit 6a1c4fc775
113 changed files with 282 additions and 12854 deletions

View File

@@ -1,75 +0,0 @@
<!ELEMENT schemalist (schema|enum|flags)* >
<!ATTLIST schemalist gettext-domain CDATA #IMPLIED >
<!ELEMENT schema (key|child|override)* >
<!ATTLIST schema id CDATA #REQUIRED
path CDATA #IMPLIED
gettext-domain CDATA #IMPLIED
extends CDATA #IMPLIED
list-of CDATA #IMPLIED >
<!-- enumerated and flags types -->
<!-- each value element maps a nick to a numeric value -->
<!ELEMENT enum (value*) >
<!ATTLIST enum id CDATA #REQUIRED >
<!ELEMENT flags (value*) >
<!ATTLIST flags id CDATA #REQUIRED >
<!ELEMENT value EMPTY >
<!-- nick must be at least 2 characters long -->
<!-- value must be parsable as a 32-bit integer -->
<!ATTLIST value nick CDATA #REQUIRED
value CDATA #REQUIRED >
<!ELEMENT key (default|summary?|description?|range?|choices?|aliases?)* >
<!-- name can only contain lowercase letters, numbers and '-' -->
<!-- type must be a GVariant type string -->
<!-- enum must be the id of an enum type that has been defined earlier -->
<!-- flags must be the id of a flags type that has been defined earlier -->
<!-- exactly one of type, enum or flags must be given -->
<!ATTLIST key name CDATA #REQUIRED
type CDATA #IMPLIED
enum CDATA #IMPLIED
flags CDATA #IMPLIED >
<!-- the default value is specified as a serialized GVariant,
i.e. you have to include the quotes when specifying a string -->
<!ELEMENT default (#PCDATA) >
<!-- the presence of the l10n attribute marks a default value for
translation, its value is the gettext category to use -->
<!-- if context is present, it specifies msgctxt to use -->
<!ATTLIST default l10n (messages|time) #IMPLIED
context CDATA #IMPLIED >
<!ELEMENT summary (#PCDATA) >
<!ELEMENT description (#PCDATA) >
<!-- range is only allowed for keys with numeric type -->
<!ELEMENT range EMPTY >
<!-- min and max must be parseable as values of the key type and
min must be less than or equal to max -->
<!ATTLIST range min CDATA #IMPLIED
max CDATA #IMPLIED >
<!-- choices is only allowed for keys with string or string array type -->
<!ELEMENT choices (choice+) >
<!-- each choice element specifies one possible value -->
<!ELEMENT choice EMPTY >
<!ATTLIST choice value CDATA #REQUIRED >
<!-- aliases is only allowed for keys with enumerated type or with choices -->
<!ELEMENT aliases (alias+) >
<!-- each alias element specifies an alias for one of the possible values -->
<!ELEMENT alias EMPTY >
<!ATTLIST alias value CDATA #REQUIRED
target CDATA #REQUIRED >
<!ELEMENT child EMPTY >
<!ATTLIST child name CDATA #REQUIRED
schema CDATA #REQUIRED >
<!ELEMENT override (#PCDATA) >
<!ATTLIST override name CDATA #REQUIRED
l10n CDATA #IMPLIED
context CDATA #IMPLIED >

View File

@@ -1,207 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id="org.blueman" path="/org/blueman/">
<child name="general" schema="org.blueman.general"/>
<child name="network" schema="org.blueman.network"/>
<child name="gsmsettings" schema="org.blueman.gsmsettings"/>
<child name="netusages" schema="org.blueman.plugins.netusages"/>
<child name="transfer" schema="org.blueman.transfer"/>
<child name="serialmanager" schema="org.blueman.plugins.serialmanager"/>
<child name="discvmanager" schema="org.blueman.plugins.discvmanager"/>
<child name="standarditems" schema="org.blueman.plugins.standarditems"/>
</schema>
<schema id="org.blueman.general" path="/org/blueman/general/">
<key type="ai" name="window-properties">
<default>[500, 350, 0, 0]</default>
<summary>The window position and size, [width, height, x, y]</summary>
<description>Stores the manager window's width, height and x, y position on screen</description>
</key>
<key type="s" name="last-adapter">
<default>""</default>
<summary>The adapter last selected</summary>
<description>This stores the lass adapter device selected in Manager</description>
</key>
<key type="i" name="services-last-item">
<default>0</default>
<summary>Last selected tab in Services</summary>
<description>Stores the selected tab id number in the Services UI</description>
</key>
<key type="b" name="show-toolbar">
<default>true</default>
<summary>Show Manager's ToolBar</summary>
<description>Show or hide Manager's ToolBar</description>
</key>
<key type="b" name="show-statusbar">
<default>true</default>
<summary>Show Manager's StatusBar</summary>
<description>Show or hide the Manager's StatusBar</description>
</key>
<key type="s" name="sort-by">
<choices>
<choice value="timestamp"/>
<choice value="alias"/>
</choices>
<default>"timestamp"</default>
<summary>Sort device list</summary>
<description>Sort the device list by column, possible values are timestamp and alias</description>
</key>
<key type="s" name="sort-order">
<choices>
<choice value="ascending"/>
<choice value="descending"/>
</choices>
<default>"ascending"</default>
<summary>Sort ascending or descending</summary>
</key>
<key type="b" name="hide-unnamed">
<summary>Hide devices with no name</summary>
<default>true</default>
</key>
<key type="as" name="plugin-list">
<default>[]</default>
<summary>List of enabled/disabled plugins</summary>
<description>Stores which plugins have been disabled/enabled by the user. Note plugins have a default whether it should be loaded or not and this only stores the plugins enabled/disabled by the user</description>
</key>
<key type="as" name="gsm-list">
<default>[]</default>
<summary>List of gsm which have apn settings</summary>
<description></description>
</key>
<key type="as" name="netusage-dev-list">
<default>[]</default>
<summary>List of devices we have netusage data stored.</summary>
<description></description>
</key>
<key type="b" name="notification-daemon">
<default>true</default>
<summary>Use notification daemon</summary>
<description>If this is set to false blueman always uses its internal fallback notification dialog and does not invoke a notification daemon. Otherwise the fallback dialog will only be used if actions need to be displayed and the notification daemon does not report to support them.</description>
</key>
<key type="b" name="symbolic-status-icons">
<default>false</default>
<summary>Use symbolic icons in the status tray</summary>
<description>If this is set to true blueman uses symbolic icon in the status tray, otherwise it uses fullcolor icons.</description>
</key>
</schema>
<schema id="org.blueman.gsmsettings" path="/org/blueman/gsmsettings/">
</schema>
<schema id="org.blueman.gsmsetting">
<key type="s" name="apn">
<default>""</default>
<summary>APN</summary>
<description>Bluetooth APN</description>
</key>
<key type="s" name="number">
<default>"*99#"</default>
<summary>PhoneNumber</summary>
<description>Phone Number</description>
</key>
<key type="s" name="nmdunuuid">
<default>""</default>
<summary>NM DUN Connection uuid</summary>
<description>The uuid of the NM DUN Connection which may not exist anymore</description>
</key>
<key type="s" name="nmpanuuid">
<default>""</default>
<summary>NM PANU Connection uuid</summary>
<description>The uuid of the NM PANU Connection which may not exist anymore</description>
</key>
</schema>
<schema id="org.blueman.plugins.killswitch" path="/org/blueman/plugins/killswitch/">
<key type="b" name="checked">
<default>false</default>
<summary></summary>
<description></description>
</key>
</schema>
<schema id="org.blueman.plugins.netusages" path="/org/blueman/plugins/netusages/">
</schema>
<schema id="org.blueman.plugins.netusage">
<key type="i" name="tx">
<default>0</default>
<summary>TX</summary>
<description>Transmit</description>
</key>
<key type="i" name="rx">
<default>0</default>
<summary>RX</summary>
<description>Receive</description>
</key>
<key type="i" name="time">
<default>0</default>
<summary>TimeStamp</summary>
<description>Current TimeStamp</description>
</key>
</schema>
<schema id="org.blueman.network" path="/org/blueman/network/">
<key type="b" name="nap-enable">
<default>false</default>
<summary></summary>
<description></description>
</key>
<key type="ms" name="ip4-address">
<default>nothing</default>
<summary>NAP IPv4 address</summary>
</key>
<key type="s" name="ip4-netmask">
<default>"255.255.255.0"</default>
<summary>NAP IPv4 netmask</summary>
</key>
<key type="ms" name="dhcp-handler">
<default>nothing</default>
<summary>DHCP handler</summary>
</key>
</schema>
<schema id="org.blueman.plugins.autoconnect" path="/org/blueman/plugins/autoconnect/">
<key type="a(ss)" name="services">
<default>[]</default>
<summary>Services to connect to automatically</summary>
<description>A list of services to connect to stored as tuples with the address and the UUID</description>
</key>
</schema>
<schema id="org.blueman.plugins.recentconns" path="/org/blueman/plugins/recentconns/">
<key type="i" name="max-items">
<default>6</default>
<summary>Maximum items</summary>
<description>Maximum number of items recent connections menu will display</description>
</key>
<key type="aa{ss}" name="recent-connections">
<default>[]</default>
<summary>Recent connected devices data</summary>
<description>A list of recently connected devices stored as a dictionary</description>
</key>
</schema>
<schema id="org.blueman.transfer" path="/org/blueman/transfer/">
<key type="b" name="opp-accept">
<default>false</default>
<summary>OPP Accept Connections</summary>
<description></description>
</key>
<key type="s" name="shared-path">
<default>""</default>
<summary>Path for incoming file transfers</summary>
<description></description>
</key>
</schema>
<schema id="org.blueman.plugins.serialmanager" path="/org/blueman/plugins/serialmanager/">
<key type="s" name="script">
<default>""</default>
<summary>Script to execute on connection</summary>
<description>The following arguments will be passed: "Address, Name, service name, uuid16s, rfcomm node". For example: "AA:BB:CC:DD:EE:FF, Phone, DUN service, 0x1103, /dev/rfcomm0". uuid16s are returned as a comma separated list. Upon device disconnection the script will be sent a HUP signal"</description>
</key>
</schema>
<schema id="org.blueman.plugins.discvmanager" path="/org/blueman/plugins/discvmanager/">
<key type="i" name="time">
<default>60</default>
<summary>Adapter discovery timeout</summary>
<description>Amount of time in seconds discoverable mode will last</description>
</key>
</schema>
<schema id="org.blueman.plugins.standarditems" path="/org/blueman/plugins/standarditems/">
<key type="b" name="toggle-manager-onclick">
<default>false</default>
<summary>Toggle the manager on clicking the system tray icon</summary>
<description>If this is set to true clicking the system tray icon will toggle the manager instead of focusing on it.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,57 +0,0 @@
<schemalist gettext-domain="cinnamon-session">
<schema id="org.cinnamon.SessionManager" path="/org/cinnamon/cinnamon-session/">
<key name="debug" type="b">
<default>false</default>
<summary>Show debug info</summary>
<description>If enabled, cinnamon-session will output debug information.</description>
</key>
<key name="x-sync" type="b">
<default>false</default>
<summary>Start the session with GDK_SYNCHRONIZE=1</summary>
<description>If enabled, cinnamon-session and all (gtk) children will make all X requests synchronously, for debugging x errors.</description>
</key>
<key name="auto-save-session" type="b">
<default>false</default>
<summary>Save sessions</summary>
<description>If enabled, cinnamon-session will save the session automatically.</description>
</key>
<key name="logout-prompt" type="b">
<default>true</default>
<summary>Logout prompt</summary>
<description>If enabled, cinnamon-session will prompt the user before ending a session.</description>
</key>
<key name="force-gtk-end-session-dialog" type="b">
<default>false</default>
<summary>Always use the session manager's end-session-dialog</summary>
<description>If enabled, cinnamon-session will not try to use Cinnamon's end-session dialog, instead preferring Gtk fallback.</description>
</key>
<key name="autostart-blacklist" type="as">
<default>['gnome-settings-daemon', 'org.gnome.SettingsDaemon', 'gnome-fallback-mount-helper', 'gnome-screensaver', 'mate-screensaver', 'mate-keyring-daemon', 'indicator-session', 'gnome-initial-setup-copy-worker', 'gnome-initial-setup-first-login', 'gnome-welcome-tour', 'xscreensaver-autostart', 'nautilus-autostart', 'nm-applet', 'caja', 'xfce4-power-manager', 'touchegg']</default>
<summary>Applications to block from autostarting or appearing in the app system</summary>
<description>
A list of applications or desktop names (without the .desktop extension) to prevent from
being accessible during the session.
</description>
</key>
<key name="quit-delay-toggle" type="b">
<default>false</default>
<summary>Toggles if there should be a timer when ending the session</summary>
<description>Toggles whether or not there's a timer to automatically end the current session</description>
</key>
<key name="quit-time-delay" type="i">
<default>60</default>
<summary>The time delay before quitting the system automatically</summary>
<description>The time delay before the shutdown/logout dialogue quits the system automatically</description>
</key>
<key name="prefer-hybrid-sleep" type="b">
<default>false</default>
<summary>If your hardware and login service supports 'Hybrid Sleep' then use it instead of normal Suspend</summary>
<description>Whether or not to attempt to use hybrid sleep mode for suspend. If it is unsupported, normal sleep will be used instead</description>
</key>
<key name="suspend-then-hibernate" type="b">
<default>false</default>
<summary>The system is suspended and put into hibernation after being suspended for a certain time. (Defaults to 2h, see systemd-sleep.conf)</summary>
<description>Whether or not to attempt to use suspend-then-hibernate. If it is unsupported, normal suspend will be used instead</description>
</key>
</schema>
</schemalist>

View File

@@ -1,8 +0,0 @@
<schemalist>
<schema id="org.cinnamon.control-center.display" path="/org/cinnamon/control-center/display/">
<key name="show-fractional-scaling-controls" type="b">
<default>false</default>
<summary>no longer used - see org.cinnamon.muffin:experimental-features</summary>
</key>
</schema>
</schemalist>

View File

@@ -1,20 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id="org.cinnamon.desktop.a11y.applications" path="/org/cinnamon/desktop/a11y/applications/">
<key name="screen-keyboard-enabled" type="b">
<default>false</default>
<summary>On-screen keyboard</summary>
<description>Whether the on-screen keyboard is turned on.</description>
</key>
<key name="screen-magnifier-enabled" type="b">
<default>false</default>
<summary>Screen magnifier</summary>
<description>Whether the screen magnifier is turned on.</description>
</key>
<key name="screen-reader-enabled" type="b">
<default>false</default>
<summary>Screen reader</summary>
<description>Whether the screen reader is turned on.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,130 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id="org.cinnamon.desktop.a11y.keyboard" path="/org/cinnamon/desktop/a11y/keyboard/">
<key name="enable" type="b">
<default>false</default>
<summary>Enable accessibility keyboard shortcuts</summary>
</key>
<key name="feature-state-change-beep" type="b">
<default>false</default>
<summary>Beep when a keyboard accessibility feature changes</summary>
<description>Whether to beep when a keyboard accessibility feature is enabled or disabled.</description>
</key>
<key name="timeout-enable" type="b">
<default>false</default>
<summary>Disable keyboard accessibility after a timeout</summary>
<description>Whether to disable keyboard accessibility after a timeout, useful for shared machines.</description>
</key>
<key name="disable-timeout" type="i">
<default>200</default>
<summary>Duration of the disabling timeout</summary>
<description>Duration of the timeout before disabling the keyboard accessibility.</description>
</key>
<key name="bouncekeys-enable" type="b">
<default>false</default>
<summary>Enable the bounce keys</summary>
<description>Whether the bounce keys keyboard accessibility feature is turned on.</description>
</key>
<key name="bouncekeys-delay" type="i">
<default>300</default>
<summary>Minimum interval in milliseconds</summary>
<description>Ignore multiple presses of the same key within this many milliseconds.</description>
</key>
<key name="bouncekeys-beep-reject" type="b">
<default>false</default>
<summary>Beep when a key is rejected</summary>
<description>Whether to beep when a key is rejected.</description>
</key>
<key name="mousekeys-enable" type="b">
<default>false</default>
<summary>Enable mouse keys</summary>
<description>Whether the mouse keys accessibility feature is turned on.</description>
</key>
<key name="mousekeys-max-speed" type="i">
<default>10</default>
<summary>Pixels per seconds</summary>
<description>How many pixels per second to move at the maximum speed.</description>
</key>
<key name="mousekeys-accel-time" type="i">
<default>300</default>
<summary>How long to accelerate in milliseconds</summary>
<description>How many milliseconds it takes to go from 0 to maximum speed.</description>
</key>
<key name="mousekeys-init-delay" type="i">
<default>300</default>
<summary>Initial delay in milliseconds</summary>
<description>How many milliseconds to wait before mouse movement keys start to operate.</description>
</key>
<key name="slowkeys-enable" type="b">
<default>false</default>
<summary>Enable slow keys</summary>
<description>Whether the slow keys accessibility feature is turned on.</description>
</key>
<key name="slowkeys-delay" type="i">
<default>300</default>
<summary>Minimum interval in milliseconds</summary>
<description>Do not accept a key as being pressed unless held for this many milliseconds.</description>
</key>
<key name="slowkeys-beep-press" type="b">
<default>false</default>
<summary>Beep when a key is first pressed</summary>
<description>Whether to beep when a key is first pressed.</description>
</key>
<key name="slowkeys-beep-accept" type="b">
<default>false</default>
<summary>Beep when a key is accepted</summary>
<description>Whether to beep when a key is accepted.</description>
</key>
<key name="slowkeys-beep-reject" type="b">
<default>false</default>
<summary>Beep when a key is rejected</summary>
<description>Whether to beep when a key is rejected.</description>
</key>
<key name="stickykeys-enable" type="b">
<default>false</default>
<summary>Enable sticky keys</summary>
<description>Whether the sticky keys accessibility feature is turned on.</description>
</key>
<key name="stickykeys-two-key-off" type="b">
<default>false</default>
<summary>Disable when two keys are pressed at the same time</summary>
<description>Whether to disable sticky keys if two keys are pressed at the same time.</description>
</key>
<key name="stickykeys-modifier-beep" type="b">
<default>false</default>
<summary>Beep when a modifier is pressed.</summary>
<description>Whether to beep when a modifier key is pressed.</description>
</key>
<key name="togglekeys-enable-osd" type="b">
<default>false</default>
<summary>Enable toggle keys osd popups when num or capslock are changed</summary>
<description>Whether the toggle keys osd accessibility feature is turned on.</description>
</key>
<key name="togglekeys-enable-beep" type="b">
<default>false</default>
<summary>Enable toggle keys sounds when num or capslock are changed</summary>
<description>Whether the toggle keys beep accessibility feature is turned on.</description>
</key>
<key name="togglekeys-enable" type="b">
<default>false</default>
<summary>deprecated</summary>
<description>deprecated</description>
</key>
<key name="togglekeys-sound-on" type="s">
<default>'/usr/share/cinnamon/sounds/togglekeys-sound-on.ogg'</default>
<summary>Sound to use when turning caps/num lock on</summary>
</key>
<key name="togglekeys-sound-off" type="s">
<default>'/usr/share/cinnamon/sounds/togglekeys-sound-off.ogg'</default>
<summary>Sound to use when turning caps/num lock off</summary>
</key>
<key name="always-show-text-caret" type="b">
<default>false</default>
<summary>Always show the text caret</summary>
<description>
This key overrides the hiding of the text caret in noneditable
text in applications.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,195 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id="org.cinnamon.desktop.a11y.magnifier" path="/org/cinnamon/desktop/a11y/magnifier/">
<key name="mouse-tracking" enum="org.cinnamon.desktop.CDesktopMagnifierMouseTrackingMode">
<default>'proportional'</default>
<summary>Mouse Tracking Mode</summary>
<description>
Determines the position of the magnified mouse image within the
magnified view and how it reacts to system mouse movement. The values
are
- none: no mouse tracking;
- centered: the mouse image is
displayed at the center of the zoom region (which also represents
the point under the system mouse) and the magnified contents are
scrolled as the system mouse moves;
- proportional: the position of the magnified mouse in the zoom region
is proportionally the same as the position of the system mouse on screen;
- push: when the magnified mouse intersects a boundary of the zoom
region, the contents are scrolled into view.
</description>
</key>
<key name="lens-shape" enum="org.cinnamon.desktop.CDesktopMagnifierLensShape">
<default>'square'</default>
<summary></summary>
<description>
The shape of lens to use in lens mode - a square, or a vertical or horizontal band.
</description>
</key>
<key name="screen-position" enum="org.cinnamon.desktop.CDesktopMagnifierScreenPosition">
<default>'full-screen'</default>
<summary>Screen position</summary>
<description>
The magnified view either fills the entire screen, or occupies the
top-half, bottom-half, left-half, or right-half of the screen.
</description>
</key>
<key name="mag-factor" type="d">
<default>1.0</default>
<range min="1.0" max="15.0"/>
<summary>Magnification factor</summary>
<description>
The power of the magnification. A value of 1.0 means no magnification.
A value of 2.0 doubles the size.
</description>
</key>
<key name="lens-mode" type="b">
<default>false</default>
<summary>Enable lens mode</summary>
<description>
Whether the magnified view should be centered over the location of
the system mouse and move with it.
</description>
</key>
<key name="scroll-at-edges" type="b">
<default>false</default>
<summary>
Scroll magnified contents beyond the edges of the desktop
</summary>
<description>
For centered mouse tracking, when the system pointer is at or near the
edge of the screen, the magnified contents continue to scroll such that
the screen edge moves into the magnified view.
</description>
</key>
<!-- Cross-hairs -->
<key name="show-cross-hairs" type="b">
<default>false</default>
<summary>Show or hide crosshairs</summary>
<description>
Enables/disables display of crosshairs centered on the magnified
mouse sprite.
</description>
</key>
<key name="cross-hairs-thickness" type="i">
<default>8</default>
<summary>Thickness of the crosshairs in pixels</summary>
<description>
Width in pixels of the vertical and horizontal lines that make up the crosshairs.
</description>
</key>
<key name="cross-hairs-color" type="s">
<default>'#ff0000'</default>
<summary>Color of the crosshairs</summary>
<description>
The color of the the vertical and horizontal lines that make up
the crosshairs.
</description>
</key>
<key name="cross-hairs-opacity" type="d">
<default>0.66</default>
<range min="0.0" max="1.0"/>
<summary>Opacity of the crosshairs</summary>
<description>
Determines the transparency of the crosshairs, from fully opaque
to fully transparent.
</description>
</key>
<key name="cross-hairs-length" type="i">
<default>4096</default>
<range min="20" max="4096"/>
<summary>Length of the crosshairs in pixels</summary>
<description>
Determines the length in pixels of the vertical and horizontal
lines that make up the crosshairs.
</description>
</key>
<key name="cross-hairs-clip" type="b">
<default>false</default>
<summary>Clip the crosshairs at the center</summary>
<description>
Determines whether the crosshairs intersect the magnified mouse sprite,
or are clipped such that the ends of the horizontal and vertical lines
surround the mouse image.
</description>
</key>
<key name="invert-lightness" type="b">
<default>false</default>
<summary>Inverse lightness</summary>
<description>
Determines whether the lightness values are inverted: darker colors
become lighter and vice versa, and white and black are interchanged.
</description>
</key>
<key name="color-saturation" type="d">
<default>1.0</default>
<range min="0.0" max="1.0"/>
<summary>Color Saturation</summary>
<description>
Represents a change to the color saturation, from 0.0 (grayscale)
to 1.0 (full color).
</description>
</key>
<key name="brightness-red" type="d">
<default>0.0</default>
<range min="-1.0" max="1.0"/>
<summary>Change brightness of red</summary>
<description>
Represents a change to the default brightness of the red component. Zero
indicates no change, values less than zero indicate a decrease, and
values greater than zero indicate an increase.
</description>
</key>
<key name="brightness-green" type="d">
<default>0.0</default>
<range min="-1.0" max="1.0"/>
<summary>Change brightness of green</summary>
<description>
Represents a change to the default brightness for the green component.
Zero indicates no change, values less than zero indicate a decrease, and
values greater than zero indicate an increase.
</description>
</key>
<key name="brightness-blue" type="d">
<default>0.0</default>
<range min="-1.0" max="1.0"/>
<summary>Change brightness of blue</summary>
<description>
Represents a change to the default brightness for the blue component.
Zero indicates no change, values less than zero indicate a decrease, and
values greater than zero indicate an increase.
</description>
</key>
<key name="contrast-red" type="d">
<default>0.0</default>
<range min="-1.0" max="1.0"/>
<summary>Change contrast of red</summary>
<description>
Represents a change to the default contrast of the red component. Zero
indicates no change in contrast, values less than zero indicate a
decrease, and values greater than zero indicate an increase.
</description>
</key>
<key name="contrast-green" type="d">
<default>0.0</default>
<range min="-1.0" max="1.0"/>
<summary>Change contrast of green</summary>
<description>
Represents a change to the default contrast of the green component.
Zero indicates no change in contrast, values less than zero indicate a
decrease, and values greater than zero indicate an increase.
</description>
</key>
<key name="contrast-blue" type="d">
<default>0.0</default>
<range min="-1.0" max="1.0"/>
<summary>Change contrast of blue</summary>
<description>
Represents a change to the default contrast of the blue component. Zero
indicates no change in contrast, values less than zero indicate a
decrease, and values greater than zero indicate an increase.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,60 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id="org.cinnamon.desktop.a11y.mouse" path="/org/cinnamon/desktop/a11y/mouse/">
<key name="dwell-time" type="d">
<default>1.20</default>
<summary>Dwell click time</summary>
<description>Time in seconds before a click is triggered.</description>
</key>
<key name="dwell-threshold" type="i">
<default>10</default>
<summary>Movement threshold</summary>
<description>Distance in pixels before movement will be recognized.</description>
</key>
<key name="dwell-gesture-single" enum="org.cinnamon.desktop.CDesktopMouseDwellDirection">
<default>'left'</default>
<summary>Gesture single click</summary>
<description>Direction to perform a single click ('left', 'right', 'up', 'down).</description>
</key>
<key name="dwell-gesture-double" enum="org.cinnamon.desktop.CDesktopMouseDwellDirection">
<default>'up'</default>
<summary>Gesture double click</summary>
<description>Direction to perform a double click ('left', 'right', 'up', 'down).</description>
</key>
<key name="dwell-gesture-drag" enum="org.cinnamon.desktop.CDesktopMouseDwellDirection">
<default>'down'</default>
<summary>Gesture drag click</summary>
<description>Direction to perform dragging ('left', 'right', 'up', 'down).</description>
</key>
<key name="dwell-gesture-secondary" enum="org.cinnamon.desktop.CDesktopMouseDwellDirection">
<default>'right'</default>
<summary>Gesture secondary click</summary>
<description>Direction to perform a secondary click ('left', 'right', 'up', 'down).</description>
</key>
<key name="dwell-mode" enum="org.cinnamon.desktop.CDesktopMouseDwellMode">
<default>'window'</default>
<summary>Dwell click mode</summary>
<description>The active dwell click mode. Possible values are 'window' and 'gesture'.</description>
</key>
<key name="click-type-window-visible" type="b">
<default>true</default>
<summary>Show click type window</summary>
<description>Show click type window.</description>
</key>
<key name="dwell-click-enabled" type="b">
<default>false</default>
<summary>Enable dwell clicks</summary>
<description>Enable dwell clicks.</description>
</key>
<key name="secondary-click-enabled" type="b">
<default>false</default>
<summary>Secondary click enabled</summary>
<description>Enable simulated secondary clicks</description>
</key>
<key name="secondary-click-time" type="d">
<default>1.20</default>
<summary>Secondary click time</summary>
<description>Time in seconds before a simulated secondary click is triggered.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,91 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id="org.cinnamon.desktop.background" path="/org/cinnamon/desktop/background/">
<key name="picture-options" enum="org.cinnamon.desktop.CDesktopBackgroundStyle">
<default>'zoom'</default>
<summary>Picture Options</summary>
<description>
Determines how the image set by wallpaper_filename is rendered.
Possible values are "none", "wallpaper", "centered", "scaled",
"stretched", "zoom", "spanned".
</description>
</key>
<key name="picture-uri" type="s">
<default>'file:///usr/share/backgrounds/gnome/adwaita-timed.xml'</default>
<summary>Picture URI</summary>
<description>
URI to use for the background image. Not that the backend only supports
local (file://) URIs.
</description>
</key>
<key name="picture-opacity" type="i">
<range min="0" max="100"/>
<default>100</default>
<summary>Picture Opacity</summary>
<description>
Opacity with which to draw the background picture.
</description>
</key>
<key name="primary-color" type="s">
<default>'#000000'</default>
<summary>Primary Color</summary>
<description>
Left or Top color when drawing gradients, or the solid color.
</description>
</key>
<key name="secondary-color" type="s">
<default>'#000000'</default>
<summary>Secondary Color</summary>
<description>
Right or Bottom color when drawing gradients, not used for solid color.
</description>
</key>
<key name="color-shading-type" enum="org.cinnamon.desktop.CDesktopBackgroundShading">
<default>'solid'</default>
<summary>Color Shading Type</summary>
<description>
How to shade the background color. Possible values are "horizontal",
"vertical", and "solid".
</description>
</key>
</schema>
<schema id="org.cinnamon.desktop.background.slideshow" path="/org/cinnamon/desktop/background/slideshow/">
<key name="slideshow-enabled" type="b">
<default>false</default>
<summary>Whether or not to use a slideshow for the desktop background</summary>
<description>
This key defines the whether the desktop background shows one single wallpaper,
or a slideshow of images.
</description>
</key>
<key name="image-source" type="s">
<default>""</default>
<summary>Source to use for the background slideshow</summary>
<description>
This key defines the source for the slideshow to get images from.
</description>
</key>
<key name="delay" type="i">
<default>15</default>
<summary>Delay for the slideshow</summary>
<description>
This key defines the delay for the slideshow.
</description>
</key>
<key name="random-order" type="b">
<default>false</default>
<summary>Whether or not to play the images in random order</summary>
<description>
This key defines whether images are shown in order or chosen randomly.
</description>
</key>
<key name="slideshow-paused" type="b">
<default>false</default>
<summary>Whether the slideshow is currently playing or paused</summary>
<description>
This key defines whether the slideshow in currently in a playing or paused state.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,77 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id="org.cinnamon.desktop.default-applications" path="/org/cinnamon/desktop/applications/">
<child name="office" schema="org.cinnamon.desktop.default-applications.office"/>
<child name="terminal" schema="org.cinnamon.desktop.default-applications.terminal"/>
<child name="calculator" schema="org.cinnamon.desktop.default-applications.calculator"/>
</schema>
<schema id="org.cinnamon.desktop.default-applications.office" path="/org/cinnamon/desktop/applications/office/">
<child name="calendar" schema="org.cinnamon.desktop.default-applications.office.calendar"/>
<child name="tasks" schema="org.cinnamon.desktop.default-applications.office.tasks"/>
</schema>
<schema id="org.cinnamon.desktop.default-applications.office.calendar" path="/org/cinnamon/desktop/applications/office/calendar/">
<key name="exec" type="s">
<default>'evolution -c calendar'</default>
<summary>Default calendar</summary>
<description>
Default calendar application
</description>
</key>
<key name="needs-term" type="b">
<default>false</default>
<summary>Calendar needs terminal</summary>
<description>
Whether the default calendar application needs a terminal to run.
</description>
</key>
</schema>
<schema id="org.cinnamon.desktop.default-applications.office.tasks" path="/org/cinnamon/desktop/applications/office/tasks/">
<key name="exec" type="s">
<default>'evolution -c tasks'</default>
<summary>Default tasks</summary>
<description>
Default tasks application.
</description>
</key>
<key name="needs-term" type="b">
<default>false</default>
<summary>Tasks needs terminal</summary>
<description>
Whether the default tasks application needs a terminal to run.
</description>
</key>
</schema>
<schema id="org.cinnamon.desktop.default-applications.terminal" path="/org/cinnamon/desktop/applications/terminal/">
<key name="exec" type="s">
<default>'gnome-terminal'</default>
<summary>Terminal application</summary>
<description>
Terminal program to use when starting applications that require one.
</description>
</key>
<key name="exec-arg" type="s">
<default>'--'</default>
<summary>Exec Arguments</summary>
<description>
Argument used to execute programs in the terminal defined by the
'exec' key.
</description>
</key>
</schema>
<schema id="org.cinnamon.desktop.default-applications.calculator" path="/org/cinnamon/desktop/applications/calculator/">
<key name="exec" type="s">
<default>'gnome-calculator'</default>
<summary>Default calculator</summary>
<description>
Default calculator application.
</description>
</key>
<key name="needs-term" type="b">
<default>false</default>
<summary>Calculator needs terminal</summary>
<description>
Whether the default calculator application needs a terminal to run.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,253 +0,0 @@
<!-- This file is generated by glib-mkenums, do not modify it. This code is licensed under the same license as the containing project. Note that it links to GLib, so must comply with the LGPL linking clauses. -->
<schemalist>
<enum id='org.cinnamon.desktop.CDesktopProxyMode'>
<value nick='none' value='0'/>
<value nick='manual' value='1'/>
<value nick='auto' value='2'/>
</enum>
<enum id='org.cinnamon.desktop.CDesktopToolbarStyle'>
<value nick='both' value='0'/>
<value nick='both-horiz' value='1'/>
<value nick='icons' value='2'/>
<value nick='text' value='3'/>
</enum>
<enum id='org.cinnamon.desktop.CDesktopToolbarIconSize'>
<value nick='small' value='0'/>
<value nick='large' value='1'/>
</enum>
<enum id='org.cinnamon.desktop.CDesktopBackgroundStyle'>
<value nick='none' value='0'/>
<value nick='wallpaper' value='1'/>
<value nick='centered' value='2'/>
<value nick='scaled' value='3'/>
<value nick='stretched' value='4'/>
<value nick='zoom' value='5'/>
<value nick='spanned' value='6'/>
</enum>
<enum id='org.cinnamon.desktop.CDesktopBackgroundShading'>
<value nick='solid' value='0'/>
<value nick='vertical' value='1'/>
<value nick='horizontal' value='2'/>
</enum>
<enum id='org.cinnamon.desktop.CDesktopMouseDwellMode'>
<value nick='window' value='0'/>
<value nick='gesture' value='1'/>
</enum>
<enum id='org.cinnamon.desktop.CDesktopMouseDwellDirection'>
<value nick='left' value='0'/>
<value nick='right' value='1'/>
<value nick='up' value='2'/>
<value nick='down' value='3'/>
</enum>
<enum id='org.cinnamon.desktop.CDesktopTouchpadHandedness'>
<value nick='right' value='0'/>
<value nick='left' value='1'/>
<value nick='mouse' value='2'/>
</enum>
<enum id='org.cinnamon.desktop.CDesktopTouchpadClickMethod'>
<value nick='default' value='0'/>
<value nick='none' value='1'/>
<value nick='areas' value='2'/>
<value nick='fingers' value='3'/>
</enum>
<enum id='org.cinnamon.desktop.CDesktopDeviceSendEvents'>
<value nick='enabled' value='0'/>
<value nick='disabled' value='1'/>
<value nick='disabled-on-external-mouse' value='2'/>
</enum>
<enum id='org.cinnamon.desktop.CDesktopPointerAccelProfile'>
<value nick='default' value='0'/>
<value nick='flat' value='1'/>
<value nick='adaptive' value='2'/>
</enum>
<enum id='org.cinnamon.desktop.CDesktopScreensaverMode'>
<value nick='blank-only' value='0'/>
<value nick='random' value='1'/>
<value nick='single' value='2'/>
</enum>
<enum id='org.cinnamon.desktop.CDesktopMagnifierMouseTrackingMode'>
<value nick='none' value='0'/>
<value nick='centered' value='1'/>
<value nick='proportional' value='2'/>
<value nick='push' value='3'/>
</enum>
<enum id='org.cinnamon.desktop.CDesktopMagnifierScreenPosition'>
<value nick='none' value='0'/>
<value nick='full-screen' value='1'/>
<value nick='top-half' value='2'/>
<value nick='bottom-half' value='3'/>
<value nick='left-half' value='4'/>
<value nick='right-half' value='5'/>
</enum>
<enum id='org.cinnamon.desktop.CDesktopMagnifierLensShape'>
<value nick='none' value='0'/>
<value nick='square' value='1'/>
<value nick='horizontal' value='2'/>
<value nick='vertical' value='3'/>
</enum>
<enum id='org.cinnamon.desktop.CDesktopTitlebarAction'>
<value nick='toggle-shade' value='0'/>
<value nick='toggle-maximize' value='1'/>
<value nick='toggle-maximize-horizontally' value='2'/>
<value nick='toggle-maximize-vertically' value='3'/>
<value nick='toggle-stuck' value='4'/>
<value nick='toggle-above' value='5'/>
<value nick='minimize' value='6'/>
<value nick='none' value='7'/>
<value nick='lower' value='8'/>
<value nick='menu' value='9'/>
</enum>
<enum id='org.cinnamon.desktop.CDesktopTitlebarScrollAction'>
<value nick='shade' value='10'/>
<value nick='opacity' value='11'/>
<value nick='none' value='12'/>
</enum>
<enum id='org.cinnamon.desktop.CDesktopFocusMode'>
<value nick='click' value='0'/>
<value nick='sloppy' value='1'/>
<value nick='mouse' value='2'/>
</enum>
<enum id='org.cinnamon.desktop.CDesktopFocusNewWindows'>
<value nick='smart' value='0'/>
<value nick='strict' value='1'/>
</enum>
<enum id='org.cinnamon.desktop.CDesktopVisualBellType'>
<value nick='fullscreen-flash' value='0'/>
<value nick='frame-flash' value='1'/>
</enum>
<enum id='org.cinnamon.desktop.CDesktopTabletMapping'>
<value nick='absolute' value='0'/>
<value nick='relative' value='1'/>
</enum>
<enum id='org.cinnamon.desktop.CDesktopPadButtonAction'>
<value nick='none' value='0'/>
<value nick='help' value='1'/>
<value nick='switch-monitor' value='2'/>
<value nick='keybinding' value='3'/>
</enum>
<enum id='org.cinnamon.desktop.CDesktopStylusButtonAction'>
<value nick='default' value='0'/>
<value nick='middle' value='1'/>
<value nick='right' value='2'/>
<value nick='back' value='3'/>
<value nick='forward' value='4'/>
<value nick='disabled' value='5'/>
</enum>
<enum id='org.cinnamon.desktop.CDesktopNotificationScreenDisplay'>
<value nick='primary-screen' value='0'/>
<value nick='active-screen' value='1'/>
<value nick='fixed-screen' value='2'/>
</enum>
<enum id='org.cinnamon.desktop.CDesktopMediaKeyType'>
<value nick='mute' value='0'/>
<value nick='mute-quiet' value='1'/>
<value nick='volume-up' value='2'/>
<value nick='volume-up-quiet' value='3'/>
<value nick='volume-down' value='4'/>
<value nick='volume-down-quiet' value='5'/>
<value nick='mic-mute' value='6'/>
<value nick='eject' value='7'/>
<value nick='media' value='8'/>
<value nick='play' value='9'/>
<value nick='pause' value='10'/>
<value nick='stop' value='11'/>
<value nick='previous' value='12'/>
<value nick='next' value='13'/>
<value nick='rewind' value='14'/>
<value nick='forward' value='15'/>
<value nick='repeat' value='16'/>
<value nick='random' value='17'/>
<value nick='screenshot' value='18'/>
<value nick='screenshot-clip' value='19'/>
<value nick='separator' value='20'/>
<value nick='window-screenshot' value='21'/>
<value nick='window-screenshot-clip' value='22'/>
<value nick='area-screenshot' value='23'/>
<value nick='area-screenshot-clip' value='24'/>
<value nick='touchpad' value='25'/>
<value nick='touchpad-on' value='26'/>
<value nick='touchpad-off' value='27'/>
<value nick='logout' value='28'/>
<value nick='shutdown' value='29'/>
<value nick='home' value='30'/>
<value nick='calculator' value='31'/>
<value nick='search' value='32'/>
<value nick='email' value='33'/>
<value nick='screensaver' value='34'/>
<value nick='help' value='35'/>
<value nick='terminal' value='36'/>
<value nick='www' value='37'/>
<value nick='rotate-video-lock' value='38'/>
<value nick='screenreader' value='39'/>
<value nick='on-screen-keyboard' value='40'/>
<value nick='increase-text' value='41'/>
<value nick='decrease-text' value='42'/>
<value nick='toggle-contrast' value='43'/>
<value nick='suspend' value='44'/>
<value nick='hibernate' value='45'/>
<value nick='screen-brightness-up' value='46'/>
<value nick='screen-brightness-down' value='47'/>
<value nick='keyboard-brightness-up' value='48'/>
<value nick='keyboard-brightness-down' value='49'/>
<value nick='keyboard-brightness-toggle' value='50'/>
<value nick='battery' value='51'/>
<value nick='last' value='52'/>
</enum>
<enum id='org.cinnamon.desktop.Interface'>
<value nick='undefined' value='0'/>
<value nick='dvi' value='1'/>
<value nick='hdmi-a' value='2'/>
<value nick='hdmi-b' value='3'/>
<value nick='mddi' value='4'/>
<value nick='display-port' value='5'/>
</enum>
<enum id='org.cinnamon.desktop.ColorType'>
<value nick='undefined-color' value='0'/>
<value nick='monochrome' value='1'/>
<value nick='rgb' value='2'/>
<value nick='other-color' value='3'/>
</enum>
<enum id='org.cinnamon.desktop.StereoType'>
<value nick='no-stereo' value='0'/>
<value nick='field-right' value='1'/>
<value nick='field-left' value='2'/>
<value nick='two-way-right-on-even' value='3'/>
<value nick='two-way-left-on-even' value='4'/>
<value nick='four-way-interleaved' value='5'/>
<value nick='side-by-side' value='6'/>
</enum>
<enum id='org.cinnamon.desktop.GnomeDesktopThumbnailSize'>
<value nick='normal' value='0'/>
<value nick='large' value='1'/>
</enum>
<flags id='org.cinnamon.desktop.GnomeRRRotation'>
<value nick='rotation-next' value='0'/>
<value nick='rotation-0' value='1'/>
<value nick='rotation-90' value='2'/>
<value nick='rotation-180' value='4'/>
<value nick='rotation-270' value='8'/>
<value nick='reflect-x' value='16'/>
<value nick='reflect-y' value='32'/>
</flags>
<enum id='org.cinnamon.desktop.GnomeRRDpmsMode'>
<value nick='on' value='0'/>
<value nick='standby' value='1'/>
<value nick='suspend' value='2'/>
<value nick='off' value='3'/>
<value nick='unknown' value='4'/>
</enum>
<enum id='org.cinnamon.desktop.GnomeRRError'>
<value nick='unknown' value='0'/>
<value nick='no-randr-extension' value='1'/>
<value nick='randr-error' value='2'/>
<value nick='bounds-error' value='3'/>
<value nick='crtc-assignment' value='4'/>
<value nick='no-matching-config' value='5'/>
<value nick='no-dpms-extension' value='6'/>
</enum>
</schemalist>
<!-- Generated data ends here -->

View File

@@ -1,46 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id="org.cinnamon.desktop.input-sources"
path="/org/cinnamon/desktop/input-sources/">
<key name="current" type="u">
<default>0</default>
<summary>Current input source</summary>
<description>
The zero-based index into the input sources list specifying
the current one in effect. The value is automatically capped
to remain in the range [0, sources_length) as long as the
sources list isn't empty.
</description>
</key>
<key name="sources" type="a(ss)">
<default>[]</default>
<summary>List of input sources</summary>
<description>
List of input source identifiers available. Each source is
specified as a tuple of 2 strings. The first string is the
type and can be one of 'xkb' or 'ibus'. For 'xkb' sources the
second string is 'xkb_layout+xkb_variant' or just 'xkb_layout'
if a XKB variant isn't needed. For 'ibus' sources the second
string is the IBus engine name. An empty list means that the X
server's current XKB layout and variant won't be touched and
IBus won't be used.
</description>
</key>
<key name="xkb-options" type="as">
<default>[]</default>
<summary>List of XKB options</summary>
<description>
List of XKB options. Each option is an XKB option string as
defined by xkeyboard-config's rules files.
</description>
</key>
<key name="show-all-sources" type="b">
<default>false</default>
<summary>Show all installed input sources</summary>
<description>
Makes all installed input sources available for choosing in
System Settings.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,301 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id="org.cinnamon.desktop.interface" path="/org/cinnamon/desktop/interface/">
<key name="toolkit-accessibility" type="b">
<default>false</default>
<summary>Enable Toolkit Accessibility</summary>
<description>
Whether toolkits should load accessibility related modules.
</description>
</key>
<key name="enable-animations" type="b">
<default>true</default>
<summary>Enable Animations</summary>
<description>
Whether animations should be displayed. Note: This is a global key,
it changes the behaviour of the window manager, the panel etc.
</description>
</key>
<key name="gtk-enable-primary-paste" type="b">
<default>true</default>
<summary>Enable primary paste via middle-click</summary>
</key>
<key name="menus-have-tearoff" type="b">
<default>false</default>
<summary>Menus Have Tearoff</summary>
<description>
Whether menus should have a tearoff.
</description>
</key>
<key name="can-change-accels" type="b">
<default>false</default>
<summary>Can Change Accels</summary>
<description>
Whether the user can dynamically type a new accelerator when
positioned over an active menuitem.
</description>
</key>
<key name="toolbar-style" enum="org.cinnamon.desktop.CDesktopToolbarStyle">
<default>'both-horiz'</default>
<summary>Toolbar Style</summary>
<description>
Toolbar Style. Valid values are "both", "both-horiz", "icons",
and "text".
</description>
</key>
<key name="menus-have-icons" type="b">
<default>true</default>
<summary>Menus Have Icons</summary>
<description>
Whether menus may display an icon next to a menu entry.
</description>
</key>
<key name="buttons-have-icons" type="b">
<default>false</default>
<summary>Buttons Have Icons</summary>
<description>
Whether buttons may display an icon in addition to the button text.
</description>
</key>
<key name="menubar-detachable" type="b">
<default>false</default>
<summary>Menubar Detachable</summary>
<description>
Whether the user can detach menubars and move them around.
</description>
</key>
<key name="toolbar-detachable" type="b">
<default>false</default>
<summary>Toolbar Detachable</summary>
<description>
Whether the user can detach toolbars and move them around.
</description>
</key>
<key name="toolbar-icons-size" enum="org.cinnamon.desktop.CDesktopToolbarIconSize">
<default>'large'</default>
<summary>Toolbar Icon Size</summary>
<description>
Size of icons in toolbars, either "small" or "large".
</description>
</key>
<key name="cursor-blink" type="b">
<default>true</default>
<summary>Cursor Blink</summary>
<description>
Whether the cursor should blink.
</description>
</key>
<key name="cursor-blink-time" type="i">
<range min="100" max="2500"/>
<default>1200</default>
<summary>Cursor Blink Time</summary>
<description>
Length of the cursor blink cycle, in milliseconds.
</description>
</key>
<key name="cursor-blink-timeout" type="i">
<range min="1" max="2147483647"/>
<default>10</default>
<summary>Cursor Blink Timeout</summary>
<description>
Time after which the cursor stops blinking, in seconds.
</description>
</key>
<key name="icon-theme" type="s">
<default>'Adwaita'</default>
<summary>Icon Theme</summary>
<description>
Icon theme to use for the panel, nautilus etc.
</description>
</key>
<key name="icon-theme-backup" type="s">
<default>'gnome'</default>
<summary>Icon Theme Backup</summary>
<description>
This is used to store the current icon theme when high contrast is enabled.
</description>
</key>
<key name="gtk-theme" type="s">
<default>'Adwaita'</default>
<summary>Gtk+ Theme</summary>
<description>
Basename of the default theme used by gtk+.
</description>
</key>
<key name="gtk-theme-backup" type="s">
<default>'Adwaita'</default>
<summary>Gtk+ Theme Backup</summary>
<description>
This is used to store the current theme when enabling high contrast.
</description>
</key>
<key name="gtk-key-theme" type="s">
<default>'Default'</default>
<summary>Gtk+ Keybinding Theme</summary>
<description>
Basename of the default keybinding theme used by gtk+.
</description>
</key>
<key name="font-name" type="s">
<default>'Sans 9'</default>
<summary>Default font</summary>
<description>
Name of the default font used by gtk+.
</description>
</key>
<key name="text-scaling-factor" type="d">
<range min="0.5" max="3.0"/>
<default>1.0</default>
<summary>Text scaling factor</summary>
<description>
Factor used to enlarge or reduce text display, without changing font size.
</description>
</key>
<key name="gtk-im-preedit-style" type="s">
<default>'callback'</default>
<summary>GTK IM Preedit Style</summary>
<description>
Name of the GTK+ input method Preedit Style used by gtk+.
</description>
</key>
<key name="scaling-factor" type="u">
<default>0</default>
<summary>Window scaling factor</summary>
<description>
Integer factor used to scale windows by. For use on high-dpi screens.
0 means pick automatically based on monitor.
</description>
</key>
<key name="upscale-fractional-scaling" type="b">
<default>false</default>
<summary>Achieve fractional scaling by scaling up.</summary>
<description>
Fractional scaling is usually achieved by setting the global scale factor to a higher value and then scaling down. Scaling up instead yields better performance but poorer quality - in certain configurations and hardware, this may be acceptable.
</description>
</key>
<key name="gtk-im-status-style" type="s">
<default>'callback'</default>
<summary>GTK IM Status Style</summary>
<description>
Name of the GTK+ input method Status Style used by gtk+.
</description>
</key>
<key name="gtk-im-module" type="s">
<default>''</default>
<summary>GTK IM Module</summary>
<description>
Name of the input method module used by GTK+.
</description>
</key>
<key name="menubar-accel" type="s">
<default>'F10'</default>
<summary>Menubar accelerator</summary>
<description>
Keyboard shortcut to open the menu bars.
</description>
</key>
<key name="show-input-method-menu" type="b">
<default>true</default>
<summary>Show the 'Input Methods' menu</summary>
<description>
Whether the context menus of entries and text views should offer to
change the input method.
</description>
</key>
<key name="show-unicode-menu" type="b">
<default>true</default>
<summary>Show the 'Unicode Control Character' menu</summary>
<description>
Whether the context menus of entries and text views should offer to
insert control characters.
</description>
</key>
<key name="cursor-theme" type="s">
<default>'Adwaita'</default>
<summary>Cursor theme</summary>
<description>Cursor theme name. Used only by Xservers that support the Xcursor extension.</description>
</key>
<key name="cursor-size" type="i">
<default>24</default>
<summary>Cursor size</summary>
<description>Size of the cursor used as cursor theme. Note, depending on the ui scale (hidpi), this number
may not represent the actual cursor size</description>
</key>
<key name="gtk-timeout-initial" type="i">
<default>200</default>
<summary>Timeout before click repeat</summary>
<description>Timeout in milliseconds before a click starts repeating (on spinner buttons for example).</description>
</key>
<key name="gtk-timeout-repeat" type="i">
<default>20</default>
<summary>Timeout between click repeats</summary>
<description>Timeout in milliseconds between repeated clicks when a button is left pressed.</description>
</key>
<key name="gtk-color-palette" type="s">
<default>'black:white:gray50:red:purple:blue:light blue:green:yellow:orange:lavender:brown:goldenrod4:dodger blue:pink:light green:gray10:gray30:gray75:gray90'</default>
<summary>Palette used in the color selector</summary>
<description>Palette used in the color selector as defined by the 'gtk-color-palette' setting</description>
</key>
<key name="gtk-color-scheme" type="s">
<default>''</default>
<summary>List of symbolic names and color equivalents</summary>
<description>A '\n' separated list of "name:color" as defined by the 'gtk-color-scheme' setting</description>
</key>
<key name="clock-use-24h" type="b">
<default>true</default>
<summary>Whether the clock displays in 24h format</summary>
<description>
Whether the clock displays in 24h format
</description>
</key>
<key name="clock-show-seconds" type="b">
<default>false</default>
<summary>Whether the clock shows seconds</summary>
<description>
If true, display seconds in the clock.
</description>
</key>
<key name="clock-show-date" type="b">
<default>false</default>
<summary>Show date in clock</summary>
<description>
If true, display date in the clock, in addition to time.
</description>
</key>
<key name="first-day-of-week" type="i">
<default>7</default>
<summary>First day of week in the calendar</summary>
<description>
Sets the first day of week, with 7 the locale default.
</description>
</key>
<key name="automatic-mnemonics" type="b">
<default>true</default>
<summary>Only show mnemonics on when the Alt key is pressed</summary>
<description>
Whether mnemonics should be automatically shown and hidden when the user
presses the Alt key.
</description>
</key>
<key name="gtk-overlay-scrollbars" type="b">
<default>true</default>
<summary>Enable or disable gtk overlay scrollbars</summary>
</key>
<key name="keyboard-layout-show-flags" type="b">
<default>true</default>
<summary>Prefer country flags to group names when showing keyboard layouts.</summary>
</key>
<key name="keyboard-layout-use-upper" type="b">
<default>false</default>
<summary>Prefer upper-case group names showing keyboard layouts. False for lowercase.</summary>
</key>
<key name="keyboard-layout-prefer-variant-names" type="b">
<default>false</default>
<summary>Prefer variant names instead of country codes when showing keyboard layouts.</summary>
</key>
<key name="high-contrast" type="b">
<default>false</default>
<summary>not currently used</summary>
</key>
</schema>
</schemalist>

View File

@@ -1,60 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id="org.cinnamon.desktop.keybindings" path="/org/cinnamon/desktop/keybindings/">
<key name="custom-list" type="as">
<default>[]</default>
<summary>List of gsettings custom keybinding paths to look in</summary>
<description>
</description>
</key>
<key name="looking-glass-keybinding" type="as">
<default>['&lt;Super&gt;l']</default>
<summary>Keybinding for toggling the looking glass</summary>
<description>
Stores the keybinding for toggling the looking glass window
</description>
</key>
<key name="show-desklets" type="as">
<default>['&lt;Super&gt;s']</default>
<summary>Show desklets</summary>
<description>Raises desklets above windows</description>
</key>
<key name="magnifier-zoom-in" type="as">
<default>['&lt;Alt&gt;&lt;Super&gt;equal']</default>
<summary>Magnifier zoom in</summary>
<description>Binding for the magnifier to zoom in</description>
</key>
<key name="magnifier-zoom-out" type="as">
<default>['&lt;Alt&gt;&lt;Super&gt;minus']</default>
<summary>Magnifier zoom out</summary>
<description>Binding for the magnifier to zoom out</description>
</key>
<key name="pointer-next-monitor" type="as">
<default>[]</default>
<summary>Warp the pointer to the next monitor</summary>
</key>
<key name="pointer-previous-monitor" type="as">
<default>[]</default>
<summary>Warp the pointer to the previous monitor</summary>
</key>
</schema>
<schema id="org.cinnamon.desktop.keybindings.custom-keybinding">
<key name="name" type="s">
<default>''</default>
<summary>Name</summary>
<description>Name of the custom binding</description>
</key>
<key name="binding" type="as">
<default>[]</default>
<summary>Binding</summary>
<description>Binding for the custom binding</description>
</key>
<key name="command" type="s">
<default>''</default>
<summary>Command</summary>
<description>Command to run when the binding is invoked</description>
</key>
</schema>
</schemalist>

View File

@@ -1,274 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id="org.cinnamon.desktop.keybindings.media-keys" path="/org/cinnamon/desktop/keybindings/media-keys/">
<key name="calculator" type="as">
<default>['XF86Calculator']</default>
<summary>Launch calculator</summary>
<description>Binding to launch the calculator.</description>
</key>
<key name="email" type="as">
<default>['XF86Mail']</default>
<summary>Launch email client</summary>
<description>Binding to launch the email client.</description>
</key>
<key name="eject" type="as">
<default>['XF86Eject']</default>
<summary>Eject</summary>
<description>Binding to eject an optical disc.</description>
</key>
<key name="help" type="as">
<default>['']</default>
<summary>Launch help browser</summary>
<description>Binding to launch the help browser.</description>
</key>
<key name="home" type="as">
<default>['&lt;Super&gt;e', 'XF86Explorer']</default>
<summary>Home folder</summary>
<description>Binding to open the Home folder.</description>
</key>
<key name="media" type="as">
<default>['XF86AudioMedia']</default>
<summary>Launch media player</summary>
<description>Binding to launch the media player.</description>
</key>
<key name="next" type="as">
<default>['XF86AudioNext']</default>
<summary>Next track</summary>
<description>Binding to skip to next track.</description>
</key>
<key name="pause" type="as">
<default>['XF86AudioPause']</default>
<summary>Pause playback</summary>
<description>Binding to pause playback.</description>
</key>
<key name="play" type="as">
<default>['XF86AudioPlay']</default>
<summary>Play (or play/pause)</summary>
<description>Binding to start playback (or toggle play/pause).</description>
</key>
<key name="logout" type="as">
<default>['&lt;Control&gt;&lt;Alt&gt;Delete']</default>
<summary>Log out</summary>
<description>Binding to log out.</description>
</key>
<key name="shutdown" type="as">
<default>['&lt;Control&gt;&lt;Alt&gt;End', 'XF86PowerOff']</default>
<summary>Shut down the computer</summary>
<description>Binding to shut down.</description>
</key>
<key name="restart-cinnamon" type="as">
<default>['&lt;Control&gt;&lt;Alt&gt;Escape']</default>
<summary>Restart Cinnamon</summary>
<description>Binding to restart Cinnamon.</description>
</key>
<key name="previous" type="as">
<default>['XF86AudioPrev']</default>
<summary>Previous track</summary>
<description>Binding to skip to previous track.</description>
</key>
<key name="screensaver" type="as">
<default>['&lt;Control&gt;&lt;Alt&gt;l','XF86ScreenSaver']</default>
<summary>Lock screen</summary>
<description>Binding to lock the screen.</description>
</key>
<key name="search" type="as">
<default>['XF86Search']</default>
<summary>Search</summary>
<description>Binding to launch the search tool.</description>
</key>
<key name="stop" type="as">
<default>['XF86AudioStop']</default>
<summary>Stop playback</summary>
<description>Binding to stop playback.</description>
</key>
<key name="volume-down" type="as">
<default>['XF86AudioLowerVolume']</default>
<summary>Volume down</summary>
<description>Binding to lower the system volume.</description>
</key>
<key name="volume-mute" type="as">
<default>['XF86AudioMute']</default>
<summary>Volume mute</summary>
<description>Binding to mute the system volume.</description>
</key>
<key name="volume-up" type="as">
<default>['XF86AudioRaiseVolume']</default>
<summary>Volume up</summary>
<description>Binding to raise the system volume.</description>
</key>
<key name="mic-mute" type="as">
<default>['XF86AudioMicMute']</default>
<summary>Mic mute</summary>
<description>Binding to mute the system microphone.</description>
</key>
<key name="screenshot" type="as">
<default>['Print']</default>
<summary>Take a screenshot</summary>
<description>Binding to take a screenshot.</description>
</key>
<key name="window-screenshot" type="as">
<default>['&lt;Alt&gt;Print']</default>
<summary>Take a screenshot of a window</summary>
<description>Binding to take a screenshot of a window.</description>
</key>
<key name="area-screenshot" type="as">
<default>['&lt;Shift&gt;Print']</default>
<summary>Take a screenshot of an area</summary>
<description>Binding to take a screenshot of an area.</description>
</key>
<key name="screenshot-clip" type="as">
<default>['&lt;Control&gt;Print']</default>
<summary>Copy a screenshot to clipboard</summary>
<description>Binding to copy a screenshot to clipboard.</description>
</key>
<key name="window-screenshot-clip" type="as">
<default>['&lt;Control&gt;&lt;Alt&gt;Print']</default>
<summary>Copy a screenshot of a window to clipboard</summary>
<description>Binding to copy a screenshot of a window to clipboard.</description>
</key>
<key name="area-screenshot-clip" type="as">
<default>['&lt;Control&gt;&lt;Shift&gt;Print']</default>
<summary>Copy a screenshot of an area to clipboard</summary>
<description>Binding to copy a screenshot of an area to clipboard.</description>
</key>
<key name="terminal" type="as">
<default>['&lt;Primary&gt;&lt;Alt&gt;t']</default>
<summary>Launch terminal</summary>
<description>Binding to launch the terminal.</description>
</key>
<key name="www" type="as">
<default>['XF86WWW']</default>
<summary>Launch web browser</summary>
<description>Binding to launch the web browser.</description>
</key>
<key name="screenreader" type="as">
<default>['&lt;Alt&gt;&lt;Super&gt;s']</default>
<summary>Toggle screen reader</summary>
<description>Binding to start the screen reader</description>
</key>
<key name="on-screen-keyboard" type="as">
<default>['']</default>
<summary>Toggle on-screen keyboard</summary>
<description>Binding to show the on-screen keyboard</description>
</key>
<key name="increase-text-size" type="as">
<default>['']</default>
<summary>Increase text size</summary>
<description>Binding to increase the text size</description>
</key>
<key name="decrease-text-size" type="as">
<default>['']</default>
<summary>Decrease text size</summary>
<description>Binding to decrease the text size</description>
</key>
<key name="toggle-contrast" type="as">
<default>['']</default>
<summary>Toggle contrast</summary>
<description>Binding to toggle the interface contrast</description>
</key>
<key name="touchpad-toggle" type="as">
<default>['XF86TouchpadToggle']</default>
<summary>Toggle the touchpad on and off</summary>
<description>Toggle the touchpad on and off</description>
</key>
<key name="touchpad-on" type="as">
<default>['XF86TouchpadOn']</default>
<summary>Turn the touchpad on</summary>
<description>Turn the touchpad on</description>
</key>
<key name="touchpad-off" type="as">
<default>['XF86TouchpadOff']</default>
<summary>Turn the touchpad off</summary>
<description>Turn the touchpad off</description>
</key>
<key name="mute-quiet" type="as">
<default>['&lt;Alt&gt;XF86AudioMute']</default>
<summary>Mute the audio quietly</summary>
<description>Mute the audio quietly</description>
</key>
<key name="volume-up-quiet" type="as">
<default>['&lt;Alt&gt;XF86AudioRaiseVolume']</default>
<summary>Turn the volume up quietly</summary>
<description>Turn the volume up quietly</description>
</key>
<key name="volume-down-quiet" type="as">
<default>['&lt;Alt&gt;XF86AudioLowerVolume']</default>
<summary>Turn the volume down quietly</summary>
<description>Turn the volume down quietly</description>
</key>
<key name="audio-rewind" type="as">
<default>['XF86AudioRewind']</default>
<summary>Rewind the currently playing stream</summary>
<description>Rewind the currently playing stream</description>
</key>
<key name="audio-forward" type="as">
<default>['XF86AudioForward']</default>
<summary>Fast-forward the currently playing stream</summary>
<description>Fast-forward the currently playing stream</description>
</key>
<key name="audio-repeat" type="as">
<default>['XF86AudioRepeat']</default>
<summary>Toggle audio repeat modes</summary>
<description>Toggle audio repeat modes</description>
</key>
<key name="audio-random" type="as">
<default>['XF86AudioRandomPlay']</default>
<summary>Choose an audio track at random</summary>
<description>Choose an audio track at random</description>
</key>
<key name="video-outputs" type="as">
<default>[]</default>
<summary>obsolete - see switch-monitor in org.cinnamon.desktop.keybindings.wm</summary>
</key>
<key name="video-rotation" type="as">
<default>[]</default>
<summary>obsolete - see rotate-monitor in org.cinnamon.desktop.keybindings.wm</summary>
<description>Rotate display</description>
</key>
<key name="video-rotation-lock" type="as">
<default>['&lt;Super&gt;o']</default>
<summary>Orientation Lock</summary>
<description>Orientation Lock</description>
</key>
<key name="suspend" type="as">
<default>['XF86Sleep']</default>
<summary>Suspend the system</summary>
<description>Suspend the system</description>
</key>
<key name="hibernate" type="as">
<default>['XF86Suspend', 'XF86Hibernate']</default>
<summary>Hibernate the system</summary>
<description>Hibernate the system</description>
</key>
<key name="screen-brightness-up" type="as">
<default>['XF86MonBrightnessUp']</default>
<summary>Increase display brightness</summary>
<description>Increase display brightness</description>
</key>
<key name="screen-brightness-down" type="as">
<default>['XF86MonBrightnessDown']</default>
<summary>Decrease display brightness</summary>
<description>Decrease display brightness</description>
</key>
<key name="kbd-brightness-up" type="as">
<default>['XF86KbdBrightnessUp']</default>
<summary>Increase keyboard backlight brightness</summary>
<description>Increase keyboard backlight brightness</description>
</key>
<key name="kbd-brightness-down" type="as">
<default>['XF86KbdBrightnessDown']</default>
<summary>Decrease keyboard backlight brightness</summary>
<description>Decrease keyboard backlight brightness</description>
</key>
<key name="kbd-brightness-toggle" type="as">
<default>['XF86KbdLightOnOff']</default>
<summary>Toggle keyboard backlight</summary>
<description>Toggle keyboard backlight</description>
</key>
<key name="battery" type="as">
<default>['XF86Battery']</default>
<summary>Display battery status</summary>
<description>Display battery status</description>
</key>
</schema>
</schemalist>

View File

@@ -1,360 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema path="/org/cinnamon/desktop/keybindings/wm/" id="org.cinnamon.desktop.keybindings.wm">
<key type="as" name="toggle-recording">
<default><![CDATA[['<Control><Shift><Alt>r']]]></default>
</key>
<key type="as" name="push-tile-left">
<default><![CDATA[['<Super>Left']]]></default>
</key>
<key type="as" name="push-tile-right">
<default><![CDATA[['<Super>Right']]]></default>
</key>
<key type="as" name="push-tile-up">
<default><![CDATA[['<Super>Up']]]></default>
</key>
<key type="as" name="push-tile-down">
<default><![CDATA[['<Super>Down']]]></default>
</key>
<key type="as" name="push-snap-left">
<default>[]</default>
<summary>obsolete</summary>
</key>
<key type="as" name="push-snap-right">
<default>[]</default>
<summary>obsolete</summary>
</key>
<key type="as" name="push-snap-up">
<default>[]</default>
<summary>obsolete</summary>
</key>
<key type="as" name="push-snap-down">
<default>[]</default>
<summary>obsolete</summary>
</key>
<key type="as" name="tab-popup-select">
<default>[]</default>
<summary>Select window from tab popup</summary>
</key>
<key type="as" name="tab-popup-cancel">
<default>[]</default>
<summary>Cancel tab popup</summary>
</key>
<key type="as" name="switch-to-workspace-1">
<default>[]</default>
<summary>Switch to workspace 1</summary>
</key>
<key type="as" name="switch-to-workspace-2">
<default>[]</default>
<summary>Switch to workspace 2</summary>
</key>
<key type="as" name="switch-to-workspace-3">
<default>[]</default>
<summary>Switch to workspace 3</summary>
</key>
<key type="as" name="switch-to-workspace-4">
<default>[]</default>
<summary>Switch to workspace 4</summary>
</key>
<key type="as" name="switch-to-workspace-5">
<default>[]</default>
<summary>Switch to workspace 5</summary>
</key>
<key type="as" name="switch-to-workspace-6">
<default>[]</default>
<summary>Switch to workspace 6</summary>
</key>
<key type="as" name="switch-to-workspace-7">
<default>[]</default>
<summary>Switch to workspace 7</summary>
</key>
<key type="as" name="switch-to-workspace-8">
<default>[]</default>
<summary>Switch to workspace 8</summary>
</key>
<key type="as" name="switch-to-workspace-9">
<default>[]</default>
<summary>Switch to workspace 9</summary>
</key>
<key type="as" name="switch-to-workspace-10">
<default>[]</default>
<summary>Switch to workspace 10</summary>
</key>
<key type="as" name="switch-to-workspace-11">
<default>[]</default>
<summary>Switch to workspace 11</summary>
</key>
<key type="as" name="switch-to-workspace-12">
<default>[]</default>
<summary>Switch to workspace 12</summary>
</key>
<key type="as" name="switch-to-workspace-left">
<default><![CDATA[['<Control><Alt>Left']]]></default>
<summary>Switch to workspace left</summary>
</key>
<key type="as" name="switch-to-workspace-right">
<default><![CDATA[['<Control><Alt>Right']]]></default>
<summary>Switch to workspace right</summary>
</key>
<key type="as" name="switch-to-workspace-up">
<default><![CDATA[['<Control><Alt>Up','<Alt>F1']]]></default>
<summary>Switch to workspace above</summary>
</key>
<key type="as" name="switch-to-workspace-down">
<default><![CDATA[['<Control><Alt>Down']]]></default>
<summary>Switch to workspace below</summary>
</key>
<key type="as" name="switch-group">
<default><![CDATA[['<Alt>Above_Tab']]]></default>
<summary>Switch windows of an application</summary>
</key>
<key type="as" name="switch-group-backward">
<default><![CDATA[['<Shift><Alt>Above_Tab']]]></default>
<summary>Reverse switch windows of an application</summary>
</key>
<key type="as" name="switch-windows">
<default><![CDATA[['<Alt>Tab']]]></default>
<summary>Switch applications</summary>
</key>
<key type="as" name="switch-windows-backward">
<default><![CDATA[['<Shift><Alt>Tab']]]></default>
<summary>Reverse switch applications</summary>
</key>
<key type="as" name="switch-panels">
<default><![CDATA[['<Control><Alt>Tab']]]></default>
<summary>Switch system controls</summary>
</key>
<key type="as" name="switch-panels-backward">
<default><![CDATA[['<Shift><Control><Alt>Tab']]]></default>
<summary>Reverse switch system controls</summary>
</key>
<key type="as" name="show-desktop">
<default><![CDATA[['<Super>d']]]></default>
<summary>Hide all normal windows</summary>
</key>
<key type="as" name="panel-run-dialog">
<default><![CDATA[['<Alt>F2']]]></default>
<summary>Show the run command prompt</summary>
</key>
<key type="as" name="set-spew-mark">
<default>[]</default>
<summary>Don&apos;t use</summary>
</key>
<key type="as" name="activate-window-menu">
<default><![CDATA[['<Alt>space']]]></default>
<summary>Activate the window menu</summary>
</key>
<key type="as" name="toggle-fullscreen">
<default>[]</default>
<summary>Toggle fullscreen mode</summary>
</key>
<key type="as" name="toggle-maximized">
<default><![CDATA[['<Alt>F10']]]></default>
<summary>Toggle maximization state</summary>
</key>
<key type="as" name="toggle-above">
<default>[]</default>
<summary>Toggle window always appearing on top</summary>
</key>
<key type="as" name="maximize">
<default>[]</default>
<summary>Maximize window</summary>
</key>
<key type="as" name="unmaximize">
<default><![CDATA[['<Alt>F5']]]></default>
<summary>Restore window</summary>
</key>
<key type="as" name="toggle-shaded">
<default>[]</default>
<summary>Toggle shaded state</summary>
</key>
<key type="as" name="minimize">
<default>[]</default>
<summary>Minimize window</summary>
</key>
<key type="as" name="close">
<default><![CDATA[['<Alt>F4']]]></default>
<summary>Close window</summary>
</key>
<key type="as" name="begin-move">
<default><![CDATA[['<Alt>F7']]]></default>
<summary>Move window</summary>
</key>
<key type="as" name="begin-resize">
<default><![CDATA[['<Alt>F8']]]></default>
<summary>Resize window</summary>
</key>
<key type="as" name="toggle-on-all-workspaces">
<default>[]</default>
<summary>Toggle window on all workspaces or one</summary>
</key>
<key type="as" name="move-to-workspace-1">
<default>[]</default>
<summary>Move window to workspace 1</summary>
</key>
<key type="as" name="move-to-workspace-2">
<default>[]</default>
<summary>Move window to workspace 2</summary>
</key>
<key type="as" name="move-to-workspace-3">
<default>[]</default>
<summary>Move window to workspace 3</summary>
</key>
<key type="as" name="move-to-workspace-4">
<default>[]</default>
<summary>Move window to workspace 4</summary>
</key>
<key type="as" name="move-to-workspace-5">
<default>[]</default>
<summary>Move window to workspace 5</summary>
</key>
<key type="as" name="move-to-workspace-6">
<default>[]</default>
<summary>Move window to workspace 6</summary>
</key>
<key type="as" name="move-to-workspace-7">
<default>[]</default>
<summary>Move window to workspace 7</summary>
</key>
<key type="as" name="move-to-workspace-8">
<default>[]</default>
<summary>Move window to workspace 8</summary>
</key>
<key type="as" name="move-to-workspace-9">
<default>[]</default>
<summary>Move window to workspace 9</summary>
</key>
<key type="as" name="move-to-workspace-10">
<default>[]</default>
<summary>Move window to workspace 10</summary>
</key>
<key type="as" name="move-to-workspace-11">
<default>[]</default>
<summary>Move window to workspace 11</summary>
</key>
<key type="as" name="move-to-workspace-12">
<default>[]</default>
<summary>Move window to workspace 12</summary>
</key>
<key type="as" name="move-to-workspace-left">
<default><![CDATA[['<Control><Shift><Alt>Left']]]></default>
<summary>Move window one workspace to the left</summary>
</key>
<key type="as" name="move-to-workspace-right">
<default><![CDATA[['<Control><Shift><Alt>Right']]]></default>
<summary>Move window one workspace to the right</summary>
</key>
<key type="as" name="move-to-workspace-up">
<default><![CDATA[['<Control><Shift><Alt>Up']]]></default>
<summary>Move window one workspace up</summary>
</key>
<key type="as" name="move-to-workspace-down">
<default><![CDATA[['<Control><Shift><Alt>Down']]]></default>
<summary>Move window one workspace down</summary>
</key>
<key type="as" name="move-to-workspace-new">
<default>[]</default>
<summary>Move window to a new workspace</summary>
</key>
<key type="as" name="move-to-monitor-left">
<default><![CDATA[['<Super><Shift>Left']]]></default>
<summary>Move window one monitor to the left</summary>
</key>
<key type="as" name="move-to-monitor-right">
<default><![CDATA[['<Super><Shift>Right']]]></default>
<summary>Move window one monitor to the right</summary>
</key>
<key type="as" name="move-to-monitor-up">
<default><![CDATA[['<Super><Shift>Up']]]></default>
<summary>Move window one monitor up</summary>
</key>
<key type="as" name="move-to-monitor-down">
<default><![CDATA[['<Super><Shift>Down']]]></default>
<summary>Move window one monitor down</summary>
</key>
<key type="as" name="raise-or-lower">
<default>[]</default>
<summary>Raise window if covered, otherwise lower it</summary>
</key>
<key type="as" name="raise">
<default>[]</default>
<summary>Raise window above other windows</summary>
</key>
<key type="as" name="lower">
<default>[]</default>
<summary>Lower window below other windows</summary>
</key>
<key type="as" name="maximize-vertically">
<default>[]</default>
<summary>Maximize window vertically</summary>
</key>
<key type="as" name="maximize-horizontally">
<default>[]</default>
<summary>Maximize window horizontally</summary>
</key>
<key type="as" name="move-to-corner-nw">
<default>[]</default>
<summary>Move window to top left corner</summary>
</key>
<key type="as" name="move-to-corner-ne">
<default>[]</default>
<summary>Move window to top right corner</summary>
</key>
<key type="as" name="move-to-corner-sw">
<default>[]</default>
<summary>Move window to bottom left corner</summary>
</key>
<key type="as" name="move-to-corner-se">
<default>[]</default>
<summary>Move window to bottom right corner</summary>
</key>
<key type="as" name="move-to-side-n">
<default>[]</default>
<summary>Move window to top edge of screen</summary>
</key>
<key type="as" name="move-to-side-s">
<default>[]</default>
<summary>Move window to bottom edge of screen</summary>
</key>
<key type="as" name="move-to-side-e">
<default>[]</default>
<summary>Move window to right side of screen</summary>
</key>
<key type="as" name="move-to-side-w">
<default>[]</default>
<summary>Move window to left side of screen</summary>
</key>
<key type="as" name="move-to-center">
<default>[]</default>
<summary>Move window to center of screen</summary>
</key>
<key type="as" name="increase-opacity">
<default>[]</default>
<summary>Increase the opacity of the current window</summary>
</key>
<key type="as" name="decrease-opacity">
<default>[]</default>
<summary>Decrease the opacity of the current window</summary>
</key>
<key name="switch-monitor" type="as">
<default><![CDATA[['<Super>p','XF86Display']]]></default>
<summary>Switch monitor configurations</summary>
</key>
<key name="rotate-monitor" type="as">
<default><![CDATA[['XF86RotateWindows']]]></default>
<summary>Rotates the built-in monitor configuration</summary>
</key>
</schema>
</schemalist>

View File

@@ -1,67 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id="org.cinnamon.desktop.lockdown" path="/org/cinnamon/desktop/lockdown/">
<key name="disable-command-line" type="b">
<default>false</default>
<summary>Disable command line</summary>
<description>
Prevent the user from accessing the terminal or specifying a command
line to be executed. For example, this would disable access to the
panel's "Run Application" dialog.
</description>
</key>
<key name="disable-save-to-disk" type="b">
<default>false</default>
<summary>Disable saving files to disk</summary>
<description>
Prevent the user from saving files to disk. For example, this would
disable access to all applications' "Save as" dialogs.
</description>
</key>
<key name="disable-printing" type="b">
<default>false</default>
<summary>Disable printing</summary>
<description>
Prevent the user from printing. For example, this would disable access
to all applications' "Print" dialogs.
</description>
</key>
<key name="disable-print-setup" type="b">
<default>false</default>
<summary>Disable print setup</summary>
<description>
Prevent the user from modifying print settings. For example, this would
disable access to all applications' "Print Setup" dialogs.
</description>
</key>
<key name="disable-user-switching" type="b">
<default>false</default>
<summary>Disable user switching</summary>
<description>
Prevent the user from switching to another account while his session
is active.
</description>
</key>
<key name="disable-lock-screen" type="b">
<default>false</default>
<summary>Disable lock screen</summary>
<description>
Prevent the user to lock his screen.
</description>
</key>
<key name="disable-application-handlers" type="b">
<default>false</default>
<summary>Disable URL and MIME type handlers</summary>
<description>
Prevent running any URL or MIME type handler applications.
</description>
</key>
<key name="disable-log-out" type="b">
<default>false</default>
<summary>Disable log out</summary>
<description>
Prevent the user from logging out.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,35 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id="org.cinnamon.desktop.media-handling" path="/org/cinnamon/desktop/media-handling/">
<key name="automount" type="b">
<default>true</default>
<summary>Whether to automatically mount media</summary>
<description>If set to true, then Nautilus will automatically mount media such as user-visible hard disks and removable media on start-up and media insertion.</description>
</key>
<key name="automount-open" type="b">
<default>true</default>
<summary>Whether to automatically open a folder for automounted media</summary>
<description>If set to true, then Nautilus will automatically open a folder when media is automounted. This only applies to media where no known x-content/* type was detected; for media where a known x-content type is detected, the user configurable action will be taken instead.</description>
</key>
<key name="autorun-never" type="b">
<default>false</default>
<summary>Never prompt or autorun/autostart programs when media are inserted</summary>
<description>If set to true, then Nautilus will never prompt nor autorun/autostart programs when a medium is inserted.</description>
</key>
<key name="autorun-x-content-start-app" type="as">
<default>[ 'x-content/unix-software' ]</default>
<summary>List of x-content/* types where the preferred application will be launched</summary>
<description>List of x-content/* types for which the user have chosen to start an application in the preference capplet. The preferred application for the given type will be started on insertion on media matching these types.</description>
</key>
<key name="autorun-x-content-ignore" type="as">
<default>[]</default>
<summary>List of x-content/* types set to "Do Nothing"</summary>
<description>List of x-content/* types for which the user have chosen "Do Nothing" in the preference capplet. No prompt will be shown nor will any matching application be started on insertion of media matching these types.</description>
</key>
<key name="autorun-x-content-open-folder" type="as">
<default>[]</default>
<summary>List of x-content/* types set to "Open Folder"</summary>
<description>List of x-content/* types for which the user have chosen "Open Folder" in the preferences capplet. A folder window will be opened on insertion of media matching these types.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,64 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema path="/org/cinnamon/desktop/notifications/" id="org.cinnamon.desktop.notifications">
<key type="b" name="fade-on-mouseover">
<default>true</default>
<summary>Notifications fade out</summary>
<description>Set this to TRUE to allow notifications to fade under the mouse.</description>
</key>
<key type="b" name="remove-old">
<default>false</default>
<summary>Remove old notifications</summary>
<description>Check this to automatically remove old notifications.</description>
</key>
<key type="i" name="timeout">
<default>1800</default>
<summary>Notification timeout</summary>
<description>Duration to keep a notification stored in persistence.</description>
</key>
<key type="i" name="fade-opacity">
<default>40</default>
<range min="0" max="100" />
<summary>Opacity (percent) to use when mousing over a notification</summary>
<description>Opacity (percent) to use for notification fades</description>
</key>
<key type="b" name="display-notifications">
<default>true</default>
<summary>Whether notifications are to be displayed</summary>
</key>
<key type="b" name="bottom-notifications">
<default>false</default>
<summary>Whether notifications are displayed on the bottom side of the screen</summary>
</key>
<key name="notification-screen-display"
enum="org.cinnamon.desktop.CDesktopNotificationScreenDisplay">
<default>'primary-screen'</default>
<summary>Define which screen(s) to use for displaying notifications</summary>
<description>
This option provides control over how newly created notifications are displayed.
It has three possible values: "primary-screen" which shows notifications only on
the primary display, "active-screen" which shows subsequent notifications only on
the display where the mouse is located, and "fixed-screen" which shows
notifications on a fixed display number if it exists and the primary display if
it does not exist.
</description>
</key>
<key type="i" name="notification-fixed-screen">
<default>1</default>
<summary>Fixed screen number for displaying notifications</summary>
<description>
The fixed display number to use for displaying notifications if it exists,
where the primary display is last. If the fixed screen number does
not exist, the primary display is used instead.
</description>
</key>
<key type="i" name="notification-duration">
<default>4</default>
<summary>How long notifications are displayed before disappearing</summary>
</key>
<key type="b" name="fullscreen-notifications">
<default>false</default>
<summary>Whether notifications are displayed over fullscreen windows</summary>
</key>
</schema>
</schemalist>

View File

@@ -1,228 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.cinnamon.desktop.peripherals" path="/org/cinnamon/desktop/peripherals/">
<child name="touchpad" schema="org.cinnamon.desktop.peripherals.touchpad"/>
<child name="keyboard" schema="org.cinnamon.desktop.peripherals.keyboard"/>
<child name="mouse" schema="org.cinnamon.desktop.peripherals.mouse"/>
<child name="trackball" schema="org.cinnamon.desktop.peripherals.trackball"/>
<child name="tablet" schema="org.cinnamon.desktop.peripherals.tablet"/>
<child name="touchscreen" schema="org.cinnamon.desktop.peripherals.touchscreen"/>
</schema>
<schema id="org.cinnamon.desktop.peripherals.touchpad" path="/org/cinnamon/desktop/peripherals/touchpad/">
<key name="edge-scrolling-enabled" type="b">
<default>false</default>
<summary>Whether edge scrolling is enabled</summary>
<description>When enabled, touchpads that support edge scrolling will have that feature enabled.</description>
</key>
<key name="two-finger-scrolling-enabled" type="b">
<default>true</default>
<summary>Whether edge scrolling is enabled</summary>
<description>When enabled, touchpads that support two-finger scrolling will have that feature enabled.</description>
</key>
<key name="disable-while-typing" type="b">
<default>true</default>
<summary>Whether to disable the touchpad while typing</summary>
<description>When enabled, touchpads will be disabled while typing on the keyboard.</description>
</key>
<key name="tap-to-click" type="b">
<default>true</default>
<summary>Enable mouse clicks with touchpad</summary>
<description>Set this to TRUE to be able to send mouse clicks by tapping on the touchpad.</description>
</key>
<key name="tap-and-drag" type="b">
<default>true</default>
<summary>Enable tap-and-drag with touchpad</summary>
<description>Set this to TRUE to be able to start a drag by tapping and immediately moving the finger thats now pressed on the touchpad.</description>
</key>
<key name="send-events" enum="org.cinnamon.desktop.CDesktopDeviceSendEvents">
<default>'enabled'</default>
<summary>Touchpad enabled</summary>
<description>Defines the situations in which the touchpad is enabled.</description>
</key>
<key name="left-handed" enum="org.cinnamon.desktop.CDesktopTouchpadHandedness">
<default>'mouse'</default>
<summary>Touchpad button orientation</summary>
<description>Swap left and right mouse buttons for left-handed mice with “left”, “right” for right-handed, “mouse” to follow the mouse setting.</description>
</key>
<key name="speed" type="d">
<default>0</default>
<summary>Pointer speed</summary>
<description>Pointer speed for the touchpad. Accepted values are in the [-1..1] range (from “unaccelerated” to “fast”). A value of 0 is the system default.</description>
<range min="-1" max="1"/>
</key>
<key name="natural-scroll" type="b">
<default>true</default>
<summary>Natural scrolling</summary>
<description>Set this to TRUE to enable natural (reverse) scrolling for touchpads.</description>
</key>
<key name="click-method" enum="org.cinnamon.desktop.CDesktopTouchpadClickMethod">
<default>'default'</default>
<summary>Click method</summary>
<description>How to generate software-emulated buttons, either disabled (“none”), through specific areas (“areas”), number of fingers (“fingers”) or left as hardware default (“default”).</description>
</key>
<key name="middle-click-emulation" type="b">
<default>false</default>
<summary>Emulate middle click</summary>
<description>Set this to TRUE to enable middle click during simultaneous left and right click.</description>
</key>
</schema>
<schema id="org.cinnamon.desktop.peripherals.keyboard" path="/org/cinnamon/desktop/peripherals/keyboard/">
<key name="repeat" type="b">
<default>true</default>
<summary>Keyboard repeat</summary>
<description>Set this to TRUE to enable keyboard repeat.</description>
</key>
<key name="repeat-interval" type="u">
<default>30</default>
<summary>Key Repeat Interval</summary>
<description>Delay between repeats in milliseconds.</description>
</key>
<key name="delay" type="u">
<default>500</default>
<summary>Initial Key Repeat Delay</summary>
<description>Initial key repeat delay in milliseconds.</description>
</key>
<key name="remember-numlock-state" type="b">
<default>true</default>
<summary>Remember NumLock state</summary>
<description>When set to true, GNOME will remember the state of the NumLock LED between sessions.</description>
</key>
<key name="numlock-state" type="b">
<default>false</default>
<summary>NumLock state</summary>
<description>The remembered state of the NumLock LED.</description>
</key>
</schema>
<schema id="org.cinnamon.desktop.peripherals.mouse" path="/org/cinnamon/desktop/peripherals/mouse/">
<key name="left-handed" type="b">
<default>false</default>
<summary>Mouse button orientation</summary>
<description>Swap left and right mouse buttons for left-handed mice.</description>
</key>
<key name="speed" type="d">
<default>0</default>
<summary>Pointer speed</summary>
<description>Pointer speed for mice. Accepted values are in the [-1..1] range (from “unaccelerated” to “fast”). A value of 0 is the system default.</description>
<range min="-1" max="1"/>
</key>
<key name="natural-scroll" type="b">
<default>false</default>
<summary>Natural scrolling</summary>
<description>Set this to TRUE to enable natural (reverse) scrolling for mice.</description>
</key>
<key name="accel-profile" enum="org.cinnamon.desktop.CDesktopPointerAccelProfile">
<default>'default'</default>
<summary>Acceleration profile</summary>
<description>Acceleration profile used for connected mice. The acceleration profile can be set to either default (“default”) which uses the default acceleration profile for each device, flat (“flat”), which accelerates by a device specific constant factor derived from the configured pointer speed, or adaptive (“adaptive”) which adapts the acceleration depending on the mouse movement. If a mouse doesnt support the configured profile, “default” will be used.</description>
</key>
<key name="middle-click-emulation" type="b">
<default>false</default>
<summary>Emulate middle click</summary>
<description>Set this to TRUE to enable middle click during simultaneous left and right click.</description>
</key>
<key name="double-click" type="i">
<default>400</default>
<summary>Double click time</summary>
<description> Length of a double click in milliseconds.</description>
</key>
<key name="drag-threshold" type="i">
<default>8</default>
<summary>Drag threshold</summary>
<description>Distance before a drag is started.</description>
</key>
<key name="locate-pointer" type="b">
<default>false</default>
<summary>Highlights the current location of the pointer when the Control key is pressed and released.</summary>
</key>
</schema>
<schema id="org.cinnamon.desktop.peripherals.tablet">
<key name="output" type="as">
<default>["", "", ""]</default>
<summary>Drawing tablet mapping</summary>
<description>EDID information of the output the tablet is mapped to. Must be in the format [vendor, product, serial]. ["","",""] relies on automatic mapping.</description>
</key>
<key name="mapping" enum="org.cinnamon.desktop.CDesktopTabletMapping">
<default>'absolute'</default>
<summary>Tablet mapping</summary>
<description>How input affects the pointer on the screen</description>
</key>
<key name="area" type="ad">
<default>[0, 0, 0, 0]</default>
<summary>Tablet area</summary>
<description>Dead area padding around the active area, in percentages. Respectively applied to left,right,top and bottom sides.</description>
</key>
<key name="keep-aspect" type="b">
<default>false</default>
<summary>Tablet aspect ratio</summary>
<description>Enable this to restrict the tablet area to match the aspect ratio of the output.</description>
</key>
<key name="left-handed" type="b">
<default>false</default>
<summary>Tablet left-handed mode</summary>
<description>Enable this to allow physically rotating the tablet for left-handed setups</description>
</key>
</schema>
<schema id="org.cinnamon.desktop.peripherals.tablet.stylus">
<key name="pressure-curve" type="ai">
<default>[0, 0, 100, 100]</default>
<summary>Stylus pressure curve</summary>
<description>Set this to x1, y1 and x2, y2 of the pressure curve applied to the stylus.</description>
</key>
<key name="eraser-pressure-curve" type="ai">
<default>[0, 0, 100, 100]</default>
<summary>Eraser pressure curve</summary>
<description>Set this to x1, y1 and x2, y2 of the pressure curve applied to the eraser.</description>
</key>
<key name="button-action" enum="org.cinnamon.desktop.CDesktopStylusButtonAction">
<default>'default'</default>
<summary>Button action</summary>
<description>Stylus button action, this button is located along the pen handle.</description>
</key>
<key name="secondary-button-action" enum="org.cinnamon.desktop.CDesktopStylusButtonAction">
<default>'default'</default>
<summary>Secondary button action</summary>
<description>Secondary stylus button action, this button is located along the pen handle on some styli like the Grip Pen. Other styli like the Airbrush Pen or the Inking Pen only have one button, this setting is ineffective on those.</description>
</key>
<key name="tertiary-button-action" enum="org.cinnamon.desktop.CDesktopStylusButtonAction">
<default>'default'</default>
<summary>Tertiary button action</summary>
<description>Tertiary stylus button action, this button is located along the pen handle on some styli like the 3D Pen. Other styli like the Grip Pen only have two buttons, this setting is ineffective on those.</description>
</key>
</schema>
<schema id="org.cinnamon.desktop.peripherals.tablet.pad-button">
<key name="action" enum="org.cinnamon.desktop.CDesktopPadButtonAction">
<default>'none'</default>
<summary>Pad button action type</summary>
<description>The type of action triggered by the button being pressed.</description>
</key>
<key type="s" name="keybinding">
<default>''</default>
<summary>Key combination for the custom action</summary>
<description>The keyboard shortcut generated when the button is pressed for custom actions.</description>
</key>
</schema>
<schema id="org.cinnamon.desktop.peripherals.touchscreen">
<key name="output" type="as">
<default>["", "", ""]</default>
<summary>Touchscreen output mapping</summary>
<description>EDID information of the output the touchscreen is mapped to. Must be in the format [vendor, product, serial]. ["","",""] relies on automatic mapping.</description>
</key>
</schema>
<schema id="org.cinnamon.desktop.peripherals.trackball" path="/org/cinnamon/desktop/peripherals/trackball/">
<key name="scroll-wheel-emulation-button" type="i">
<default>0</default>
<range min="0" max="24"/>
<summary>Mouse wheel emulation button. 0 to disable the feature.</summary>
</key>
<key name="accel-profile" enum="org.cinnamon.desktop.CDesktopPointerAccelProfile">
<default>'default'</default>
<summary>Acceleration profile</summary>
<description>Acceleration profile used for the trackball. The acceleration profile can be set to either default (“default”) which uses the default acceleration profile, flat (“flat”), which accelerates by a device specific constant factor derived from the configured speed, or adaptive (“adaptive”) which adapts the acceleration depending on the movement. If the trackball doesnt support the configured profile, “default” will be used.</description>
</key>
<key name="middle-click-emulation" type="b">
<default>false</default>
<summary>Emulate middle click</summary>
<description>Set this to TRUE to enable middle click during simultaneous left and right click.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,45 +0,0 @@
<?xml version="1.0"?>
<schemalist>
<schema id="org.cinnamon.desktop.privacy" path="/org/cinnamon/desktop/privacy/">
<key name="remove-old-trash-files" type="b">
<default>false</default>
<summary>Whether to remove old files from the trash automatically</summary>
<description>If TRUE, automatically remove files from the trash when they are older than 'old-files-age' days.</description>
</key>
<key name="remove-old-temp-files" type="b">
<default>false</default>
<summary>Whether to remove old temporary files automatically</summary>
<description>If TRUE, automatically remove temporary files when they are older than 'old-files-age' days.</description>
</key>
<key name="old-files-age" type="u">
<default>30</default>
<summary>Number of days to keep trash and temporary files</summary>
<description>Consider trash and temporary files old after this many days.</description>
</key>
<key name="remember-recent-files" type="b">
<default>true</default>
<summary>Whether to remember recently used files</summary>
<description>If FALSE, applications will not remember recently used files.</description>
</key>
<key name="recent-files-max-age" type="i">
<default>7</default>
<summary>Number of days to remember recently used files for</summary>
<description>Recently used files will be remembered for this many days. If set to 0, recent files will not be remembered; if set to -1, they will be retained indefinitely.</description>
</key>
<key name="disable-microphone" type="b">
<default>false</default>
<summary>Dont allow applications to access the microphone</summary>
<description>If TRUE, applications should not use the microphone.</description>
</key>
<key name="disable-camera" type="b">
<default>false</default>
<summary>Dont allow applications to access the camera</summary>
<description>If TRUE, applications should not use the camera.</description>
</key>
<key name="disable-sound-output" type="b">
<default>false</default>
<summary>Dont allow applications to output sound</summary>
<description>If TRUE, applications should not make sound.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,149 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id="org.cinnamon.desktop.screensaver" path="/org/cinnamon/desktop/screensaver/">
<key name="idle-activation-enabled" type="b">
<default>true</default>
<summary>Activate when idle</summary>
<description>Set this to TRUE to activate the screensaver when the session is idle.</description>
</key>
<key name="lock-enabled" type="b">
<default>true</default>
<summary>Lock on activation</summary>
<description>Set this to TRUE to lock the screen when the screensaver goes active.</description>
</key>
<key name="lock-delay" type="u">
<default>0</default>
<summary>Time before locking</summary>
<description>The number of seconds after screensaver activation before locking the screen.</description>
</key>
<key name="show-notifications" type="b">
<default>false</default>
<summary>Show notifications in the lock screen</summary>
<description>Whether notifications are shown in the lock screen or not. This only affects the standard experience.</description>
</key>
<key name="embedded-keyboard-enabled" type="b">
<default>false</default>
<summary>Allow embedding a keyboard into the window</summary>
<description>Set this to TRUE to allow embedding a keyboard into the window when trying to unlock. The "keyboard_command" key must be set with the appropriate command.</description>
</key>
<key name="embedded-keyboard-command" type="s">
<default>''</default>
<summary>Embedded keyboard command</summary>
<description>The command that will be run, if the "embedded_keyboard_enabled" key is set to TRUE, to embed a keyboard widget into the window. This command should implement an XEMBED plug interface and output a window XID on the standard output.</description>
</key>
<key name="user-switch-enabled" type="b">
<default>true</default>
<summary>Allow user switching</summary>
<description>Set this to TRUE to offer an option in the unlock dialog to switch to a different user account.</description>
</key>
<key name="status-message-enabled" type="b">
<default>true</default>
<summary>Allow the session status message to be displayed</summary>
<description>Allow the session status message to be displayed when the screen is locked.</description>
</key>
<key name="default-message" type="s">
<default>""</default>
<summary>Default message for the screensaver</summary>
<description>
This is the message that appears on the lock screen by default.
</description>
</key>
<key name="ask-for-away-message" type="b">
<default>false</default>
<summary>Whether to ask for an away message when locking the screen</summary>
<description>
Whether to ask for an away message when locking the screen.
</description>
</key>
<key name="use-custom-format" type="b">
<default>false</default>
<summary>Whether to define a custom format for the date and time</summary>
<description>
Whether to use a custom date and time format for the lock screen.
</description>
</key>
<key name="time-format" type="s">
<default>"%H:%M"</default>
<summary>The custom time format</summary>
<description>
This is the time format that the lock screen will use if use-custom-format is enabled.
</description>
</key>
<key name="date-format" type="s">
<default>"%A %B %-e"</default>
<summary>The custom date format</summary>
<description>
This is the date format that the lock screen will use if use-custom-format is enabled.
</description>
</key>
<key name="font-date" type="s">
<default>"Ubuntu 24"</default>
<summary>The date time font</summary>
<description>
This is the font that the date uses for the screen locker.
</description>
</key>
<key name="font-time" type="s">
<default>"Ubuntu 64"</default>
<summary>The time font</summary>
<description>
This is the font that the time uses for the screen locker.
</description>
</key>
<key name="font-message" type="s">
<default>"Ubuntu 14"</default>
<summary>The away message font</summary>
<description>
This is the font that the away message use for the screen locker.
</description>
</key>
<key name="screensaver-name" type="s">
<default>""</default>
<summary>deprecated - does nothing</summary>
</key>
<key name="xscreensaver-hack" type="s">
<default>""</default>
<summary>deprecated - does nothing</summary>
</key>
<key name="screensaver-webkit-theme" type="s">
<default>""</default>
<summary>deprecated - does nothing</summary>
</key>
<key name="show-album-art" type="b">
<default>true</default>
<summary>Display album art on the lock screen</summary>
<description>Set this to true to show album art on the lock screen, if available.</description>
</key>
<key name="allow-keyboard-shortcuts" type="b">
<default>true</default>
<summary>Control whether keyboard shortcuts are allowed on the lock screen</summary>
</key>
<key name="allow-media-control" type="b">
<default>true</default>
<summary>Control whether volume and media player controls are allowed on the lock screen</summary>
</key>
<key name="show-info-panel" type="b">
<default>true</default>
<summary>Control whether the notification and power widgets are shown on the lock screen</summary>
</key>
<key name="show-clock" type="b">
<default>true</default>
<summary>Show the clock when the normal wallpaper screensaver is active</summary>
<description>This controls whether the clock is shown while the wallpaper is active. Note, the clock will always show when unlocking, and it will never show if a screensaver plugin is active, regardless of this setting</description>
</key>
<key name="floating-widgets" type="b">
<default>true</default>
<summary>Control whether the clock and albumart widgets will randomly change position over time.</summary>
</key>
<key name="layout-group" type="i">
<default>-1</default>
<summary>Keyboard layout group to use when entering your password</summary>
<description>This stores the last active keyboard layout group for entering your password.</description>
</key>
<key name="custom-screensaver-command" type="s">
<default>""</default>
<summary>Specify custom screen locker command</summary>
<description>If empty, cinnamon-screensaver will be used</description>
</key>
</schema>
</schemalist>

View File

@@ -1,24 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id="org.cinnamon.desktop.session" path="/org/cinnamon/desktop/session/">
<key name="idle-delay" type="u">
<default>900</default>
<summary>Time before session is considered idle</summary>
<description>The number of seconds of inactivity before the session is considered idle.</description>
</key>
<key name="session-name" type="s">
<default>"cinnamon"</default>
<summary>Session type</summary>
<description>The name of the session to use. Known values are
"gnome" and "gnome-fallback".</description>
</key>
<key name="session-manager-uses-logind" type="b">
<default>true</default>
<summary>*no longer used*</summary>
</key>
<key name="settings-daemon-uses-logind" type="b">
<default>true</default>
<summary>*no longer used*</summary>
</key>
</schema>
</schemalist>

View File

@@ -1,35 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id="org.cinnamon.desktop.sound" path="/org/cinnamon/desktop/sound/">
<key name="event-sounds" type="b">
<default>false</default>
<summary>Sounds for events</summary>
<description>Whether to play sounds on user events.</description>
</key>
<key name="theme-name" type="s">
<default>'freedesktop'</default>
<summary>Sound theme name</summary>
<description>The XDG sound theme to use for event sounds.</description>
</key>
<key name="input-feedback-sounds" type="b">
<default>false</default>
<summary>Input feedback sounds</summary>
<description>Whether to play sounds on input events.</description>
</key>
<key name="volume-sound-enabled" type="b">
<default>false</default>
<summary>Whether to play a sound when the volume is changed</summary>
<description>Whether to play a sound when the volume is changed.</description>
</key>
<key name="volume-sound-file" type="s">
<default>""</default>
<summary>Which sound to play when the volume is changed</summary>
<description>Which sound to play when the volume is changed.</description>
</key>
<key name="allow-amplified-volume" type="b">
<default>false</default>
<summary>Overamplification</summary>
<description>Allows the volume to exceed 100%, with reduced sound quality.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,13 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id="org.cinnamon.desktop.thumbnail-cache" path="/org/cinnamon/desktop/thumbnail-cache/">
<key name="maximum-age" type="i">
<default>180</default>
<description>Maximum age for thumbnails in the cache, in days. Set to -1 to disable cleaning.</description>
</key>
<key name="maximum-size" type="i">
<default>512</default>
<description>Maximum size of the thumbnail cache, in megabytes. Set to -1 to disable cleaning.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,25 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id="org.cinnamon.desktop.thumbnailers" path="/org/cinnamon/desktop/thumbnailers/">
<key name="disable-all" type="b">
<default>false</default>
<summary>Disable all external thumbnailers</summary>
<description>
Set to true to disable all external thumbnailer programs,
independent on whether they are independently disabled/enabled.
</description>
</key>
<key name="disable" type="as">
<default>["image/jp2"]</default>
<summary>
List of mime-types for which external thumbnailer
programs will be disabled
</summary>
<description>
Thumbnails will not be created for files whose mime-type is
contained in the list.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,345 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id="org.cinnamon.desktop.wm.preferences" path="/org/cinnamon/desktop/wm/preferences/">
<key name="mouse-button-modifier" type="s">
<default><![CDATA['<Alt>']]></default>
<summary>Modifier to use for modified window click actions</summary>
<description>
Clicking a window while holding down this modifier key will move the
window (left click), resize the window (middle click), or show the
window menu (right click). The middle and right click operations may
be swapped using the "resize-with-right-button" key. Modifier is
expressed as <![CDATA["<Alt>"]]> or <![CDATA["<Super>"]]> for example.
</description>
</key>
<key name="mouse-button-zoom-modifier" type="s">
<default><![CDATA['<Alt>']]></default>
<summary>Modifier to use for a11y mouse desktop zoom</summary>
<description>
Operating the mouse wheel while holding down this modifier key will
zoom the desktop in and out if desktop magnifier is enabled. Modifier is
expressed as <![CDATA["<Alt>"]]> or <![CDATA["<Super>"]]> for example.
</description>
</key>
<key name="resize-with-right-button" type="b">
<default>true</default>
<summary>Whether to resize with the right button</summary>
<description>
Set this to true to resize with the right button and show a menu with
the middle button while holding down the key given in
"mouse-button-modifier"; set it to false to make it work
the opposite way around.
</description>
</key>
<key name="button-layout" type="s">
<default>'menu:minimize,maximize,close'</default>
<summary>Arrangement of buttons on the titlebar</summary>
<description>
Arrangement of buttons on the titlebar. The value should be a string,
such as "menu:minimize,maximize,spacer,close"; the colon separates
the left corner of the window from the right corner, and the button
names are comma-separated. Duplicate buttons are not allowed. Unknown
button names are silently ignored so that buttons can be added in
future metacity versions without breaking older versions. A special
spacer tag can be used to insert some space between
two adjacent buttons.
</description>
</key>
<key name="focus-mode" enum="org.cinnamon.desktop.CDesktopFocusMode">
<default>'click'</default>
<summary>Window focus mode</summary>
<description>
The window focus mode indicates how windows are activated. It has
three possible values; "click" means windows must be clicked in order
to focus them, "sloppy" means windows are focused when the mouse enters
the window, and "mouse" means windows are focused when the mouse enters
the window and unfocused when the mouse leaves the window.
</description>
</key>
<key name="focus-new-windows"
enum="org.cinnamon.desktop.CDesktopFocusNewWindows">
<default>'smart'</default>
<summary>Control how new windows get focus</summary>
<description>
This option provides additional control over how newly created windows
get focus. It has two possible values; "smart" applies the user's
normal focus mode, and "strict" results in windows started from a
terminal not being given focus.
</description>
</key>
<key name="raise-on-click" type="b">
<default>true</default>
<summary>
Whether raising should be a side-effect of other user interactions
</summary>
<description>
Setting this option to false can lead to buggy behavior, so users are
strongly discouraged from changing it from the default of true. Many
actions (e.g. clicking in the client area, moving or resizing the window)
normally raise the window as a side-effect. Setting this option to false,
which is strongly discouraged, will decouple raising from other user
actions, and ignore raise requests generated by applications.
See http://bugzilla.gnome.org/show_bug.cgi?id=445447#c6.
Even when this option is false, windows can still be raised by an
alt-left-click anywhere on the window, a normal click on the window
decorations, or by special messages from pagers, such as activation
requests from tasklist applets. This option is currently disabled
in click-to-focus mode. Note that the list of ways to raise windows
when raise-on-click is false does not include programmatic requests
from applications to raise windows; such requests will be ignored
regardless of the reason for the request.
If you are an application developer and have a user complaining that
your application does not work with this setting disabled, tell them
it is -their- fault for breaking their window manager and that they
need to change this option back to true or live with the "bug"
they requested.
</description>
</key>
<key name="action-double-click-titlebar"
enum="org.cinnamon.desktop.CDesktopTitlebarAction">
<default>'toggle-maximize'</default>
<summary>Action on title bar double-click</summary>
<description>
This option determines the effects of double-clicking on the title bar.
Current valid options are 'toggle-shade', which will shade/unshade the
window, 'toggle-maximize' which will maximize/unmaximize the window,
'toggle-maximize-horizontally' and 'toggle-maximize-vertically'
which will maximize/unmaximize the window in that direction only,
'minimize' which will minimize the window, 'shade' which will roll
the window up, 'menu' which will display the window menu,
'lower' which will put the window behind all the others,
and 'none' which will not do anything.
</description>
<!-- For compatibility with GConf strings (Metacity 2.30) -->
<aliases>
<alias value="toggle_shade" target="toggle-shade"/>
<alias value="toggle_maximize" target="toggle-maximize"/>
<alias value="toggle_maximize_horizontally"
target="toggle-maximize-horizontally"/>
<alias value="toggle_maximize_vertically"
target="toggle-maximize-vertically"/>
</aliases>
</key>
<key name="action-middle-click-titlebar"
enum="org.cinnamon.desktop.CDesktopTitlebarAction">
<default>'lower'</default>
<summary>Action on title bar middle-click</summary>
<description>
This option determines the effects of middle-clicking on the title bar.
Current valid options are 'toggle-shade', which will shade/unshade
the window, 'toggle-maximize' which will maximize/unmaximize the window,
'toggle-maximize-horizontally' and 'toggle-maximize-vertically'
which will maximize/unmaximize the window in that direction only,
'minimize' which will minimize the window, 'shade' which will roll
the window up, 'menu' which will display the window menu,
'lower' which will put the window behind all the others,
and 'none' which will not do anything.
</description>
<!-- For compatibility with GConf strings (Metacity 2.30) -->
<aliases>
<alias value="toggle_shade" target="toggle-shade"/>
<alias value="toggle_maximize" target="toggle-maximize"/>
<alias value="toggle_maximize_horizontally"
target="toggle-maximize-horizontally"/>
<alias value="toggle_maximize_vertically"
target="toggle-maximize-vertically"/>
</aliases>
</key>
<key name="action-right-click-titlebar"
enum="org.cinnamon.desktop.CDesktopTitlebarAction">
<default>'menu'</default>
<summary>Action on title bar right-click</summary>
<description>
This option determines the effects of right-clicking on the title bar.
Current valid options are 'toggle-shade', which will shade/unshade
the window, 'toggle-maximize' which will maximize/unmaximize
the window, 'toggle-maximize-horizontally' and
'toggle-maximize-vertically' which will maximize/unmaximize
the window in that direction only, 'minimize' which will minimize
the window, 'shade' which will roll the window up,
'menu' which will display the window menu, 'lower' which will put
the window behind all the others, and 'none' which will not do anything.
</description>
<!-- For compatibility with GConf strings (Metacity 2.30) -->
<aliases>
<alias value="toggle_shade" target="toggle-shade"/>
<alias value="toggle_maximize" target="toggle-maximize"/>
<alias value="toggle_maximize_horizontally"
target="toggle-maximize-horizontally"/>
<alias value="toggle_maximize_vertically"
target="toggle-maximize-vertically"/>
</aliases>
</key>
<key name="action-scroll-titlebar"
enum="org.cinnamon.desktop.CDesktopTitlebarScrollAction">
<default>'none'</default>
<summary>Action on spinning the mouse wheel on the titlebar</summary>
<description>
This option determines the effects of using the mouse wheel on the title bar.
Current options are: opacity, shade
</description>
</key>
<key name="min-window-opacity" type="i">
<range min="0" max="100"/>
<default>30</default>
<summary>Minimum allowable window opacity (by percent) via user adjustment</summary>
<description>
This is the minimum opacity (by percent) a user can adjust the window to when
using keybindings or the mouse wheel.
</description>
</key>
<key name="auto-raise" type="b">
<default>false</default>
<summary>Automatically raises the focused window</summary>
<description>
If set to true, and the focus mode is either "sloppy" or "mouse"
then the focused window will be automatically raised after a delay
specified by the auto-raise-delay key. This is not related to clicking
on a window to raise it, nor to entering a window during drag-and-drop.
</description>
</key>
<key name="auto-raise-delay" type="i">
<range min="0" max="10000"/>
<default>500</default>
<summary>Delay in milliseconds for the auto raise option</summary>
<description>
The time delay before raising a window if auto-raise is set to true.
The delay is given in thousandths of a second.
</description>
</key>
<key name="theme" type="s">
<default>'Adwaita'</default>
<summary>Current theme</summary>
<description>
The theme determines the appearance of window borders, titlebar,
and so forth.
</description>
</key>
<key name="theme-backup" type="s">
<default>'Adwaita'</default>
<summary>Current theme backup</summary>
<description>
This is used to store the current theme when enabling high contrast.
</description>
</key>
<key name="titlebar-uses-system-font" type="b">
<default>false</default>
<summary>Use standard system font in window titles</summary>
<description>
If true, ignore the titlebar-font option, and use the standard
application font for window titles.
</description>
</key>
<key name="titlebar-font" type="s">
<default>'Sans Bold 10'</default>
<summary>Window title font</summary>
<description>
A font description string describing a font for window titlebars.
The size from the description will only be used if the
titlebar-font-size option is set to 0. Also, this option is disabled
if the titlebar-uses-desktop-font option is set to true.
</description>
</key>
<key name="num-workspaces" type="i">
<default>4</default>
<range min="1" max="36"/>
<summary>Number of workspaces</summary>
<description>
Number of workspaces. Must be more than zero, and has a fixed maximum
to prevent making the desktop unusable by accidentally asking
for too many workspaces.
</description>
</key>
<key name="audible-bell" type="b">
<default>false</default>
<summary>System Bell is Audible</summary>
<description>
Determines whether applications or the system can generate audible
'beeps'; may be used in conjunction with 'visual bell'
to allow silent 'beeps'.
</description>
</key>
<key name="visual-bell" type="b">
<default>false</default>
<summary>Enable Visual Bell</summary>
<description>
Turns on a visual indication when an application or the system issues
a 'bell' or 'beep'; useful for the hard-of-hearing and for use
in noisy environments.
</description>
</key>
<key name="visual-bell-type"
enum="org.cinnamon.desktop.CDesktopVisualBellType">
<default>'fullscreen-flash'</default>
<summary>Visual Bell Type</summary>
<description>
Tells the WM how to implement the visual indication that the
system bell or another application 'bell' indicator has been rung.
Currently there are two valid values, "fullscreen-flash", which
causes a fullscreen white-black flash, and "frame-flash" which
causes the titlebar of the application which sent the bell signal
to flash.
If the application which sent the bell is unknown (as is usually
the case for the default "system beep"), the currently focused
window's titlebar is flashed.
</description>
<!-- For compatibility with GConf strings (Metacity 2.30) -->
<aliases>
<alias value="fullscreen" target="fullscreen-flash"/>
<alias value="frame_flash" target="frame-flash"/>
</aliases>
</key>
<key name="bell-sound" type="s">
<default>'/usr/share/cinnamon/sounds/bell.ogg'</default>
<summary>Sound to use for the event bell</summary>
</key>
<key name="application-based" type="b">
<default>false</default>
<summary>
(Not implemented) Navigation works in terms of applications not windows
</summary>
<description>
If true, then the WM works in terms of applications rather than
windows. The concept is a bit abstract, but in general an
application-based setup is more like the Mac and less like Windows.
When you focus a window in application-based mode, all the windows
in the application will be raised. Also, in application-based mode,
focus clicks are not passed through to windows in other applications.
Application-based mode is, however, largely unimplemented
at the moment.
</description>
</key>
<key name="disable-workarounds" type="b">
<default>false</default>
<summary>
Disable misfeatures that are required by old or broken applications
</summary>
<description>
Some applications disregard specifications in ways that result in
window manager misfeatures. This option puts the WM in a
rigorously correct mode, which gives a more consistent
user interface, provided one does not need to run any
misbehaving applications.
</description>
</key>
<key name="workspace-names" type="as">
<default>[]</default>
<summary>The names of the workspaces</summary>
<description>
Defines the names that should be assigned to workspaces.
If the list is too long for the current number of workspaces,
names in excess will be ignored. If the list is too short, or
includes empty names, missing values will be replaced with the
default ("Workspace N").
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,126 +0,0 @@
<schemalist>
<schema id="org.cinnamon.gestures" path="/org/cinnamon/gestures/"
gettext-domain="@GETTEXT_PACKAGE@">
<key name="enabled" type="b">
<default>false</default>
<summary>Enables gesture support using Touchegg.</summary>
</key>
<key name="swipe-percent-threshold" type="u">
<default>60</default>
<summary>An approximate distance, measured in percent of the size of the touch device or area. This setting is for swipe gestures only.</summary>
</key>
<key name="pinch-percent-threshold" type="u">
<default>40</default>
<summary>An approximate distance, measured in percent of the size of the touch device or area. This setting is for pinch gestures only.</summary>
</key>
<key name="swipe-left-2" type="s">
<default>'PUSH_TILE_LEFT'</default>
<summary>Touchscreen only</summary>
</key>
<key name="swipe-right-2" type="s">
<default>'PUSH_TILE_RIGHT'</default>
<summary>Touchscreen only</summary>
</key>
<key name="swipe-up-2" type="s">
<default>'PUSH_TILE_UP'</default>
<summary>Touchscreen only</summary>
</key>
<key name="swipe-down-2" type="s">
<default>'PUSH_TILE_DOWN'</default>
<summary>Touchscreen only</summary>
</key>
<key name="swipe-left-3" type="s">
<default>'WORKSPACE_NEXT'</default>
</key>
<key name="swipe-right-3" type="s">
<default>'WORKSPACE_PREVIOUS'</default>
</key>
<key name="swipe-up-3" type="s">
<default>'TOGGLE_EXPO'</default>
</key>
<key name="swipe-down-3" type="s">
<default>'TOGGLE_OVERVIEW'</default>
</key>
<key name="swipe-left-4" type="s">
<default>'WINDOW_WORKSPACE_PREVIOUS'</default>
</key>
<key name="swipe-right-4" type="s">
<default>'WINDOW_WORKSPACE_NEXT'</default>
</key>
<key name="swipe-up-4" type="s">
<default>'VOLUME_UP'</default>
</key>
<key name="swipe-down-4" type="s">
<default>'VOLUME_DOWN'</default>
</key>
<key name="swipe-left-5" type="s">
<default>''</default>
<summary>Touchscreen only</summary>
</key>
<key name="swipe-right-5" type="s">
<default>''</default>
<summary>Touchscreen only</summary>
</key>
<key name="swipe-up-5" type="s">
<default>''</default>
<summary>Touchscreen only</summary>
</key>
<key name="swipe-down-5" type="s">
<default>''</default>
<summary>Touchscreen only</summary>
</key>
<key name="pinch-in-2" type="s">
<default>''</default>
</key>
<key name="pinch-out-2" type="s">
<default>''</default>
</key>
<key name="pinch-in-3" type="s">
<default>''</default>
</key>
<key name="pinch-out-3" type="s">
<default>''</default>
</key>
<key name="pinch-in-4" type="s">
<default>''</default>
</key>
<key name="pinch-out-4" type="s">
<default>''</default>
</key>
<key name="pinch-in-5" type="s">
<default>''</default>
<summary>Touchscreen only</summary>
</key>
<key name="pinch-out-5" type="s">
<default>''</default>
<summary>Touchscreen only</summary>
</key>
<key name="tap-2" type="s">
<default>''</default>
<summary>Touchscreen only</summary>
</key>
<key name="tap-3" type="s">
<default>'MEDIA_PLAY_PAUSE'</default>
<summary>Touchscreen only</summary>
</key>
<key name="tap-4" type="s">
<default>''</default>
<summary>Touchscreen only</summary>
</key>
<key name="tap-5" type="s">
<default>''</default>
<summary>Touchscreen only</summary>
</key>
</schema>
</schemalist>

View File

@@ -1,992 +0,0 @@
<schemalist>
<schema id="org.cinnamon" path="/org/cinnamon/"
gettext-domain="@GETTEXT_PACKAGE@">
<key name="development-tools" type="b">
<default>true</default>
<summary>
Enable internal tools useful for developers and testers from Alt-F2
</summary>
<description>
Allows access to internal debugging and monitoring tools
using the Alt-F2 dialog.
</description>
</key>
<key name="enabled-extensions" type="as">
<default>[]</default>
<summary>Uuids of extensions to enable</summary>
<description>
Cinnamon extensions have a uuid property; this key lists extensions
which should be loaded. disabled-extensions overrides this setting for
extensions that appear in both lists. Append ! in front of uuid to
override version check
</description>
</key>
<key name="extension-cache-updated" type="i">
<default>0</default>
<summary>[not used - obsolete]</summary>
<description>
</description>
</key>
<key name="enabled-applets" type="as">
<default>['panel1:left:0:menu@cinnamon.org', 'panel1:left:1:separator@cinnamon.org', 'panel1:left:2:grouped-window-list@cinnamon.org', 'panel1:right:0:systray@cinnamon.org', 'panel1:right:1:xapp-status@cinnamon.org', 'panel1:right:2:notifications@cinnamon.org', 'panel1:right:3:printers@cinnamon.org', 'panel1:right:4:removable-drives@cinnamon.org', 'panel1:right:5:keyboard@cinnamon.org', 'panel1:right:6:favorites@cinnamon.org', 'panel1:right:7:network@cinnamon.org', 'panel1:right:8:sound@cinnamon.org', 'panel1:right:9:power@cinnamon.org', 'panel1:right:10:calendar@cinnamon.org', 'panel1:right:11:cornerbar@cinnamon.org']</default>
<summary>Uuids of applets to enable</summary>
<description>
Cinnamon applets have a uuid property; this key lists applets
which should be loaded. Append ! in front of uuid to override version
check.
</description>
</key>
<key name="applet-cache-updated" type="i">
<default>0</default>
<summary>[not used - obsolete]</summary>
<description>
</description>
</key>
<key name="next-applet-id" type="i">
<default>0</default>
<summary>The next applet id to give the next added applet</summary>
<description>Do not change manually.</description>
</key>
<key name="next-desklet-id" type="i">
<default>0</default>
<summary>The next desklet id to give the next added desklet</summary>
<description>Do not change manually.</description>
</key>
<key name="enabled-desklets" type="as">
<default>[]</default>
<summary>Uuids of desklets to enable</summary>
<description>
Cinnamon desklets have a uuid property; this key lists desklets
which should be loaded. uuids should be put in the form uuid:id:x:y, where id is used to distinguish between multiple instances of the same desklet. Append ! in front of uuid to override version check.
</description>
</key>
<key name="desklet-cache-updated" type="i">
<default>0</default>
<summary>[not used - obsolete]</summary>
<description>
</description>
</key>
<key name="enabled-search-providers" type="as">
<default>[]</default>
<summary>Uuids of search providers to enable</summary>
<description>
Cinnamon search providers have a uuid property; this key lists search providers
which should be loaded.
</description>
</key>
<key name="desklet-snap" type="b">
<default>true</default>
<summary> Whether desklets "snap" to a grid position</summary>
<description> Enabling this allows desklets' position to be snapped into a regular grid</description>
</key>
<key name="desklet-snap-interval" type="i">
<default>25</default>
<summary>The interval between each possible grid position when desklets "snap"</summary>
<description>If desklet-snap is enabled, the possible positions of desklets will be all integer multiples of the value of "desklet-snap-size"</description>
</key>
<key name="lock-desklets" type="b">
<default>false</default>
<summary> Locks the current position of all desklets and prevents dragging</summary>
</key>
<key name="panels-enabled" type="as">
<default>['1:0:bottom']</default>
<summary>List of panels used</summary>
<description>
Panels are listed in the following format: panelID:monitor:position, where monitor is the monitor number (0 for primary), and position is either top or bottom
</description>
</key>
<key name="panels-autohide" type="as">
<default>['1:false']</default>
<summary>Auto-hide panel</summary>
<description>
Whether the panel autohides or not.
</description>
</key>
<key name="panels-show-delay" type="as">
<default>['1:0']</default>
<summary>Duration of the delay before a hidden panel is shown</summary>
<description>Duration of the delay (in milliseconds)</description>
</key>
<key name="panels-hide-delay" type="as">
<default>['1:0']</default>
<summary>Duration of the delay before a shown panel is hidden</summary>
<description>Duration of the delay (in milliseconds)</description>
</key>
<key name="panels-height" type="as">
<default>['1:40']</default>
<summary>Panel size</summary>
<description>
User-defined panel-height for panels. Note, this value may or may not be the true value in use at runtime, depending
on any scaling that may be occurring (on hidpi screens, for instance).
</description>
</key>
<key type="s" name="panel-zone-icon-sizes">
<default>'[{"panelId": 1, "left": 0, "center": 0, "right": 24}]'</default>
<summary>Per-zone fullcolor icon-size configuration</summary>
<description>
Panel zone configuration objects for fullcolor icon size.
</description>
</key>
<key type="s" name="panel-zone-symbolic-icon-sizes">
<default>'[{"panelId": 1, "left": 28, "center": 28, "right": 16}]'</default>
<summary>Per-zone symbolic icon-size configuration</summary>
<description>
Panel zone configuration objects for symbolic icon size. This is calculates size as a fraction of current color icon sizes
</description>
</key>
<key type="s" name="panel-zone-text-sizes">
<default>'[{"panelId": 1, "left":0.0, "center":0.0, "right":0.0}]'</default>
<summary>Per-zone text-size configuration, values in point</summary>
<description>
Panel zone configuration objects for text, values are expressed as points. Setting to 0.0 will give control to the theme.
</description>
</key>
<key name="panel-scale-text-icons" type="b">
<default>false</default>
<summary>(Deprecated) Scale panel applet text and icons</summary>
<description>
(Deprecated) Retained to avoid applets who read the property from crashing Cinnamon
</description>
</key>
<key name="desktop-effects-on-dialogs" type="b">
<default>true</default>
<summary>Enable desktop effects on dialog boxes</summary>
<description>
Whether to enable desktop effects on dialog boxes.
</description>
</key>
<key name="desktop-effects-on-menus" type="b">
<default>true</default>
<summary>Enable desktop effects on Gtk menus</summary>
<description>
Whether to enable desktop effects on Gtk menus.
</description>
</key>
<key name="desktop-effects-workspace" type="b">
<default>true</default>
<summary>Enable desktop effects in the Cinnamon ui</summary>
<description>
This affects switching workspaces, expo and scale.
</description>
</key>
<key name="desktop-effects" type="b">
<default>true</default>
<summary>Enable desktop effects</summary>
<description>
Whether to enable desktop effects and window animations.
</description>
</key>
<key type="s" name="desktop-effects-close">
<default>"traditional"</default>
<summary>Effect used when closing windows</summary>
<description>
An effect: traditional, fly, none
</description>
</key>
<key type="s" name="desktop-effects-map">
<default>"traditional"</default>
<summary>Effect used when mapping windows</summary>
<description>
An effect: traditional, fly, fade, none
</description>
</key>
<key type="s" name="desktop-effects-minimize">
<default>"traditional"</default>
<summary>Effect used when minimizing windows</summary>
<description>
An effect: traditional, fly, fade, none
</description>
</key>
<key type="b" name="desktop-effects-change-size">
<default>true</default>
<summary>Whether to show an animation when unmaximizing/tiling/snapping windows</summary>
<description>
</description>
</key>
<key type="s" name="desktop-effects-sizechange-effect">
<default>"scale"</default>
<summary>Effect used when maximizing windows</summary>
<description>
An effect: none
</description>
</key>
<key name="desktop-effects-sizechange-transition" type="s">
<default>"easeInQuad"</default>
<summary>Transition used when maximizing windows</summary>
<description>
A Tweener transition
</description>
</key>
<key type="i" name="desktop-effects-sizechange-time">
<default>100</default>
<summary>Duration of the effect (in milliseconds)</summary>
<description>
Duration of the effect (in milliseconds)
</description>
</key>
<key type="i" name="window-effect-speed">
<default>1</default>
<range min="0" max="2"/>
<summary>Speed multiplier for window-effects</summary>
</key>
<key type="b" name="startup-animation">
<default>true</default>
<summary>Whether the startup animation is enabled</summary>
<description>
Whether the startup animation is enabled
</description>
</key>
<key name="device-aliases" type="as">
<default>[]</default>
<summary>Aliases given to battery powered fardware devices</summary>
<description>
</description>
</key>
<key name="desktop-layout" type="s">
<default>""</default>
<summary>(Deprecated) Layout style</summary>
<description>
(Deprecated) Layout styles - pre-2.6
</description>
</key>
<key name="date-format" type="s">
<default>"YYYY-MM-DD"</default>
<summary>Date format</summary>
<description>
Format used for dates.
</description>
</key>
<key type="i" name="number-workspaces">
<default>0</default>
<summary>(Deprecated) Number of workspaces</summary>
<description>(Deprecated) Number of Workspaces - pre-2.6, even though you shouldn't use it even on &lt;2.6 releases. Use org.cinnamon.desktop.wm.preferences num-workspaces instead.</description>
</key>
<key name="overview-corner" type="as">
<default>["DEPRECATED"]</default>
<summary>Obsolete - unused</summary>
<description>Obsolete - unused</description>
</key>
<key name="hotcorner-layout" type="as">
<default>['expo:false:0', 'scale:false:0', 'scale:false:0', 'desktop:false:0']</default>
<summary>Properties of hotcorners</summary>
<description>Properties of hotcorners, in the form functionality:hover-enabled:hover-delay. The order in which properties are displayed is top left, top right, bottom left, bottom right.</description>
</key>
<key name="panel-launchers" type="as">
<default>["DEPRECATED"]</default>
<summary>Obsolete - unused</summary>
<description>Obsolete - unused</description>
</key>
<key name="enable-app-monitoring" type="b">
<default>true</default>
<summary>Whether to collect stats about applications usage</summary>
<description>
Cinnamon normally monitors active applications in order to present
the most used ones (e.g. in launchers). While this data will be
kept private, you may want to disable this for privacy reasons.
Please note that doing so won't remove already saved data.
</description>
</key>
<key name="favorite-apps" type="as">
<default>[ 'firefox.desktop', 'org.gnome.Software.desktop', 'cinnamon-settings.desktop', 'hexchat.desktop', 'org.gnome.Terminal.desktop', 'nemo.desktop' ]</default>
<summary>List of desktop file IDs for favorite applications</summary>
<description>
The applications corresponding to these identifiers
will be displayed in the favorites area.
</description>
</key>
<key name="workspace-name-overrides" type="as">
<default>['DEPRECATED']</default>
<summary>(Deprecated) List of non-default workspace names</summary>
<description>
(Deprecated) The user-set names of the workspaces. Deprecated since 2.6. Use org.cinnamon.desktop.wm.preferences workspace-names instead.
</description>
</key>
<key name="workspace-osd-visible" type="b">
<default>true</default>
<summary>Enable or disable the workspace OSD</summary>
<description>
Whether the name of the workspace shows up on the screen when activated or not.
</description>
</key>
<key name="workspace-expo-view-as-grid" type="b">
<default>false</default>
<summary>Display the Expo view as a grid</summary>
<description>
When enabled the Expo view will be displayed as a grid.
</description>
</key>
<key name="disabled-open-search-providers" type="as">
<default>[]</default>
<summary>disabled OpenSearch providers</summary>
</key>
<key name="command-history" type="as">
<default>[]</default>
<summary>History for command (Alt-F2) dialog</summary>
</key>
<key name="looking-glass-history" type="as">
<default>[]</default>
<summary>History for the looking glass dialog</summary>
</key>
<key name="saved-im-presence" type="i">
<default>1</default>
<summary></summary>
</key>
<key name="saved-session-presence" type="i">
<default>0</default>
<summary></summary>
</key>
<key name="no-adjacent-panel-barriers" type="b">
<default>false</default>
<summary>Whether to omit pointer barriers between adjacent panels.</summary>
</key>
<key type="b" name="panel-edit-mode">
<default>false</default>
<summary>Panel edit mode</summary>
<description>A mode for the user to drag and drop applets and modify the look of the desktop</description>
</key>
<key type="b" name="panel-launchers-draggable">
<default>true</default>
<summary>Obsolete</summary>
</key>
<key name="alttab-switcher-style" type="s">
<default>"icons+thumbnails"</default>
<summary>ALT-tab switcher style</summary>
<description>
Controls the style of the ALT-tab window switcher. Can be any combination of "icons", "preview" and "thumbnails", separated by "+".
</description>
</key>
<key type="b" name="alttab-switcher-enforce-primary-monitor">
<default>false</default>
<summary>Enforce displaying the alt-tab switcher on the primary monitor instead of the active one</summary>
</key>
<key type="b" name="alttab-minimized-aware">
<default>true</default>
<summary>Move minimized windows to the end of the appSwitcher</summary>
</key>
<key type="i" name="alttab-switcher-delay">
<default>100</default>
<summary>Duration of the effect (in milliseconds)</summary>
<description>Duration of the effect (in milliseconds)</description>
</key>
<key type="b" name="alttab-switcher-show-all-workspaces">
<default>false</default>
<summary>Show all windows from all workspaces</summary>
</key>
<key type="b" name="alttab-switcher-warp-mouse-pointer">
<default>false</default>
<summary>Warp mouse pointer to the new focused window</summary>
</key>
<key name="bring-windows-to-current-workspace" type="b">
<default>false</default>
<summary>not used - lives in org.cinnamon.muffin now</summary>
</key>
<key name="prevent-focus-stealing" type="b">
<default>false</default>
<summary>[unused] Prevents windows that request user attention from stealing focus</summary>
<description>
This setting is no longer used.
</description>
</key>
<key name="desklet-decorations" type="i">
<default>1</default>
<summary>The decoration level of the desklets</summary>
<description>The amount of decoration desklets must have.
0 = None;
1 = Borders;
2 = Borders and header;
</description>
</key>
<key type="b" name="enable-edge-flip">
<default>false</default>
<summary>Whether edge flip is enabled</summary>
</key>
<key type="i" name="edge-flip-delay">
<default>1000</default>
<summary>Duration of the delay before switching the workspace</summary>
<description>Duration of the delay (in milliseconds)</description>
</key>
<key type="b" name="cinnamon-settings-advanced">
<default>false</default>
<summary>Whether advanced mode is enabled in cinnamon-settings</summary>
</key>
<key type="b" name="run-dialog-show-completions">
<default>true</default>
<summary>Whether or not to show possible completions in the run dialog (Alt-F2)</summary>
</key>
<key type="as" name="run-dialog-aliases">
<default>[]</default>
<summary>Aliases for the Alt-F2 dialog</summary>
<description>Aliases for use in the Alt-F2 dialog. This is a list of strings of the form a:b, where an instance of "a" is to be replaced with "b". Replacement is only performed on the first word.</description>
</key>
<key type="b" name="show-media-keys-osd">
<default>true</default>
<summary>Whether or not to show the media keys osd</summary>
</key>
<key name="startup-icon-name" type="s">
<default>""</default>
<summary>The logo to use in the startup animation</summary>
<description>
An icon name or absolute path to an icon, which will be used in the startup animation. If this is left empty, only a black screen will display.
</description>
</key>
<key type="b" name="allow-other-notification-handlers">
<default>false</default>
<summary>If true, Cinnamon will no longer attempt to be the session notification handler.</summary>
</key>
<key type="s" name="system-icon">
<default>""</default>
<summary>The logo to use in the system info settings</summary>
<description>
An icon name or absolute path to an icon, which will be used for the system icon in the "System Info" settings app.
Disabled if no value is set.
</description>
</key>
<key type="b" name="center-warped-pointer">
<default>true</default>
<summary>Center the pointer on the new monitor</summary>
<description>If true, the pointer will be set to the center of the new monitor when using pointer next/previous shortcuts.</description>
</key>
<child name="theme" schema="org.cinnamon.theme"/>
<child name="recorder" schema="org.cinnamon.recorder"/>
<child name="keyboard" schema="org.cinnamon.keyboard"/>
<child name="desklets" schema="org.cinnamon.desklets" />
<child name="sounds" schema="org.cinnamon.sounds" />
<child name="launcher" schema="org.cinnamon.launcher" />
<key name="enable-vfade" type="b">
<default>true</default>
<summary>Enable the fade effect in Cinnamon scrollviews</summary>
<description>
Whether the vfade effect is enabled or not
</description>
</key>
<key name="show-snap-osd" type="b">
<default>true</default>
<summary>Show the tile/snap OSD</summary>
<description>
Hide the snap OSD.
</description>
</key>
<key name="show-tile-hud" type="b">
<default>true</default>
<summary>Show the tile HUD</summary>
<description>
Hide the tile HUD.
</description>
</key>
<key name="enable-indicators" type="b">
<default>false</default>
<summary>not used</summary>
</key>
<key type="as" name="demands-attention-ignored-wm-classes">
<default>[]</default>
<summary>unused</summary>
</key>
<key type="as" name="demands-attention-passthru-wm-classes">
<default>['gnome-screenshot', 'lxterminal', 'xfce4-terminal', 'firefox', 'libreoffice', 'soffice']</default>
<summary>WM class names to always give focus to in windowAttentionHandler.js</summary>
</key>
<key name="app-menu-icon-name" type="s">
<default>"cinnamon-symbolic"</default>
<summary>The default icon name of the application menu</summary>
<description>
Controls the default icon name used by the application menu.
</description>
</key>
<key name="app-menu-label" type="s">
<default>""</default>
<summary>The default label of the application menu</summary>
<description>
Controls the default label used by the application menu.
</description>
</key>
<key name="hoverclick-action" type="s">
<default>"single"</default>
<summary>The type of mouse action to be performed using hoverkey (single, double, drag, secondary)</summary>
</key>
<key name="hoverclick-layout" type="s">
<default>"vertical::both"</default>
<summary>This defines the layout for the hoverkey window - format is vertical | horizontal :: icons | text | both</summary>
</key>
<key name="hoverclick-position" type="s">
<default>""</default>
<summary>Stores the position of the hoverclick window so it can be restored there later - format is x::y</summary>
</key>
</schema>
<schema id="org.cinnamon.theme" path="/org/cinnamon/theme/"
gettext-domain="@GETTEXT_PACKAGE@">
<key name="name" type="s">
<default>"cinnamon"</default>
<summary>Theme name</summary>
<description>
The name of the theme
</description>
</key>
<key name="theme-cache-updated" type="i">
<default>0</default>
<summary>[not used - obsolete]</summary>
<description>
</description>
</key>
<key name="symbolic-relative-size" type="d">
<default>0.67</default>
<summary>Relative size of symbolic icons to the zone's icon size</summary>
</key>
<key name="gtk-version-scrollbar-multiplier" type="d">
<default>1.5</default>
<summary>Relative size of the scrollbars between gtk3 and gtk2 - the set value is multiplied by this for the gtk2 value</summary>
</key>
</schema>
<schema id="org.cinnamon.keyboard" path="/org/cinnamon/keyboard/"
gettext-domain="@GETTEXT_PACKAGE@">
<key name="keyboard-type" type="s">
<default>'tablet'</default>
<summary>Which keyboard to use</summary>
<description>
The type of keyboard to use.
</description>
</key>
<key name="activation-mode" type="s">
<default>'on-demand'</default>
<summary>How the keyboard becomes activated</summary>
<description>
Can be: on-demand: display the keyboard only at user demand, either when the applet is clicked, or a keyboard shortcut is used. accessible: display the keyboard any time an input field becomes the desktop keyboard focus.
</description>
</key>
<key name="keyboard-size" type="i">
<default>3</default>
<summary>The size of the keyboard. Set this value to X for the keyboard to take 1/x of the screen.</summary>
<description>
The size of the keyboard. Set this value to X for the keyboard to take 1/x of the screen.
</description>
</key>
<key name="keyboard-position" type="s">
<default>'top'</default>
<summary>Keyboard position</summary>
<description>
Keyboard position.
</description>
</key>
</schema>
<schema id="org.cinnamon.recorder" path="/org/cinnamon/recorder/"
gettext-domain="@GETTEXT_PACKAGE@">
<key name="framerate" type="i">
<default>15</default>
<summary>Framerate used for recording screencasts.</summary>
<description>
The framerate of the resulting screencast recordered
by Cinnamon's screencast recorder in frames-per-second.
</description>
</key>
<key name="pipeline" type="s">
<default>''</default>
<summary>The gstreamer pipeline used to encode the screencast</summary>
<description>
Sets the GStreamer pipeline used to encode recordings.
It follows the syntax used for gst-launch. The pipeline should have
an unconnected sink pad where the recorded video is recorded. It will
normally have a unconnected source pad; output from that pad
will be written into the output file. However the pipeline can also
take care of its own output - this might be used to send the output
to an icecast server via shout2send or similar. When unset or set
to an empty value, the default pipeline will be used. This is currently
'videorate ! vp8enc quality=10 speed=2 threads=%T ! queue ! webmmux'
and records to WEBM using the VP8 codec. %T is used as a placeholder
for a guess at the optimal thread count on the system.
</description>
</key>
<key name="file-extension" type="s">
<default>'webm'</default>
<summary>File extension used for storing the screencast</summary>
<description>
The filename for recorded screencasts will be a unique filename
based on the current date, and use this extension. It should be
changed when recording to a different container format.
</description>
</key>
</schema>
<schema id="org.cinnamon.background" path="/org/cinnamon/background/">
<key name="mode" type="s">
<default>"wallpaper"</default>
<summary>Background mode</summary>
<description>
This key defines the whether the desktop background shows one
single wallpaper, a slideshow or an online slideshow (Flickr).
</description>
</key>
<key name="slideshow-folder" type="s">
<default>""</default>
<summary>Folder to use for the slideshow</summary>
<description>
This key defines the folder to use for the slideshow.
</description>
</key>
<key name="slideshow-recursive" type="b">
<default>false</default>
<summary>Whether to list files recursively for the slideshow</summary>
<description>
This key defines whether to list files recursively for the slideshow.
</description>
</key>
<key name="slideshow-delay" type="i">
<default>15</default>
<summary>Delay for the slideshow</summary>
<description>
This key defines the delay for the slideshow.
</description>
</key>
</schema>
<schema id="org.cinnamon.desklets" path="/org/cinnamon/desklets/"
gettext-domain="@GETTEXT_PACKAGE@">
<child name="launcher" schema="org.cinnamon.desklets.launcher" />
</schema>
<schema id="org.cinnamon.sounds" path="/org/cinnamon/sounds/">
<key name="switch-enabled" type="b">
<default>false</default>
<summary>Whether to play a sound when switching workspaces</summary>
<description>
Whether to play a sound when switching workspaces.
</description>
</key>
<key name="switch-file" type="s">
<default>""</default>
<summary>Which sound to play when switching workspaces</summary>
<description>
Which sound to play when switching workspaces.
</description>
</key>
<key name="close-enabled" type="b">
<default>false</default>
<summary>Whether to play a sound when closing windows</summary>
<description>
Whether to play a sound when closing windows.
</description>
</key>
<key name="close-file" type="s">
<default>""</default>
<summary>Which sound to play when closing windows</summary>
<description>
Which sound to play when closing windows.
</description>
</key>
<key name="map-enabled" type="b">
<default>false</default>
<summary>Whether to play a sound when mapping windows</summary>
<description>
Whether to play a sound when mapping windows.
</description>
</key>
<key name="map-file" type="s">
<default>""</default>
<summary>Which sound to play when mapping windows</summary>
<description>
Which sound to play when mapping windows.
</description>
</key>
<key name="minimize-enabled" type="b">
<default>false</default>
<summary>Whether to play a sound when minimizing windows</summary>
<description>
Whether to play a sound when minimizing windows.
</description>
</key>
<key name="minimize-file" type="s">
<default>""</default>
<summary>Which sound to play when minimizing windows</summary>
<description>
Which sound to play when minimizing windows.
</description>
</key>
<key name="maximize-enabled" type="b">
<default>false</default>
<summary>Whether to play a sound when maximizing windows</summary>
<description>
Whether to play a sound when maximizing windows.
</description>
</key>
<key name="maximize-file" type="s">
<default>""</default>
<summary>Which sound to play when maximizing windows</summary>
<description>
Which sound to play when maximizing windows.
</description>
</key>
<key name="unmaximize-enabled" type="b">
<default>false</default>
<summary>Whether to play a sound when unmaximizing windows</summary>
<description>
Whether to play a sound when unmaximizing windows.
</description>
</key>
<key name="unmaximize-file" type="s">
<default>""</default>
<summary>Which sound to play when unmaximizing windows</summary>
<description>
Which sound to play when unmaximizing windows.
</description>
</key>
<key name="tile-enabled" type="b">
<default>false</default>
<summary>Whether to play a sound when tiling windows</summary>
<description>
Whether to play a sound when tiling windows.
</description>
</key>
<key name="tile-file" type="s">
<default>""</default>
<summary>Which sound to play when tiling windows</summary>
<description>
Which sound to play when tiling windows.
</description>
</key>
<key name="login-enabled" type="b">
<default>false</default>
<summary>Whether to play a sound during login</summary>
<description>
Whether to play a sound during login.
</description>
</key>
<key name="login-file" type="s">
<default>""</default>
<summary>Which sound to play when logging in</summary>
<description>
Which sound to play during login.
</description>
</key>
<key name="logout-enabled" type="b">
<default>false</default>
<summary>Whether to play a sound during logout</summary>
<description>
Whether to play a sound during logout.
</description>
</key>
<key name="logout-file" type="s">
<default>""</default>
<summary>Which sound to play when logging out</summary>
<description>
Which sound to play during logout.
</description>
</key>
<key name="plug-enabled" type="b">
<default>false</default>
<summary>Whether to play a sound when a device is plugged</summary>
<description>
Whether to play a sound when a device is plugged.
</description>
</key>
<key name="plug-file" type="s">
<default>""</default>
<summary>Which sound to play when a device is plugged</summary>
<description>
Which sound to play when a device is plugged.
</description>
</key>
<key name="unplug-enabled" type="b">
<default>false</default>
<summary>Whether to play a sound when a device is unplugged</summary>
<description>
Whether to play a sound when a device is unplugged.
</description>
</key>
<key name="unplug-file" type="s">
<default>""</default>
<summary>Which sound to play when a device is plugged</summary>
<description>
Which sound to play when a device is unplugged.
</description>
</key>
<key name="notification-enabled" type="b">
<default>false</default>
<summary>Whether to play a sound when showing notifications</summary>
<description>
Whether to play a sound when showing notifications.
</description>
</key>
<key name="notification-file" type="s">
<default>""</default>
<summary>Which sound to play when showing notifications</summary>
<description>
Which sound to play when showing notifications.
</description>
</key>
</schema>
<schema id="org.cinnamon.desklets.launcher" path="/org/cinnamon/desklets/launcher/"
gettext-domain="@GETTEXT_PACKAGE@">
<key name="launcher-list" type="as">
<default>[]</default>
<summary>Desktop files of the applications to be shown on desktop</summary>
<description>
The "launchers" desklet provides a method to show a launcher on the desktop
This list maps the desklet id to the desktop file of application.
</description>
</key>
</schema>
<schema id="org.cinnamon.runtime-keybindings" path="/org/cinnamon/runtime-keybindings/">
<key name="placeholder" type="b">
<default>false</default>
</key>
</schema>
<schema id="org.cinnamon.runtime-keybindings.runtime-keybinding">
<key name="bindings" type="as">
<default>[]</default>
<summary>Keybinding array for runtime keybinding.</summary>
</key>
<key name="action-id" type="i">
<default>0</default>
<summary>Action id for keybinding</summary>
</key>
</schema>
<schema id="org.cinnamon.keybindings.custom-keybinding">
<key name="name" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings</summary>
</key>
<key name="binding" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings</summary>
</key>
<key name="command" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings</summary>
</key>
</schema>
<schema id="org.cinnamon.invalid-schema" path="/org/cinnamon/invalid-schema/">
</schema>
<schema id="org.cinnamon.launcher" path="/org/cinnamon/launcher/">
<key name="memory-limit-enabled" type="b">
<default>true</default>
<summary>Whether to restart Cinnamon when it reachs the memory limit</summary>
<description></description>
</key>
<key name="memory-limit" type="i">
<default>2048</default>
<summary>Memory limit (in MB)</summary>
<description></description>
</key>
<key name="check-frequency" type="i">
<default>300</default>
<summary>Time between each checks (in seconds)</summary>
<description></description>
</key>
</schema>
</schemalist>

View File

@@ -1,229 +0,0 @@
<schemalist>
<enum id="background_transition">
<value value="0" nick="none"/>
<value value="1" nick="fade-in"/>
<value value="2" nick="blend"/>
</enum>
<enum id="placement_mode">
<value value="0" nick="automatic"/>
<value value="1" nick="pointer"/>
<value value="2" nick="manual"/>
<value value="3" nick="center"/>
</enum>
<schema id="org.cinnamon.muffin" path="/org/cinnamon/muffin/"
gettext-domain="muffin">
<key name="overlay-key" type="s">
<default>''</default>
<summary>DO NOT USE</summary>
<description>
Use keybinding mechanisms in cinnamon instead.
</description>
</key>
<key name="attach-modal-dialogs" type="b">
<default>false</default>
<summary>Attach modal dialogs</summary>
<description>
When true, instead of having independent titlebars, modal dialogs
appear attached to the titlebar of the parent window and are moved
together with the parent window.
</description>
</key>
<key name="edge-tiling" type="b">
<default>true</default>
<summary>Enable edge tiling when dropping windows on screen edges</summary>
<description>
If enabled, dropping windows on vertical screen edges maximizes them
vertically and resizes them horizontally to cover half of the available
area. Dropping windows on the top screen edge maximizes them completely.
</description>
</key>
<key name="tile-maximize" type="b">
<default>false</default>
<summary>Sets maximize as the tile action for the top edge of the screen</summary>
<description>
Makes tiling to the top maximize the window
</description>
</key>
<key name="invert-workspace-flip-direction" type="b">
<default>false</default>
<summary>Inverts the direction the left and right arrows take you when
you switch workspaces during a window drag</summary>
<description>
Changes left-right arrow keys to window-centric directions rather than
workspace-centric
</description>
</key>
<key name="dynamic-workspaces" type="b">
<default>false</default>
<summary>Workspaces are managed dynamically</summary>
<description>
Determines whether workspaces are managed dynamically or
whether theres a static number of workspaces (determined
by the num-workspaces key in org.cinnamon.desktop.wm.preferences).
</description>
</key>
<key name="workspace-cycle" type="b">
<default>false</default>
<summary>Allow cycling through workspaces</summary>
<description>
Allows cycling through workspaces, going to the workspace at the other end
if you are at the left-most or right-most one.
</description>
</key>
<key name="unredirect-fullscreen-windows" type="b">
<default>false</default>
<summary>Fullscreen windows are unredirected (i.e. they bypass compositing)</summary>
<description>
Determines whether fullscreen windows bypass compositing. False is better for vsync/screen-tearing, True gives games and apps i
</description>
</key>
<key name="workspaces-only-on-primary" type="b">
<default>false</default>
<summary>Workspaces only on primary</summary>
<description>
Determines whether workspace switching should happen for windows
on all monitors or only for windows on the primary monitor.
</description>
</key>
<key name="no-tab-popup" type="b">
<default>false</default>
<summary>No tab popup</summary>
<description>
Determines whether the use of popup and highlight frame should
be disabled for window cycling.
</description>
</key>
<key name="focus-change-on-pointer-rest" type="b">
<default>false</default>
<summary>Delay focus changes until the pointer stops moving</summary>
<description>
If set to true, and the focus mode is either “sloppy” or “mouse”
then the focus will not be changed immediately when entering a
window, but only after the pointer stops moving.
</description>
</key>
<key name="draggable-border-width" type="i">
<default>10</default>
<range min="0" max="64"/>
<summary>Draggable border width</summary>
<description>
The amount of total draggable borders. If the themes visible
borders are not enough, invisible borders will be added to meet
this value.
</description>
</key>
<key name="auto-maximize" type="b">
<default>false</default>
<summary>Auto maximize nearly monitor sized windows</summary>
<description>
If enabled, new windows that are initially the size of the monitor
automatically get maximized.
</description>
</key>
<key name="center-new-windows" type="b">
<default>false</default>
<summary>Obsolete — not used</summary>
</key>
<key name="placement-mode" enum="placement_mode">
<default>'automatic'</default>
<summary>Window placement mode</summary>
<description>
The window placement mode indicates how new windows are positioned.
• “automatic” — the system chooses a location automatically based on
the space available on the desktop, or by a simple
cascade if there is no space
• “pointer” — new windows are placed according to the mouse pointer
position
• “manual” — the user must manually place the new window with the
mouse or keyboard.
• “center” — new windows are always put in the center of the active
screen of the monitor
</description>
</key>
<key name="background-transition" enum="background_transition">
<default>'blend'</default>
<summary>Background transition</summary>
<description>The type of animation performed when changing background.
"none" means no animation at all.
"fade-in" means the old background switches to black and the new background appears with a fade-in effect.
"blend" means the old background disappears as the new background appears with a fade-in effect.
</description>
</key>
<key name="experimental-features" type="as">
<default>[]</default>
<summary>Enable experimental features</summary>
<description>
Currently only 'x11-randr-fractional-scaling' is useful in Cinnamon
• “x11-randr-fractional-scaling” — enable fractional scaling under X11
using xrandr scaling. It might reduce
performances.
Does not require a restart.
</description>
</key>
<key name="locate-pointer-key" type="as">
<default>['Control_L']</default>
<summary>Modifier to use to locate the pointer</summary>
<description>
This key will initiate the “locate pointer” action.
</description>
</key>
<key name="check-alive-timeout" type="u">
<default>5000</default>
<summary>Timeout for check-alive ping</summary>
<description>
Number of milliseconds a client has to respond to a ping request in
order to not be detected as frozen. Using 0 will disable the alive check
completely.
</description>
</key>
<key name="bring-windows-to-current-workspace" type="b">
<default>false</default>
<summary>Brings windows requiring attention to the current workspace</summary>
<description>
When enabled, if a window requires attention, it is brought to the current workspace.
</description>
</key>
<child name="keybindings" schema="org.cinnamon.muffin.keybindings"/>
</schema>
<schema id="org.cinnamon.muffin.keybindings" path="/org/cinnamon/muffin/keybindings/">
<key name="tab-popup-select" type="as">
<default>[]</default>
<summary>Select window from tab popup</summary>
</key>
<key name="tab-popup-cancel" type="as">
<default>[]</default>
<summary>Cancel tab popup</summary>
</key>
</schema>
</schemalist>

View File

@@ -1,108 +0,0 @@
<schemalist>
<schema id="org.cinnamon.muffin.wayland.keybindings" path="/org/cinnamon/muffin/wayland/keybindings/"
gettext-domain="muffin">
<key name="switch-to-session-1" type="as">
<default><![CDATA[['<Primary><Alt>F1']]]></default>
<summary>Switch to VT 1</summary>
</key>
<key name="switch-to-session-2" type="as">
<default><![CDATA[['<Primary><Alt>F2']]]></default>
<summary>Switch to VT 2</summary>
</key>
<key name="switch-to-session-3" type="as">
<default><![CDATA[['<Primary><Alt>F3']]]></default>
<summary>Switch to VT 3</summary>
</key>
<key name="switch-to-session-4" type="as">
<default><![CDATA[['<Primary><Alt>F4']]]></default>
<summary>Switch to VT 4</summary>
</key>
<key name="switch-to-session-5" type="as">
<default><![CDATA[['<Primary><Alt>F5']]]></default>
<summary>Switch to VT 5</summary>
</key>
<key name="switch-to-session-6" type="as">
<default><![CDATA[['<Primary><Alt>F6']]]></default>
<summary>Switch to VT 6</summary>
</key>
<key name="switch-to-session-7" type="as">
<default><![CDATA[['<Primary><Alt>F7']]]></default>
<summary>Switch to VT 7</summary>
</key>
<key name="switch-to-session-8" type="as">
<default><![CDATA[['<Primary><Alt>F8']]]></default>
<summary>Switch to VT 8</summary>
</key>
<key name="switch-to-session-9" type="as">
<default><![CDATA[['<Primary><Alt>F9']]]></default>
<summary>Switch to VT 9</summary>
</key>
<key name="switch-to-session-10" type="as">
<default><![CDATA[['<Primary><Alt>F10']]]></default>
<summary>Switch to VT 10</summary>
</key>
<key name="switch-to-session-11" type="as">
<default><![CDATA[['<Primary><Alt>F11']]]></default>
<summary>Switch to VT 11</summary>
</key>
<key name="switch-to-session-12" type="as">
<default><![CDATA[['<Primary><Alt>F12']]]></default>
<summary>Switch to VT 12</summary>
</key>
<key name="restore-shortcuts" type="as">
<default><![CDATA[['<Super>Escape']]]></default>
<summary>Re-enable shortcuts</summary>
</key>
</schema>
<schema id="org.cinnamon.muffin.wayland" path="/org/cinnamon/muffin/wayland/"
gettext-domain="muffin">
<key name="xwayland-allow-grabs" type="b">
<default>false</default>
<summary>Allow X11 grabs to lock keyboard focus with Xwayland</summary>
<description>
Allow all keyboard events to be routed to X11 “override redirect”
windows with a grab when running in Xwayland.
This option is to support X11 clients which map an “override redirect”
window (which do not receive keyboard focus) and issue a keyboard
grab to force all keyboard events to that window.
This option is seldom used and has no effect on regular X11 windows
which can receive keyboard focus under normal circumstances.
For a X11 grab to be taken into account under Wayland, the client must
also either send a specific X11 ClientMessage to the root window or be
among the applications white-listed in key “xwayland-grab-access-rules”.
</description>
</key>
<key name="xwayland-grab-access-rules" type="as">
<default>[]</default>
<summary>Xwayland applications allowed to issue keyboard grabs</summary>
<description>
List the resource names or resource class of X11 windows either
allowed or not allowed to issue X11 keyboard grabs under Xwayland.
The resource name or resource class of a given X11 window can be
obtained using the command “xprop WM_CLASS”.
Wildcards “*” and jokers “?” in the values are supported.
Values starting with “!” are blacklisted, which has precedence over
the whitelist, to revoke applications from the default system list.
The default system list includes the following applications:
“”
Users can break an existing grab by using the specific keyboard
shortcut defined by the keybinding key “restore-shortcuts”.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,30 +0,0 @@
<schemalist>
<enum id="org.cinnamon.muffin.X11.scale-mode">
<value nick="scale-up" value="1"/>
<value nick="scale-ui-down" value="2"/>
</enum>
<schema id="org.cinnamon.muffin.x11" path="/org/cinnamon/muffin/x11/"
gettext-domain="muffin">
<key name="fractional-scale-mode" enum="org.cinnamon.muffin.X11.scale-mode">
<default>"scale-ui-down"</default>
<description>
Choose the scaling mode to be used under X11 via Randr extension.
Supported methods are:
• “scale-up” — Scale everything up to the requested scale, shrinking
the UI. The applications will look blurry when scaling
at higher values and the resolution will be lowered.
• “scale-ui-down — Scale up the UI toolkits to the closest integer
scaling value upwards, while scale down the display
to match the requested scaling level.
It increases the resolution of the logical display.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,100 +0,0 @@
<!-- This file is generated by glib-mkenums, do not modify it. This code is licensed under the same license as the containing project. Note that it links to GLib, so must comply with the LGPL linking clauses. -->
<schemalist>
<enum id='org.cinnamon.settings-daemon.CsdFontAntialiasingMode'>
<value nick='none' value='0'/>
<value nick='grayscale' value='1'/>
<value nick='rgba' value='2'/>
</enum>
<enum id='org.cinnamon.settings-daemon.CsdFontHinting'>
<value nick='none' value='0'/>
<value nick='slight' value='1'/>
<value nick='medium' value='2'/>
<value nick='full' value='3'/>
</enum>
<enum id='org.cinnamon.settings-daemon.CsdFontRgbaOrder'>
<value nick='rgba' value='0'/>
<value nick='rgb' value='1'/>
<value nick='bgr' value='2'/>
<value nick='vrgb' value='3'/>
<value nick='vbgr' value='4'/>
</enum>
<enum id='org.cinnamon.settings-daemon.CsdSmartcardRemovalAction'>
<value nick='none' value='0'/>
<value nick='lock-screen' value='1'/>
<value nick='force-logout' value='2'/>
</enum>
<enum id='org.cinnamon.settings-daemon.CsdBellMode'>
<value nick='on' value='0'/>
<value nick='off' value='1'/>
<value nick='custom' value='2'/>
</enum>
<enum id='org.cinnamon.settings-daemon.CsdTouchpadHandedness'>
<value nick='right' value='0'/>
<value nick='left' value='1'/>
<value nick='mouse' value='2'/>
</enum>
<enum id='org.cinnamon.settings-daemon.CsdXrandrBootBehaviour'>
<value nick='do-nothing' value='0'/>
<value nick='clone' value='1'/>
<value nick='dock' value='2'/>
<value nick='follow-lid' value='3'/>
</enum>
<enum id='org.cinnamon.settings-daemon.CsdWacomRotation'>
<value nick='none' value='0'/>
<value nick='cw' value='1'/>
<value nick='ccw' value='2'/>
<value nick='half' value='3'/>
</enum>
<enum id='org.cinnamon.settings-daemon.CsdWacomActionType'>
<value nick='none' value='0'/>
<value nick='custom' value='1'/>
<value nick='switch-monitor' value='2'/>
<value nick='help' value='3'/>
</enum>
<enum id='org.cinnamon.settings-daemon.CsdPowerActionType'>
<value nick='blank' value='0'/>
<value nick='suspend' value='1'/>
<value nick='shutdown' value='2'/>
<value nick='hibernate' value='3'/>
<value nick='interactive' value='4'/>
<value nick='nothing' value='5'/>
</enum>
<enum id='org.cinnamon.settings-daemon.CsdUpdateType'>
<value nick='all' value='0'/>
<value nick='security' value='1'/>
<value nick='none' value='2'/>
</enum>
<enum id='org.cinnamon.settings-daemon.CsdNumLockState'>
<value nick='unknown' value='0'/>
<value nick='on' value='1'/>
<value nick='off' value='2'/>
</enum>
<enum id='org.cinnamon.settings-daemon.CsdInputSourcesSwitcher'>
<value nick='off' value='0'/>
<value nick='shift-l' value='1'/>
<value nick='alt-l' value='2'/>
<value nick='ctrl-l' value='3'/>
<value nick='shift-r' value='4'/>
<value nick='alt-r' value='5'/>
<value nick='ctrl-r' value='6'/>
<value nick='alt-shift-l' value='7'/>
<value nick='alt-shift-r' value='8'/>
<value nick='ctrl-shift-l' value='9'/>
<value nick='ctrl-shift-r' value='10'/>
<value nick='shift-l-shift-r' value='11'/>
<value nick='alt-l-alt-r' value='12'/>
<value nick='ctrl-l-ctrl-r' value='13'/>
<value nick='alt-shift' value='14'/>
<value nick='ctrl-shift' value='15'/>
<value nick='alt-ctrl' value='16'/>
<value nick='caps' value='17'/>
<value nick='shift-caps' value='18'/>
<value nick='alt-caps' value='19'/>
<value nick='ctrl-caps' value='20'/>
</enum>
</schemalist>
<!-- Generated data ends here -->

View File

@@ -1,196 +0,0 @@
<schemalist>
<schema gettext-domain="cinnamon-settings-daemon" id="org.cinnamon.settings-daemon.peripherals" path="/org/cinnamon/settings-daemon/peripherals/">
<child name="smartcard" schema="org.cinnamon.settings-daemon.peripherals.smartcard"/>
<child name="keyboard" schema="org.cinnamon.settings-daemon.peripherals.keyboard"/>
<child name="touchscreen" schema="org.cinnamon.settings-daemon.peripherals.touchscreen"/>
<child name="input-devices" schema="org.cinnamon.settings-daemon.peripherals.input-devices"/>
</schema>
<schema gettext-domain="cinnamon-settings-daemon" id="org.cinnamon.settings-daemon.peripherals.smartcard" path="/org/cinnamon/settings-daemon/peripherals/smartcard/">
<key name="removal-action" enum="org.cinnamon.settings-daemon.CsdSmartcardRemovalAction">
<default>'none'</default>
<summary>Smartcard removal action</summary>
<description>Set this to one of "none", "lock-screen", or "force-logout". The action will get performed when the smartcard used for log in is removed.</description>
</key>
</schema>
<schema gettext-domain="cinnamon-settings-daemon" id="org.cinnamon.settings-daemon.peripherals.keyboard" path="/org/cinnamon/settings-daemon/peripherals/keyboard/">
<key name="click" type="b">
<default>true</default>
</key>
<key name="click-volume" type="i">
<default>0</default>
</key>
<key name="bell-mode" enum="org.cinnamon.settings-daemon.CsdBellMode">
<default>'on'</default>
<description>Possible values are "on", "off", and "custom".</description>
</key>
<key name="bell-pitch" type="i">
<default>400</default>
</key>
<key name="bell-duration" type="i">
<default>100</default>
</key>
<key name="bell-custom-file" type="s">
<default>''</default>
<summary>Keyboard Bell Custom Filename</summary>
<description>File name of the bell sound to be played.</description>
</key>
<key name="remember-numlock-state" type="b">
<default>true</default>
<summary>Remember NumLock state</summary>
<description>When set to true, GNOME will remember the state of the NumLock LED between sessions.</description>
</key>
<key name="numlock-state" enum="org.cinnamon.settings-daemon.CsdNumLockState">
<default>'unknown'</default>
<summary>NumLock state</summary>
<description>The remembered state of the NumLock LED.</description>
</key>
<key name="input-sources-switcher" enum="org.cinnamon.settings-daemon.CsdInputSourcesSwitcher">
<default>'off'</default>
<summary>Modifiers-only input sources switcher shortcut</summary>
</key>
</schema>
<schema gettext-domain="cinnamon-settings-daemon" id="org.cinnamon.settings-daemon.peripherals.touchscreen" path="/org/cinnamon/settings-daemon/peripherals/touchscreen/">
<key name="orientation-lock" type="b">
<default>true</default>
<summary>Whether the tablet's orientation is locked, or rotated automatically.</summary>
</key>
</schema>
<schema gettext-domain="cinnamon-settings-daemon" id="org.cinnamon.settings-daemon.peripherals.input-devices" path="/org/cinnamon/settings-daemon/peripherals/input-devices/">
<key name="hotplug-command" type="s">
<default>''</default>
<summary>Device hotplug custom command</summary>
<description>Command to be run when a device is added or removed.</description>
</key>
</schema>
<schema id="org.cinnamon.settings-daemon.peripherals.keyboard.deprecated">
<key name="repeat" type="b">
<default>true</default>
</key>
<key name="repeat-interval" type="u">
<default>30</default>
<summary>Key Repeat Interval</summary>
<description>Delay between repeats in milliseconds.</description>
</key>
<key name="delay" type="u">
<default>500</default>
<summary>Initial Key Repeat Delay</summary>
<description>Initial key repeat delay in milliseconds.</description>
</key>
</schema>
<schema id="org.cinnamon.settings-daemon.peripherals.trackball.deprecated">
<key name="scroll-wheel-emulation-button" type="i">
<default>0</default>
<range min="0" max="24"/>
<summary>Mouse wheel emulation button. 0 to disable the feature.</summary>
</key>
</schema>
<schema id="org.cinnamon.settings-daemon.peripherals.mouse.deprecated">
<key name="locate-pointer" type="b">
<default>false</default>
<summary>deprecated - see org.cinnamon.desktop.peripherals.mouse</summary>
</key>
<key name="left-handed" type="b">
<default>false</default>
<summary>deprecated - see org.cinnamon.desktop.peripherals.mouse</summary>
</key>
<key name="natural-scroll" type="b">
<default>false</default>
<summary>deprecated - see org.cinnamon.desktop.peripherals.mouse</summary>
</key>
<key name="custom-acceleration" type="b">
<default>false</default>
<summary>deprecated - see org.cinnamon.desktop.peripherals.mouse</summary>
</key>
<key name="motion-acceleration" type="d">
<default>-1</default>
<summary>deprecated - see org.cinnamon.desktop.peripherals.mouse</summary>
</key>
<key name="custom-threshold" type="b">
<default>false</default>
<summary>deprecated - see org.cinnamon.desktop.peripherals.mouse</summary>
</key>
<key name="motion-threshold" type="i">
<default>-1</default>
<summary>deprecated - see org.cinnamon.desktop.peripherals.mouse</summary>
</key>
<key name="double-click" type="i">
<default>400</default>
<summary>deprecated - see org.cinnamon.desktop.peripherals.mouse</summary>
</key>
<key name="drag-threshold" type="i">
<default>8</default>
<summary>deprecated - see org.cinnamon.desktop.peripherals.mouse</summary>
</key>
<key name="middle-button-enabled" type="b">
<default>true</default>
<summary>deprecated - see org.cinnamon.desktop.peripherals.mouse</summary>
</key>
</schema>
<schema id="org.cinnamon.settings-daemon.peripherals.touchpad.deprecated">
<key name="disable-while-typing" type="b">
<default>true</default>
<summary>Disable touchpad while typing</summary>
<description>Set this to TRUE if you have problems with accidentally hitting the touchpad while typing.</description>
</key>
<key name="scrolling-method" type="i">
<default>3</default>
<summary>Set scrolling mode on touchpad</summary>
<description>0 to 2, 0 is disabled, 1 is two-finger scrolling, 2 is edge scrolling, 3 is automatic selection</description>
</key>
<key name="horizontal-scrolling" type="b">
<default>false</default>
<summary></summary>
<description></description>
</key>
<key name="tap-to-click" type="b">
<default>true</default>
<summary>Enable mouse clicks with touchpad</summary>
<description>Set this to TRUE to be able to send mouse clicks by tapping on the touchpad.</description>
</key>
<key name="clickpad-click" type="i">
<default>3</default>
<summary>Click action on clickpads</summary>
<description>0 through 2, 0 is single click action, 1 emulates mouse buttons in bottom corners, 2 is multi-finger click, 3 is automatic selection</description>
</key>
<key name="touchpad-enabled" type="b">
<default>true</default>
<summary>Enable touchpad</summary>
<description>Set this to TRUE to enable all touchpads.</description>
</key>
<key name="disable-with-external-mouse" type="b">
<default>false</default>
<summary>Disable the touchpad when an external mouse is connected</summary>
<description>Set this to TRUE to disable the touchpad when an external mouse is connected (only available with libinput)</description>
</key>
<key name="left-handed" enum="org.cinnamon.settings-daemon.CsdTouchpadHandedness">
<default>'mouse'</default>
<summary>Touchpad button orientation</summary>
<description>Swap left and right mouse buttons for left-handed mice with 'left', 'right' for right-handed, 'mouse' to follow the mouse setting.</description>
</key>
<key name="custom-acceleration" type="b">
<default>false</default>
<summary>Custom Motion Acceleration</summary>
<description>Whether or not to use a custom motion acceleration value.</description>
</key>
<key name="motion-acceleration" type="d">
<default>-1</default>
<summary>Motion Acceleration</summary>
<description>Acceleration multiplier for mouse motion. A value of -1 is the system default.</description>
</key>
<key name="custom-threshold" type="b">
<default>false</default>
<summary>Custom Motion Threshold</summary>
<description>Whether or not to use a custom motion threshold value.</description>
</key>
<key name="motion-threshold" type="i">
<default>-1</default>
<summary>Motion Threshold</summary>
<description>Distance in pixels the pointer must move before accelerated mouse motion is activated. A value of -1 is the system default.</description>
</key>
<key name="natural-scroll" type="b">
<default>true</default>
<summary>Natural scrolling</summary>
<description>Set this to TRUE to enable natural (reverse) scrolling for touchpads.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,106 +0,0 @@
<schemalist>
<schema gettext-domain="cinnamon-settings-daemon" id="org.cinnamon.settings-daemon.plugins.csdwacom" path="/org/cinnamon/settings-daemon/plugins/csdwacom/">
</schema>
<schema gettext-domain="cinnamon-settings-daemon" id="org.cinnamon.settings-daemon.peripherals.wacom.deprecated">
<child name="stylus" schema="org.cinnamon.settings-daemon.peripherals.wacom.stylus.deprecated"/>
<child name="eraser" schema="org.cinnamon.settings-daemon.peripherals.wacom.eraser.deprecated"/>
<!-- is-absolute applies to all tools but PAD, CURSOR is hard-coded -->
<key name="is-absolute" type="b">
<default>true</default>
<summary>Wacom stylus absolute mode</summary>
<description>Enable this to set the tablet to absolute mode.</description>
</key>
<key name="area" type="ai">
<default>[-1, -1, -1, -1]</default>
<summary>Wacom tablet area</summary>
<description>Set this to x1, y1 and x2, y2 of the area usable by the tools.</description>
</key>
<key name="keep-aspect" type="b">
<default>false</default>
<summary>Wacom tablet aspect ratio</summary>
<description>Enable this to restrict the Wacom tablet area to match the aspect ratio of the output.</description>
</key>
<key name="keep-rotation" type="b">
<default>true</default>
<summary>Wacom tablet automatic rotation</summary>
<description>Enable this to automatically rotate the Wacom tablet area to match the rotation of the output.</description>
</key>
<key name="rotation" enum="org.cinnamon.settings-daemon.CsdWacomRotation">
<default>'none'</default>
<summary>Wacom tablet rotation</summary>
<description>Set this to 'none', 'cw' for 90 degree clockwise, 'half' for 180 degree, and 'ccw' for 90 degree counterclockwise.</description>
</key>
<key name="touch" type="b">
<default>true</default>
<summary>Wacom touch feature</summary>
<description>Enable this to move the cursor when the user touches the tablet.</description>
</key>
<key name="tablet-pc-button" type="b">
<default>false</default>
<summary>Wacom tablet PC feature</summary>
<description>Enable this to only report stylus events when the tip is pressed.</description>
</key>
<key name="display" type="as">
<default>["", "", ""]</default>
<summary>Wacom display mapping</summary>
<description>EDID information of monitor to map tablet to. Must be in the format [vendor, product, serial]. ["","",""] disables mapping.</description>
</key>
</schema>
<schema gettext-domain="cinnamon-settings-daemon" id="org.cinnamon.settings-daemon.peripherals.wacom.stylus.deprecated">
<key name="pressurecurve" type="ai">
<default>[0, 0, 100, 100]</default>
<summary>Wacom stylus pressure curve</summary>
<description>Set this to x1, y1 and x2, y2 of the pressure curve applied to the stylus.</description>
</key>
<key name="buttonmapping" type="ai">
<default>[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]</default>
<summary>Wacom stylus button mapping</summary>
<description>Set this to the logical button mapping.</description>
</key>
<key name="pressurethreshold" type="i">
<default>-1</default>
<summary>Wacom stylus pressure threshold</summary>
<description>Set this to the pressure value at which a stylus click event is generated.</description>
</key>
</schema>
<schema gettext-domain="cinnamon-settings-daemon" id="org.cinnamon.settings-daemon.peripherals.wacom.eraser.deprecated">
<key name="pressurecurve" type="ai">
<default>[0, 0, 100, 100]</default>
<summary>Wacom eraser pressure curve</summary>
<description>Set this to x1, y1 and x2, y2 of the pressure curve applied to the eraser.</description>
</key>
<key name="buttonmapping" type="ai">
<default>[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]</default>
<summary>Wacom eraser button mapping</summary>
<description>Set this to the logical button mapping.</description>
</key>
<key name="pressurethreshold" type="i">
<default>-1</default>
<summary>Wacom eraser pressure threshold</summary>
<description>Set this to the pressure value at which an eraser click event is generated.</description>
</key>
</schema>
<schema gettext-domain="cinnamon-settings-daemon" id="org.cinnamon.settings-daemon.peripherals.wacom.tablet-button.deprecated">
<key name="action-type" enum="org.cinnamon.settings-daemon.CsdWacomActionType">
<default>'none'</default>
<summary>Wacom button action type</summary>
<description>The type of action triggered by the button being pressed.</description>
</key>
<key name="custom-action" type="s">
<default>''</default>
<summary>Key combination for the custom action</summary>
<description>The keyboard shortcut generated when the button is pressed for custom actions.</description>
</key>
<key name="custom-elevator-action" type="as">
<default>['', '']</default>
<summary>Key combinations for a touchring or touchstrip custom action</summary>
<description>The keyboard shortcuts generated when a touchring or touchstrip is used for custom actions (up followed by down).</description>
</key>
</schema>
<schema id="org.cinnamon.desktop.peripherals.tablet.deprecated">
<key name="display" type="as">
<default>["", "", ""]</default>
</key>
</schema>
</schemalist>

View File

@@ -1,48 +0,0 @@
<schemalist>
<enum id="schedule_mode">
<value value="0" nick="auto"/>
<value value="1" nick="manual"/>
</enum>
<schema gettext-domain="cinnamon-settings-daemon" id="org.cinnamon.settings-daemon.plugins.color" path="/org/cinnamon/settings-daemon/plugins/color/">
<key name="recalibrate-display-threshold" type="u">
<default>0</default>
<summary>The duration a display profile is valid</summary>
<description>This is the number of days after which the display color profile is considered invalid.</description>
</key>
<key name="recalibrate-printer-threshold" type="u">
<default>0</default>
<summary>The duration a printer profile is valid</summary>
<description>This is the number of days after which the printer color profile is considered invalid.</description>
</key>
<key name="night-light-enabled" type="b">
<default>false</default>
<summary>If the night light mode is enabled</summary>
<description>Night light mode changes the color temperature of your display when the sun has gone down or at preset times.</description>
</key>
<key name="night-light-temperature" type="u">
<default>2700</default>
<summary>Temperature of the display when enabled</summary>
<description>This temperature in Kelvin is used to modify the screen tones when night light mode is enabled. Higher values are bluer, lower redder.</description>
</key>
<key name="night-light-schedule-mode" enum="schedule_mode">
<default>'auto'</default>
<summary>Set the way start and stop times are determined</summary>
<description>Setting to 'auto' will use the system timezone to determine sunrise and sunset. Using 'manual' mode allows specifying exact start and stop times (night-light-schedule-from and -to).</description>
</key>
<key name="night-light-schedule-from" type="d">
<default>20.00</default>
<summary>The start time</summary>
<description>When “night-light-schedule-automatic” is disabled, use this start time in hours from midnight.</description>
</key>
<key name="night-light-schedule-to" type="d">
<default>6.00</default>
<summary>The end time</summary>
<description>When “night-light-schedule-automatic” is disabled, use this end time in hours from midnight.</description>
</key>
<key name="night-light-last-coordinates" type="(dd)">
<default>(91,181)</default>
<summary>The last detected position</summary>
<description>When location services are available this represents the last detected location. The default value is an invalid value to ensure it is always updated at startup.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,10 +0,0 @@
<schemalist>
<schema gettext-domain="cinnamon-settings-daemon" id="org.cinnamon.settings-daemon.plugins" path="/org/cinnamon/settings-daemon/plugins/">
<child name="color" schema="org.cinnamon.settings-daemon.plugins.color"/>
<child name="housekeeping" schema="org.cinnamon.settings-daemon.plugins.housekeeping"/>
<child name="media-keys" schema="org.cinnamon.settings-daemon.plugins.media-keys"/>
<child name="power" schema="org.cinnamon.settings-daemon.plugins.power"/>
<child name="xrandr" schema="org.cinnamon.settings-daemon.plugins.xrandr"/>
<child name="xsettings" schema="org.cinnamon.settings-daemon.plugins.xsettings"/>
</schema>
</schemalist>

View File

@@ -1,29 +0,0 @@
<schemalist>
<schema gettext-domain="cinnamon-settings-daemon" id="org.cinnamon.settings-daemon.plugins.housekeeping" path="/org/cinnamon/settings-daemon/plugins/housekeeping/">
<key name="ignore-paths" type="as">
<default>[]</default>
<summary>Mount paths to ignore</summary>
<description>Specify a list of mount paths to ignore when they run low on space.</description>
</key>
<key name="free-percent-notify" type="d">
<default>0.05</default>
<summary>Free percentage notify threshold</summary>
<description>Percentage free space threshold for initial warning of low disk space. If the percentage free space drops below this, a warning will be shown.</description>
</key>
<key name="free-percent-notify-again" type="d">
<default>0.01</default>
<summary>Subsequent free space percentage notify threshold</summary>
<description>Specify the percentage that the free disk space should reduce by before issuing a subsequent warning.</description>
</key>
<key name="free-size-gb-no-notify" type="i">
<default>1</default>
<summary>Free space notify threshold</summary>
<description>Specify an amount in GB. If the amount of free space is more than this, no warning will be shown.</description>
</key>
<key name="min-notify-period" type="i">
<default>10</default>
<summary>Minimum notify period for repeated warnings</summary>
<description>Specify a time in minutes. Subsequent warnings for a volume will not appear more often than this period.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,141 +0,0 @@
<schemalist>
<schema gettext-domain="cinnamon-settings-daemon" id="org.cinnamon.settings-daemon.plugins.media-keys" path="/org/cinnamon/settings-daemon/plugins/media-keys/">
<key name="calculator" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="email" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="eject" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="help" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="home" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="media" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="next" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="pause" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="play" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="logout" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="shutdown" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="previous" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="screensaver" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="search" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="stop" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="volume-down" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="volume-mute" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="volume-up" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="screenshot" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="window-screenshot" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="area-screenshot" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="screenshot-clip" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="window-screenshot-clip" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="area-screenshot-clip" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="terminal" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="www" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="magnifier" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="screenreader" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="on-screen-keyboard" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="increase-text-size" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="decrease-text-size" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="toggle-contrast" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="magnifier-zoom-in" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
<key name="magnifier-zoom-out" type="s">
<default>''</default>
<summary>deprecated - moved to org.cinnamon.desktop.keybindings.media-keys</summary>
</key>
</schema>
</schemalist>

View File

@@ -1,174 +0,0 @@
<schemalist>
<schema gettext-domain="cinnamon-settings-daemon" id="org.cinnamon.settings-daemon.plugins.power" path="/org/cinnamon/settings-daemon/plugins/power/">
<key name="idle-brightness" type="i">
<default>30</default>
<summary>The brightness of the screen when idle</summary>
<description>This is the laptop panel screen brightness used when the session is idle.</description>
</key>
<key name="idle-dim-ac" type="b">
<default>false</default>
<summary>Dim the screen after a period of inactivity when on AC power</summary>
<description>If the screen should be dimmed to save power when the computer is idle when on AC power.</description>
</key>
<key name="idle-dim-battery" type="b">
<default>true</default>
<summary>Dim the screen after a period of inactivity when on battery power</summary>
<description>If the screen should be dimmed to save power when the computer is idle when on battery power.</description>
</key>
<key name="idle-dim-time" type="i">
<default>90</default>
<summary>The default amount of time to dim the screen after idle</summary>
<description>The default amount of time to dim the screen after idle.</description>
</key>
<key name="sleep-display-ac" type="i">
<default>1800</default>
<summary>Sleep timeout display when on AC</summary>
<description>The amount of time in seconds before the display turns off when the computer is on AC power.</description>
</key>
<key name="sleep-display-battery" type="i">
<default>1800</default>
<summary>Sleep timeout display when on battery</summary>
<description>The amount of time in seconds before the display turns off when the computer is on battery power.</description>
</key>
<key name="sleep-inactive-ac-timeout" type="i">
<default>0</default>
<summary>Sleep timeout computer when on AC</summary>
<description>The amount of time in seconds the computer on AC power needs to be inactive before it goes to sleep. A value of 0 means never.</description>
</key>
<key name="sleep-inactive-ac-type" enum="org.cinnamon.settings-daemon.CsdPowerActionType">
<default>'suspend'</default>
<summary>Whether to hibernate, suspend or do nothing when inactive</summary>
<description>The type of sleeping that should be performed when the computer is inactive.</description>
</key>
<key name="sleep-inactive-battery-timeout" type="i">
<default>0</default>
<summary>Sleep timeout computer when on battery</summary>
<description>The amount of time in seconds the computer on battery power needs to be inactive before it goes to sleep. A value of 0 means never.</description>
</key>
<key name="sleep-inactive-battery-type" enum="org.cinnamon.settings-daemon.CsdPowerActionType">
<default>'suspend'</default>
<summary>Whether to hibernate, suspend or do nothing when inactive</summary>
<description>The type of sleeping that should be performed when the computer is inactive.</description>
</key>
<key name="button-suspend" enum="org.cinnamon.settings-daemon.CsdPowerActionType">
<default>'suspend'</default>
<summary>Suspend button action</summary>
<description>The action to take when the system suspend button is pressed.</description>
</key>
<key name="button-hibernate" enum="org.cinnamon.settings-daemon.CsdPowerActionType">
<default>'hibernate'</default>
<summary>Hibernate button action</summary>
<description>The action to take when the system hibernate button is pressed.</description>
</key>
<key name="button-power" enum="org.cinnamon.settings-daemon.CsdPowerActionType">
<default>'suspend'</default>
<summary>Power button action</summary>
<description>The action to take when the system power button is pressed.</description>
</key>
<key name="lid-close-battery-action" enum="org.cinnamon.settings-daemon.CsdPowerActionType">
<default>'suspend'</default>
<summary>Laptop lid close action on battery</summary>
<description>The action to take when the laptop lid is closed and the laptop is on battery power.</description>
</key>
<key name="lid-close-ac-action" enum="org.cinnamon.settings-daemon.CsdPowerActionType">
<default>'suspend'</default>
<summary>Laptop lid close action when on AC</summary>
<description>The action to take when the laptop lid is closed and the laptop is on AC power.</description>
</key>
<key name="lid-close-suspend-with-external-monitor" type="b">
<default>false</default>
<summary>Laptop lid, when closed, will suspend even if there is an external monitor plugged in</summary>
<description>With no external monitors plugged in, closing a laptop's lid
will suspend the machine (as set by the lid-close-battery-action and
lid-close-ac-action keys). By default, however, closing the lid when
an external monitor is present will not suspend the machine, so that one can keep
working on that monitor (e.g. for docking stations or media viewers). Set this
key to False to keep the default behavior, or to True to suspend the laptop whenever the
lid is closed and regardless of external monitors.</description>
</key>
<key name="critical-battery-action" enum="org.cinnamon.settings-daemon.CsdPowerActionType">
<default>'hibernate'</default>
<summary>Battery critical low action</summary>
<description>The action to take when the battery is critically low.</description>
</key>
<key name="percentage-low" type="i">
<default>10</default>
<summary>Percentage considered low</summary>
<description>The percentage of the battery when it is considered low. Only valid when use-time-for-policy is false.</description>
</key>
<key name="percentage-critical" type="i">
<default>4</default>
<summary>Percentage considered critical</summary>
<description>The percentage of the battery when it is considered critical. Only valid when use-time-for-policy is false.</description>
</key>
<key name="percentage-action" type="i">
<default>3</default>
<summary>Percentage action is taken</summary>
<description>The percentage of the battery when the critical action is performed. Only valid when use-time-for-policy is false.</description>
</key>
<key name="time-low" type="i">
<default>1200</default>
<summary>The time remaining when low</summary>
<description>The time remaining in seconds of the battery when it is considered low. Only valid when use-time-for-policy is true.</description>
</key>
<key name="time-critical" type="i">
<default>420</default>
<summary>The time remaining when critical</summary>
<description>The time remaining in seconds of the battery when it is considered critical. Only valid when use-time-for-policy is true.</description>
</key>
<key name="time-action" type="i">
<default>240</default>
<summary>The time remaining when action is taken</summary>
<description>The time remaining in seconds of the battery when critical action is taken. Only valid when use-time-for-policy is true.</description>
</key>
<key name="use-time-for-policy" type="b">
<default>false</default>
<summary>Whether to use time-based notifications</summary>
<description>If time based notifications should be used. If set to false, then the percentage change is used instead, which may fix a broken ACPI BIOS.</description>
</key>
<key name="lock-on-suspend" type="b">
<default>false</default>
<summary>If the computer should lock when entering suspend mode</summary>
<description>If the computer should lock during suspend - replaces ubuntu-lock-on-suspend</description>
</key>
<key name="backlight-helper-force" type="b">
<default>false</default>
<summary>Use the backlight helper application by default</summary>
<description>Setting this to true forces cinnamon-settings-daemon to use the backlight helper application
to provide backlight control. This will usually fix backlight control problems on laptops where X11 picks
the wrong interface, or uses an interface incorrectly. Adjust backlight-preference-order if the default
selection logic still chooses the wrong interface.</description>
</key>
<key name="backlight-helper-preference-order" type="as">
<default>['firmware','platform','raw']</default>
<summary>Search order for backlight control interfaces</summary>
<description>Controls the type of interfaces the backlight-helper will search for to control the backlight.
This can be useful for working around systems with broken default backlight control behavior which provide
multiple interfaces. If you are having problems, try setting 'raw' to a higher priority.</description>
</key>
<key name="inhibit-lid-switch" type="b">
<default>true</default>
<summary>Whether or not cinnamon-settings-daemon inhibits logind's handling of lid switch</summary>
<description>This setting should be true in all distributions and for all users. Only set it to false, if you want to prevent Cinnamon from handling lid switch events. In this case, you should not rely on Cinnamon's lid actions and use the logind ones instead.</description>
</key>
<key name="minimum-display-brightness" type="u">
<default>2</default>
<summary>In percent, minimum allowable brightness adjustment. This will become 0 percent brightness</summary>
</key>
<key name="power-notifications-for-keyboard" type="b">
<default>true</default>
<summary>Low battery notifications for wireless keyboard</summary>
<description>Whether to show low battery notifications for wireless keyboard devices.</description>
</key>
<key name="power-notifications-for-mouse" type="b">
<default>true</default>
<summary>Low battery notifications for wireless mouse</summary>
<description>Whether to show low battery notifications for wireless mouse devices.</description>
</key>
<key name="power-notifications-for-other-devices" type="b">
<default>true</default>
<summary>Low battery notifications for other connected devices</summary>
<description>Whether to show low battery notifications for connected devices other than keyboards and mice.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,12 +0,0 @@
<schemalist>
<schema gettext-domain="cinnamon-settings-daemon" id="org.cinnamon.settings-daemon.plugins.xrandr" path="/org/cinnamon/settings-daemon/plugins/xrandr/">
<key name="default-configuration-file" type="s">
<default>'/etc/cinnamon-settings-daemon/xrandr/monitors.xml'</default>
<summary>deprecated - handled by muffin</summary>
</key>
<key name="default-monitors-setup" enum="org.cinnamon.settings-daemon.CsdXrandrBootBehaviour">
<default>'follow-lid'</default>
<summary>deprecated - handled by muffin</summary>
</key>
</schema>
</schemalist>

View File

@@ -1,76 +0,0 @@
<schemalist>
<schema gettext-domain="cinnamon-settings-daemon" id="org.cinnamon.settings-daemon.plugins.xsettings" path="/org/cinnamon/settings-daemon/plugins/xsettings/">
<key name="antialiasing" enum="org.cinnamon.settings-daemon.CsdFontAntialiasingMode">
<default>'rgba'</default>
<summary>Antialiasing</summary>
<description>The type of antialiasing to use when rendering fonts. Possible values are: "none" for no antialiasing, "grayscale" for standard grayscale antialiasing, and "rgba" for subpixel antialiasing (LCD screens only).</description>
</key>
<key name="hinting" enum="org.cinnamon.settings-daemon.CsdFontHinting">
<default>'slight'</default>
<summary>Hinting</summary>
<description>The type of hinting to use when rendering fonts. Possible values are: "none" for no hinting, "slight" for basic, "medium" for moderate, and "full" for maximum hinting (may cause distortion of letter forms).</description>
</key>
<key name="rgba-order" enum="org.cinnamon.settings-daemon.CsdFontRgbaOrder">
<default>'rgb'</default>
<summary>RGBA order</summary>
<description>The order of subpixel elements on an LCD screen; only used when antialiasing is set to "rgba". Possible values are: "rgb" for red on left (most common), "bgr" for blue on left, "vrgb" for red on top, "vbgr" for red on bottom.</description>
</key>
<key name="disabled-gtk-modules" type="as">
<default>[]</default>
<summary>List of explicitly disabled GTK+ modules</summary>
<description>A list of strings representing the GTK+ modules that will not be loaded, even if enabled by default in their configuration.</description>
</key>
<key name="enabled-gtk-modules" type="as">
<default>[]</default>
<summary>List of explicitly enabled GTK+ modules</summary>
<description>A list of strings representing the GTK+ modules that will be loaded, usually in addition to conditional and forcibly disabled ones.</description>
</key>
<key type="a{sv}" name="overrides">
<default>{}</default>
<summary>A dictionary of XSETTINGS to override</summary>
<description>This dictionary maps XSETTINGS names to overrides values. The values must be either strings, signed int32s or (in the case of colors), 4-tuples of uint16 (red, green, blue, alpha; 65535 is fully opaque).</description>
</key>
<key name="menus-have-icons" type="b">
<default>false</default>
<summary>Menus Have Icons</summary>
<description>
Whether menus may display an icon next to a menu entry.
</description>
</key>
<key name="buttons-have-icons" type="b">
<default>false</default>
<summary>Buttons Have Icons</summary>
<description>
Whether buttons may display an icon in addition to the button text.
</description>
</key>
<key name="dialogs-use-header" type="b">
<default>false</default>
<summary>Use headerbar for file dialogs</summary>
</key>
<key name="show-input-method-menu" type="b">
<default>true</default>
<summary>Show the 'Input Methods' menu</summary>
<description>
Whether the context menus of entries and text views should offer to
change the input method.
</description>
</key>
<key name="show-unicode-menu" type="b">
<default>true</default>
<summary>Show the 'Unicode Control Character' menu</summary>
<description>
Whether the context menus of entries and text views should offer to
insert control characters.
</description>
</key>
<key name="automatic-mnemonics" type="b">
<default>true</default>
<summary>Only show mnemonics on when the Alt key is pressed</summary>
<description>
Whether mnemonics should be automatically shown and hidden when the user
presses the Alt key.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,31 +0,0 @@
<schemalist>
<schema id="org.freedesktop.ColorHelper" path="/org/freedesktop/color-helper/">
<key name="display-gamma" type="d">
<default>2.4</default>
<summary>Default gamma for the display</summary>
<description>
The default target gamma value for the display.
Common values are 1.8, 2.2 and 2.4.
</description>
</key>
<key name="display-whitepoint" type="i">
<default>6500</default>
<summary>Default display target whitepoint</summary>
<description>
The default target whitepoint in Kelvin for display calibration,
with 0 meaning display native.
Common values are 6500 for D65 and 5000 for D50.
</description>
</key>
<key name="sample-delay" type="i">
<default>400</default>
<summary>Delay between sample intervals</summary>
<description>
This is the delay between setting the sample color and asking the
measuring instrument to take a sample.
It is required because both the graphics driver and the display itself
introduce latency.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,42 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (C) 2011, Nokia <ivan.frade@nokia.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
-->
<schemalist>
<schema id="org.freedesktop.Tracker3.Extract" path="/org/freedesktop/tracker/extract/" gettext-domain="tracker-miners">
<key name="max-bytes" type="i">
<summary>Max bytes to extract</summary>
<description>Maximum number of UTF-8 bytes to extract.</description>
<range min="0" max="10485760"/>
<default>1048576</default>
</key>
<key name="text-allowlist" type="as">
<summary>Text file allowlist</summary>
<description>Filename patterns for plain text documents that should be indexed</description>
<default>[ '*.txt', '*.md', '*.mdwn' ]</default>
</key>
<key name="wait-for-miner-fs" type="b">
<summary>Wait for FS miner to be done before extracting</summary>
<description>When true, tracker-extract will wait for tracker-miner-fs to be done crawling before extracting meta-data. This option is useful on constrained environment where it is important to list files as fast as possible and can wait to get meta-data later.</description>
<default>false</default>
</key>
</schema>
</schemalist>

View File

@@ -1,42 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (C) 2011, Nokia <ivan.frade@nokia.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
-->
<schemalist>
<schema id="org.freedesktop.Tracker3.FTS" path="/org/freedesktop/tracker/fts/" gettext-domain="tracker-miners">
<key name="enable-stemmer" type="b">
<summary>Enable stemmer</summary>
<description>Simplify the words to their root to provide more results. E.g. “shelves” and “shelf” to “shel”</description>
<default>false</default>
</key>
<key name="enable-unaccent" type="b">
<summary>Enable unaccent</summary>
<description>Translate accented characters to the equivalent unaccented. E.g. “Idéa” to “Idea” for improved matching. </description>
<default>true</default>
</key>
<key name="ignore-numbers" type="b">
<summary>Ignore numbers</summary>
<description>If enabled, numbers will not be indexed.</description>
<default>true</default>
</key>
</schema>
</schemalist>

View File

@@ -1,144 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (C) 2011, Nokia <ivan.frade@nokia.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
-->
<schemalist>
<schema id="org.freedesktop.Tracker3.Miner.Files" path="/org/freedesktop/tracker/miner/files/" gettext-domain="tracker-miners">
<key name="initial-sleep" type="i">
<summary>Initial sleep</summary>
<description>Initial sleep time, in seconds.</description>
<range min="0" max="1000"/>
<default>15</default>
</key>
<key name="throttle" type="i">
<summary>Throttle</summary>
<description>Indexing speed, the higher the slower.</description>
<range min="0" max="20"/>
<default>0</default>
</key>
<key name="low-disk-space-limit" type="i">
<summary>Low disk space limit</summary>
<description>Disk space threshold in percent at which to pause indexing, or -1 to disable.</description>
<range min="-1" max="100"/>
<default>-1</default>
</key>
<key name="crawling-interval" type="i">
<summary>Crawling interval</summary>
<description>
Interval in days to check whether the filesystem is up to date in the database.
0 forces crawling anytime, -1 forces it only after unclean shutdowns, and -2
disables it entirely.
</description>
<range min="-2" max="365"/>
<default>-1</default>
</key>
<key name="removable-days-threshold" type="i">
<summary>Removable devices data permanence threshold</summary>
<description>
Threshold in days after which files from removables devices
will be removed from database if not mounted. 0 means never,
maximum is 365.
</description>
<range min="0" max="365"/>
<default>3</default>
</key>
<key name="enable-monitors" type="b">
<summary>Enable monitors</summary>
<description>Set to false to completely disable any file monitoring</description>
<default>true</default>
</key>
<key name="index-removable-devices" type="b">
<summary>Index removable devices</summary>
<description>Set to true to enable indexing mounted directories for removable devices.</description>
<default>false</default>
</key>
<key name="index-optical-discs" type="b">
<summary>Index optical discs</summary>
<description>
Set to true to enable indexing CDs, DVDs, and generally optical media
(if removable devices are not indexed, optical discs wont be either)
</description>
<default>false</default>
</key>
<key name="index-on-battery" type="b">
<summary>Index when running on battery</summary>
<description>Set to true to index while running on battery</description>
<default>true</default>
</key>
<key name="index-on-battery-first-time" type="b">
<summary>Perform initial indexing when running on battery</summary>
<description>Set to true to index while running on battery for the first time only</description>
<default>true</default>
</key>
<key name="index-recursive-directories" type="as">
<summary>Directories to index recursively</summary>
<!-- Translators: Do NOT translate the directories names in capital. Those
are keys used by Tracker. -->
<description>
List of directories to index recursively, Special values include:
&amp;DESKTOP, &amp;DOCUMENTS, &amp;DOWNLOAD, &amp;MUSIC, &amp;PICTURES,
&amp;PUBLIC_SHARE, &amp;TEMPLATES, &amp;VIDEOS.
See /etc/xdg/user-dirs.defaults and $HOME/.config/user-dirs.default
</description>
<default>[ '&amp;DESKTOP', '&amp;DOCUMENTS', '&amp;MUSIC', '&amp;PICTURES', '&amp;VIDEOS' ]</default>
</key>
<key name="index-single-directories" type="as">
<summary>Directories to index non-recursively</summary>
<!-- Translators: Do NOT translate the directories names in capital. Those
are keys used by Tracker. -->
<description>
List of directories to index without inspecting subfolders, Special values include:
&amp;DESKTOP, &amp;DOCUMENTS, &amp;DOWNLOAD, &amp;MUSIC, &amp;PICTURES,
&amp;PUBLIC_SHARE, &amp;TEMPLATES, &amp;VIDEOS.
See /etc/xdg/user-dirs.defaults and $HOME/.config/user-dirs.default
</description>
<default>[ '$HOME', '&amp;DOWNLOAD' ]</default>
</key>
<key name="ignored-files" type="as">
<summary>Ignored files</summary>
<description>List of file patterns to avoid</description>
<default>[ '*~', '*.o', '*.la', '*.lo' , '*.loT', '*.in', '*.m4', '*.rej', '*.gmo', '*.orig', '*.pc', '*.omf', '*.aux', '*.tmp', '*.vmdk', '*.vm*', '*.nvram', '*.part', '*.rcore', '*.lzo', 'autom4te', 'conftest', 'confstat', 'Makefile', 'SCCS', 'ltmain.sh', 'libtool', 'config.status', 'confdefs.h', 'configure', '#*#', '~$*.doc?', '~$*.dot?', '~$*.xls?', '~$*.xlt?', '~$*.xlam', '~$*.ppt?', '~$*.pot?', '~$*.ppam', '~$*.ppsm', '~$*.ppsx', '~$*.vsd?', '~$*.vss?', '~$*.vst?', '*.directory' ]</default>
</key>
<key name="ignored-directories" type="as">
<summary>Ignored directories</summary>
<description>List of directories to avoid</description>
<default>[ 'po', 'CVS', 'core-dumps', 'lost+found' ]</default>
</key>
<key name="ignored-directories-with-content" type="as">
<summary>Ignored directories with content</summary>
<description>Avoid any directory containing a file blocklisted here</description>
<default>[ '.trackerignore', '.git', '.hg', '.nomedia' ]</default>
</key>
</schema>
</schemalist>

View File

@@ -1,17 +0,0 @@
<!-- This file is generated by glib-mkenums, do not modify it. This code is licensed under the same license as the containing project. Note that it links to GLib, so must comply with the LGPL linking clauses. -->
<schemalist>
<enum id="org.freedesktop.TrackerMiners3.TrackerSerializationFormat">
<value nick="sparql" value="0"/>
<value nick="turtle" value="1"/>
<value nick="json" value="2"/>
<value nick="json-ld" value="3"/>
</enum>
<enum id="org.freedesktop.TrackerMiners3.TrackerIndexLocationFlags">
<value nick="none" value="0"/>
</enum>
</schemalist>
<!-- Generated data ends here -->

View File

@@ -1,115 +0,0 @@
<schemalist gettext-domain="pulseaudio">
<!-- The module-groups object is just an entry point to find the individual
module-group objects. -->
<schema id="org.freedesktop.pulseaudio.module-groups" path="/org/freedesktop/pulseaudio/module-groups/">
<child name="combine" schema="org.freedesktop.pulseaudio.module-group"/>
<child name="remote-access" schema="org.freedesktop.pulseaudio.module-group"/>
<child name="zeroconf-discover" schema="org.freedesktop.pulseaudio.module-group"/>
<child name="raop-discover" schema="org.freedesktop.pulseaudio.module-group"/>
<child name="rtp-recv" schema="org.freedesktop.pulseaudio.module-group"/>
<child name="rtp-send" schema="org.freedesktop.pulseaudio.module-group"/>
<child name="upnp-media-server" schema="org.freedesktop.pulseaudio.module-group"/>
</schema>
<!-- Paprefs puts related modules into groups that are enabled or disabled as
a whole. One group can contain up to 10 module instances (either of the
same module or different modules). A module-group object defines up to
10 modules to load. The name0..name9 keys contain the module names and
the args0..args9 keys provide the module arguments. -->
<schema id="org.freedesktop.pulseaudio.module-group">
<key name="name" type="s">
<default>''</default>
<summary>Module group name</summary>
<description>Module group name</description>
</key>
<key name="enabled" type="b">
<default>false</default>
</key>
<key name="locked" type="b">
<default>false</default>
</key>
<key name="args0" type="s">
<default>''</default>
</key>
<key name="args1" type="s">
<default>''</default>
</key>
<key name="args2" type="s">
<default>''</default>
</key>
<key name="args3" type="s">
<default>''</default>
</key>
<key name="args4" type="s">
<default>''</default>
</key>
<key name="args5" type="s">
<default>''</default>
</key>
<key name="args6" type="s">
<default>''</default>
</key>
<key name="args7" type="s">
<default>''</default>
</key>
<key name="args8" type="s">
<default>''</default>
</key>
<key name="args9" type="s">
<default>''</default>
</key>
<key name="name0" type="s">
<default>''</default>
</key>
<key name="name1" type="s">
<default>''</default>
</key>
<key name="name2" type="s">
<default>''</default>
</key>
<key name="name3" type="s">
<default>''</default>
</key>
<key name="name4" type="s">
<default>''</default>
</key>
<key name="name5" type="s">
<default>''</default>
</key>
<key name="name6" type="s">
<default>''</default>
</key>
<key name="name7" type="s">
<default>''</default>
</key>
<key name="name8" type="s">
<default>''</default>
</key>
<key name="name9" type="s">
<default>''</default>
</key>
</schema>
</schemalist>

View File

@@ -1,742 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright © 2002 Havoc Pennington
Copyright © 2002 Jonathan Blandford
Copyright © 2003, 2004 Mariano Suárez-Alvarez
Copyright © 2005 Kjartan Maraas
Copyright © 2005 Tony Tsui
Copyright © 2006 Guilherme de S. Pastore
Copyright © 2009, 2010 Behdad Esfahbod
Copyright © 2008, 2010 Christian Persch
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<schemalist gettext-domain="gnome-terminal">
<enum id='org.gnome.Terminal.NewTerminalMode'>
<value nick='window' value='0'/>
<value nick='tab' value='1'/>
</enum>
<enum id='org.gnome.Terminal.NewTabPosition'>
<value nick='last' value='0'/>
<value nick='next' value='1'/>
</enum>
<enum id='org.gnome.Terminal.ScrollbarPolicy'>
<value nick='always' value='0'/>
<!-- <value nick='automatic' value='1'/> -->
<value nick='never' value='2'/>
</enum>
<enum id='org.gnome.Terminal.TabsbarPolicy'>
<value nick='always' value='0'/>
<value nick='automatic' value='1'/>
<!-- <value nick='never' value='2'/> -->
</enum>
<enum id='org.gnome.Terminal.ThemeVariant'>
<value nick='system' value='0'/>
<value nick='light' value='1'/>
<value nick='dark' value='2'/>
</enum>
<enum id='org.gnome.Terminal.ExitAction'>
<value nick='close' value='0'/>
<value nick='restart' value='1'/>
<value nick='hold' value='2'/>
</enum>
<enum id='org.gnome.Terminal.CJKWidth'>
<value nick='narrow' value='1'/>
<value nick='wide' value='2'/>
</enum>
<enum id="org.gnome.Terminal.PreserveWorkingDirectory">
<value nick="never" value='0'/>
<value nick="safe" value='1'/>
<value nick="always" value='2'/>
</enum>
<!-- From gtk+ -->
<enum id="org.gnome.Terminal.TabPosition">
<!-- <value nick="left" value="0" /> -->
<!-- <value nick="right" value="1" /> -->
<value nick="top" value="2" />
<value nick="bottom" value="3" />
</enum>
<!-- These really belong into some vte-built enums file, but
using enums from other modules still has some
problems. Just include a copy here for now.
-->
<enum id='org.gnome.Terminal.EraseBinding'>
<value nick='auto' value='0'/>
<value nick='ascii-backspace' value='1'/>
<value nick='ascii-delete' value='2'/>
<value nick='delete-sequence' value='3'/>
<value nick='tty' value='4'/>
</enum>
<enum id='org.gnome.Terminal.Cursor.BlinkMode'>
<value nick='system' value='0'/>
<value nick='on' value='1'/>
<value nick='off' value='2'/>
</enum>
<enum id='org.gnome.Terminal.Cursor.Shape'>
<value nick='block' value='0'/>
<value nick='ibeam' value='1'/>
<value nick='underline' value='2'/>
</enum>
<enum id='org.gnome.Terminal.TextBlinkMode'>
<value nick='never' value='0'/>
<value nick='focused' value='1'/>
<value nick='unfocused' value='2'/>
<value nick='always' value='3'/>
</enum>
<!-- SettingsList base schema -->
<schema id="org.gnome.Terminal.SettingsList">
<key name="list" type="as">
<default>[]</default>
</key>
<key name="default" type="s">
<default>''</default>
</key>
</schema>
<!-- Profiles list schema -->
<schema id="org.gnome.Terminal.ProfilesList"
extends="org.gnome.Terminal.SettingsList"
path="/org/gnome/terminal/legacy/profiles:/">
<override name="list">['b1dcc9dd-5262-4d8d-a863-c897e6d979b9']</override>
<override name="default">'b1dcc9dd-5262-4d8d-a863-c897e6d979b9'</override>
</schema>
<!-- A terminal profile -->
<schema id="org.gnome.Terminal.Legacy.Profile">
<key name="visible-name" type="s">
<!-- Translators: This needs to be parsed as a GVariant string, so keep the regular single quotes around the string as-is, and do not add extra quotes. -->
<default l10n="messages" context="visible-name">'Unnamed'</default>
<summary>Human-readable name of the profile</summary>
<description>Human-readable name of the profile.</description>
</key>
<key name="foreground-color" type="s">
<default>'#171421'</default>
<summary>Default color of text in the terminal</summary>
<description>Default color of text in the terminal, as a color specification (can be HTML-style hex digits, or a color name such as “red”).</description>
</key>
<key name="background-color" type="s">
<default>'#ffffff'</default>
<summary>Default color of terminal background</summary>
<description>Default color of terminal background, as a color specification (can be HTML-style hex digits, or a color name such as “red”).</description>
</key>
<key name="bold-color" type="s">
<default>'#000000'</default>
<summary>Default color of bold text in the terminal</summary>
<description>Default color of bold text in the terminal, as a color specification (can be HTML-style hex digits, or a color name such as “red”). This is ignored if bold-color-same-as-fg is true.</description>
</key>
<key name="bold-color-same-as-fg" type="b">
<default>true</default>
<summary>Whether bold text should use the same color as normal text</summary>
<description>If true, boldface text will be rendered using the same color as normal text.</description>
</key>
<key name="cell-height-scale" type="d">
<range min="1.0" max="2.0" />
<default>1.0</default>
<summary>Scale factor for the cell height to increase line spacing. (Does not increase the fonts height.)</summary>
</key>
<key name="cell-width-scale" type="d">
<range min="1.0" max="2.0" />
<default>1.0</default>
<summary>Scale factor for the cell width to increase letter spacing. (Does not increase the fonts width.)</summary>
</key>
<key name="cursor-colors-set" type="b">
<default>false</default>
<summary>Whether to use custom cursor colors</summary>
<description>If true, use the cursor colors from the profile.</description>
</key>
<key name="cursor-background-color" type="s">
<default>'#000000'</default>
<summary>Cursor background color</summary>
<description>Custom color of the background of the terminals cursor, as a color specification (can be HTML-style hex digits, or a color name such as “red”). This is ignored if cursor-colors-set is false.</description>
</key>
<key name="cursor-foreground-color" type="s">
<default>'#ffffff'</default>
<summary>Cursor foreground colour</summary>
<description>Custom color for the foreground of the text character at the terminals cursor position, as a color specification (can be HTML-style hex digits, or a color name such as “red”). This is ignored if cursor-colors-set is false.</description>
</key>
<key name="highlight-colors-set" type="b">
<default>false</default>
<summary>Whether to use custom highlight colors</summary>
<description>If true, use the highlight colors from the profile.</description>
</key>
<key name="highlight-background-color" type="s">
<default>'#000000'</default>
<summary>Highlight background color</summary>
<description>Custom color of the background of the terminals highlight, as a color specification (can be HTML-style hex digits, or a color name such as “red”). This is ignored if highlight-colors-set is false.</description>
</key>
<key name="highlight-foreground-color" type="s">
<default>'#ffffff'</default>
<summary>Highlight foreground colour</summary>
<description>Custom color for the foreground of the text character at the terminals highlight position, as a color specification (can be HTML-style hex digits, or a color name such as “red”). This is ignored if highlight-colors-set is false.</description>
</key>
<key name="enable-bidi" type="b">
<default>true</default>
<summary>Whether to perform bidirectional text rendering</summary>
<description>If true, perform bidirectional text rendering (“BiDi”).</description>
</key>
<key name="enable-shaping" type="b">
<default>true</default>
<summary>Whether to perform Arabic shaping</summary>
<description>If true, shape Arabic text.</description>
</key>
<key name="enable-sixel" type="b">
<default>false</default>
<summary>Whether to enable SIXEL images</summary>
<description>If true, SIXEL sequences are parsed and images are rendered.</description>
</key>
<key name="bold-is-bright" type="b">
<default>false</default>
<summary>Whether bold is also bright</summary>
<description>If true, setting bold on the first 8 colors also switches to their bright variants.</description>
</key>
<key name="audible-bell" type="b">
<default>true</default>
<summary>Whether to ring the terminal bell</summary>
</key>
<key name="word-char-exceptions" type="ms">
<default>nothing</default>
<summary>List of punctuation characters that are treated as word characters</summary>
<description>By default, when doing word-wise selection, most punctuation breaks up word boundaries. This list of exceptions will instead be treated as part of the word.</description>
</key>
<key name="default-size-columns" type="i">
<range min="16" max="511" />
<default>80</default>
<summary>Default number of columns</summary>
<description>Number of columns in newly created terminal windows. Has no effect if use_custom_default_size is not enabled.</description>
</key>
<key name="default-size-rows" type="i">
<range min="4" max="511" />
<default>24</default>
<summary>Default number of rows</summary>
<description>Number of rows in newly created terminal windows. Has no effect if use_custom_default_size is not enabled.</description>
</key>
<key name="scrollbar-policy" enum="org.gnome.Terminal.ScrollbarPolicy">
<default>'always'</default>
<summary>When to show the scrollbar</summary>
</key>
<key name="scrollback-lines" type="i">
<default>10000</default>
<summary>Number of lines to keep in scrollback</summary>
<description>Number of scrollback lines to keep around. You can scroll back in the terminal by this number of lines; lines that dont fit in the scrollback are discarded. If scrollback_unlimited is true, this value is ignored.</description>
</key>
<key name="scrollback-unlimited" type="b">
<default>false</default>
<summary>Whether an unlimited number of lines should be kept in scrollback</summary>
<description>If true, scrollback lines will never be discarded. The scrollback history is stored on disk temporarily, so this may cause the system to run out of disk space if there is a lot of output to the terminal.</description>
</key>
<key name="scroll-on-insert" type="b">
<default>true</default>
<summary>Whether to scroll to the bottom when text is inserted</summary>
<description>If true, the terminal will scroll to the bottom when text is inserted by paste.</description>
</key>
<key name="scroll-on-keystroke" type="b">
<default>true</default>
<summary>Whether to scroll to the bottom when a key is pressed</summary>
<description>If true, pressing a key jumps the scrollbar to the bottom.</description>
</key>
<key name="scroll-on-output" type="b">
<default>false</default>
<summary>Whether to scroll to the bottom when theres new output</summary>
<description>If true, whenever theres new output the terminal will scroll to the bottom.</description>
</key>
<key name="exit-action" enum="org.gnome.Terminal.ExitAction">
<default>'close'</default>
<summary>What to do with the terminal when the child command exits</summary>
<description>Possible values are “close” to close the terminal, “restart” to restart the command, and “hold” to keep the terminal open with no command running inside.</description>
</key>
<key name="login-shell" type="b">
<default>false</default>
<summary>Whether to launch the command in the terminal as a login shell</summary>
<description>If true, the command inside the terminal will be launched as a login shell (argv[0] will have a hyphen in front of it).</description>
</key>
<key name="preserve-working-directory" enum="org.gnome.Terminal.PreserveWorkingDirectory">
<default>'safe'</default>
<summary>Whether to preserve the working directory when opening a new terminal</summary>
<description>
Controls when opening a new terminal from a previous one carries over the working directory of the opening terminal to the new one.
</description>
</key>
<key name="use-custom-command" type="b">
<default>false</default>
<summary>Whether to run a custom command instead of the shell</summary>
<description>If true, the value of the custom_command setting will be used in place of running a shell.</description>
</key>
<key name="cursor-blink-mode" enum="org.gnome.Terminal.Cursor.BlinkMode">
<default>'system'</default>
<summary>Whether to blink the cursor</summary>
<description>The possible values are “system” to use the global cursor blinking settings, or “on” or “off” to set the mode explicitly.</description>
</key>
<key name="cursor-shape" enum="org.gnome.Terminal.Cursor.Shape">
<default>'block'</default>
<summary>The cursor appearance</summary>
</key>
<key name="text-blink-mode" enum="org.gnome.Terminal.TextBlinkMode">
<default>'always'</default>
<summary>Possible values are “always” or “never” allow blinking text, or only when the terminal is “focused” or “unfocused”.</summary>
</key>
<key name="custom-command" type="s">
<default>''</default>
<summary>Custom command to use instead of the shell</summary>
<description>Run this command in place of the shell, if use_custom_command is true.</description>
</key>
<key name="palette" type="as">
<default>['#171421',
'#c01c28',
'#26a269',
'#a2734c',
'#12488b',
'#a347ba',
'#2aa1b3',
'#d0cfcc',
'#5e5c64',
'#f66151',
'#33d17a',
'#e9ad0c',
'#2a7bde',
'#c061cb',
'#33c7de',
'#ffffff']</default>
<summary>Palette for terminal applications</summary>
</key>
<key name="font" type="s">
<default>'Monospace 12'</default>
<summary>A Pango font name and size</summary>
</key>
<key name="backspace-binding" enum="org.gnome.Terminal.EraseBinding">
<default>'ascii-delete'</default>
<summary>The code sequence the Backspace key generates</summary>
</key>
<key name="delete-binding" enum="org.gnome.Terminal.EraseBinding">
<default>'delete-sequence'</default>
<summary>The code sequence the Delete key generates</summary>
</key>
<key name="use-theme-colors" type="b">
<default>true</default>
<summary>Whether to use the colors from the theme for the terminal widget</summary>
</key>
<key name="use-system-font" type="b">
<default>true</default>
<summary>Whether to use the system monospace font</summary>
</key>
<key name="rewrap-on-resize" type="b">
<default>true</default>
<summary>Whether to rewrap the terminal contents on window resize</summary>
</key>
<key name="encoding" type="s">
<default>'UTF-8'</default>
<summary>Which encoding to use</summary>
</key>
<key name="cjk-utf8-ambiguous-width" enum="org.gnome.Terminal.CJKWidth">
<default>'narrow'</default>
<summary>Whether ambiguous-width characters are narrow or wide when using UTF-8 encoding</summary>
</key>
</schema>
<!-- Keybinding settings -->
<schema id="org.gnome.Terminal.Legacy.Keybindings">
<key name="new-tab" type="s">
<default>'&lt;Control&gt;&lt;Shift&gt;t'</default>
<summary>Keyboard shortcut to open a new tab</summary>
</key>
<key name="new-window" type="s">
<default>'&lt;Control&gt;&lt;Shift&gt;n'</default>
<summary>Keyboard shortcut to open a new window</summary>
</key>
<key name="save-contents" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to save the current tab contents to file</summary>
</key>
<key name="export" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to export the current tab contents to file in various formats</summary>
</key>
<key name="print" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to print the current tab contents to printer or file</summary>
</key>
<key name="close-tab" type="s">
<default>'&lt;Control&gt;&lt;Shift&gt;w'</default>
<summary>Keyboard shortcut to close a tab</summary>
</key>
<key name="close-window" type="s">
<default>'&lt;Control&gt;&lt;Shift&gt;q'</default>
<summary>Keyboard shortcut to close a window</summary>
</key>
<key name="copy" type="s">
<default>'&lt;Control&gt;&lt;Shift&gt;c'</default>
<summary>Keyboard shortcut to copy text</summary>
</key>
<key name="copy-html" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to copy text as HTML</summary>
</key>
<key name="paste" type="s">
<default>'&lt;Control&gt;&lt;Shift&gt;v'</default>
<summary>Keyboard shortcut to paste text</summary>
</key>
<key name="select-all" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to select all text</summary>
</key>
<key name="preferences" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to open the Preferences dialog</summary>
</key>
<key name="full-screen" type="s">
<default>'F11'</default>
<summary>Keyboard shortcut to toggle full screen mode</summary>
</key>
<key name="toggle-menubar" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to toggle the visibility of the menubar</summary>
</key>
<key name="read-only" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to toggle the read-only state</summary>
</key>
<key name="reset" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to reset the terminal</summary>
</key>
<key name="reset-and-clear" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to reset and clear the terminal</summary>
</key>
<key name="find" type="s">
<default>'&lt;Control&gt;&lt;Shift&gt;F'</default>
<summary>Keyboard shortcut to open the search dialog</summary>
</key>
<key name="find-next" type="s">
<default>'&lt;Control&gt;&lt;Shift&gt;G'</default>
<summary>Keyboard shortcut to find the next occurrence of the search term</summary>
</key>
<key name="find-previous" type="s">
<default>'&lt;Control&gt;&lt;Shift&gt;H'</default>
<summary>Keyboard shortcut to find the previous occurrence of the search term</summary>
</key>
<key name="find-clear" type="s">
<default>'&lt;Control&gt;&lt;Shift&gt;J'</default>
<summary>Keyboard shortcut to clear the find highlighting</summary>
</key>
<key name="prev-tab" type="s">
<default>'&lt;Control&gt;Page_Up'</default>
<summary>Keyboard shortcut to switch to the previous tab</summary>
</key>
<key name="next-tab" type="s">
<default>'&lt;Control&gt;Page_Down'</default>
<summary>Keyboard shortcut to switch to the next tab</summary>
</key>
<key name="move-tab-left" type="s">
<default>'&lt;Control&gt;&lt;Shift&gt;Page_Up'</default>
<summary>Keyboard shortcut to move the current tab to the left</summary>
</key>
<key name="move-tab-right" type="s">
<default>'&lt;Control&gt;&lt;Shift&gt;Page_Down'</default>
<summary>Keyboard shortcut to move the current tab to the right</summary>
</key>
<key name="detach-tab" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to detach current tab</summary>
</key>
<key name="switch-to-tab-1" type="s">
<default>'&lt;Alt&gt;1'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-2" type="s">
<default>'&lt;Alt&gt;2'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-3" type="s">
<default>'&lt;Alt&gt;3'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-4" type="s">
<default>'&lt;Alt&gt;4'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-5" type="s">
<default>'&lt;Alt&gt;5'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-6" type="s">
<default>'&lt;Alt&gt;6'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-7" type="s">
<default>'&lt;Alt&gt;7'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-8" type="s">
<default>'&lt;Alt&gt;8'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-9" type="s">
<default>'&lt;Alt&gt;9'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-10" type="s">
<default>'&lt;Alt&gt;0'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-11" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-12" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-13" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-14" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-15" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-16" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-17" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-18" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-19" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-20" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-21" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-22" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-23" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-24" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-25" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-26" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-27" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-28" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-29" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-30" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-31" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-32" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-33" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-34" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-35" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to switch to the numbered tab</summary>
</key>
<key name="switch-to-tab-last" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to switch to the last tab</summary>
</key>
<key name="help" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to launch help</summary>
</key>
<key name="zoom-in" type="s">
<default>'&lt;Control&gt;plus'</default>
<summary>Keyboard shortcut to make font larger</summary>
</key>
<key name="zoom-out" type="s">
<default>'&lt;Control&gt;minus'</default>
<summary>Keyboard shortcut to make font smaller</summary>
</key>
<key name="zoom-normal" type="s">
<default>'&lt;Control&gt;0'</default>
<summary>Keyboard shortcut to make font normal-size</summary>
</key>
<key name="header-menu" type="s">
<default>'disabled'</default>
<summary>Keyboard shortcut to show the primary menu</summary>
</key>
</schema>
<!-- Global settings -->
<schema id="org.gnome.Terminal.Legacy.Settings" path="/org/gnome/terminal/legacy/">
<key name="mnemonics-enabled" type="b">
<default>false</default>
<summary>Whether the menubar has access keys</summary>
<description>
Whether to have Alt+letter access keys for the menubar.
They may interfere with some applications run inside the terminal
so its possible to turn them off.
</description>
</key>
<key name="shortcuts-enabled" type="b">
<default>true</default>
<summary>Whether shortcuts are enabled</summary>
<description>
Whether shortcuts are enabled.
They may interfere with some applications run inside the terminal
so its possible to turn them off.
</description>
</key>
<key name="menu-accelerator-enabled" type="b">
<default>true</default>
<summary>Whether the standard GTK shortcut for menubar access is enabled</summary>
<description>
Normally you can access the menubar with F10. This can also
be customized via gtkrc (gtk-menu-bar-accel =
"whatever"). This option allows the standard menubar
accelerator to be disabled.
</description>
</key>
<key name="shell-integration-enabled" type="b">
<default>true</default>
<summary>Whether the shell integration is enabled</summary>
</key>
<key name="confirm-close" type="b">
<default>true</default>
<summary>Whether to ask for confirmation before closing a terminal</summary>
</key>
<key name="context-info" type="as">
<default>['numbers']</default>
<summary>Additional info section items to appear in the context menu</summary>
</key>
<key name="default-show-menubar" type="b">
<default>true</default>
<summary>Whether to show the menubar in new windows</summary>
</key>
<key name="new-terminal-mode" enum="org.gnome.Terminal.NewTerminalMode">
<default>'window'</default>
<summary>Whether to open new terminals as windows or tabs</summary>
</key>
<key name="tab-policy" enum="org.gnome.Terminal.TabsbarPolicy">
<default>'automatic'</default>
<summary>When to show the tabs bar</summary>
</key>
<key name="tab-position" enum="org.gnome.Terminal.TabPosition">
<default>'top'</default>
<summary>The position of the tab bar</summary>
</key>
<key name="theme-variant" enum="org.gnome.Terminal.ThemeVariant">
<default>'system'</default>
<summary>Which theme variant to use</summary>
</key>
<key name="new-tab-position" enum="org.gnome.Terminal.NewTabPosition">
<default>'last'</default>
<summary>Whether new tabs should open next to the current one or at the last position</summary>
</key>
<!-- Default terminal -->
<key name="always-check-default-terminal" type="b">
<default>true</default>
<summary>Always check whether GNOME Terminal is the default terminal</summary>
</key>
<!-- Note that changing the following settings will only take effect
when gnome-terminal-server is restarted.
-->
<key name="headerbar" type="mb">
<default>nothing</default>
</key>
<key name="unified-menu" type="b">
<default>true</default>
</key>
<!-- <child name="profiles" schema="org.gnome.Terminal.ProfilesList" /> -->
<child name="keybindings" schema="org.gnome.Terminal.Legacy.Keybindings" />
<key name="schema-version" type="u">
<default>3</default>
</key>
</schema>
</schemalist>

View File

@@ -1,30 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema path="/org/gnome/antler/" id="org.gnome.antler" gettext-domain="caribou">
<key type="s" name="keyboard-type">
<default>'touch'</default>
<summary>The keyboard geometry Caribou should use</summary>
<description>The keyboard geometry determines the shape and complexity of the keyboard, it could range from a “natural” look and feel good for composing simple text, to a fullscale keyboard.</description>
</key>
<key type="b" name="use-system">
<default>false</default>
<summary>Use System Theme</summary>
<description/>
</key>
<key type="d" name="min-alpha">
<default>0.20000000000000001</default>
<summary>Minimal opacity of keyboard</summary>
<description/>
</key>
<key type="d" name="max-alpha">
<default>1.0</default>
<summary>Maximal opacity of keyboard</summary>
<description/>
</key>
<key type="i" name="max-distance">
<default>100</default>
<summary>Maximum distance when keyboard is hidden</summary>
<description/>
</key>
</schema>
</schemalist>

View File

@@ -1,64 +0,0 @@
<schemalist gettext-domain="gnome-boxes">
<enum id="org.gnome.boxes.view-type">
<value nick="icon-view" value="1"/>
<value nick="list-view" value="2"/>
</enum>
<schema id="org.gnome.boxes" path="/org/gnome/boxes/" gettext-domain="gnome-boxes">
<key name="screenshot-interval" type="i">
<summary>Screenshot interval</summary>
<description>
The interval in seconds between screenshot updates
</description>
<default>5</default>
</key>
<key name='view' enum='org.gnome.boxes.view-type'>
<default>'icon-view'</default>
</key>
<key name="window-size" type="ai">
<default>[768, 600]</default>
<summary>Window size</summary>
<description>
Window size (width and height)
</description>
</key>
<key name="window-position" type="ai">
<default>[]</default>
<summary>Window position</summary>
<description>
Window position (x and y)
</description>
</key>
<key name="window-maximized" type="b">
<default>true</default>
<summary>Window maximized</summary>
<description>
Window maximized state
</description>
</key>
<key name="first-run" type="b">
<default>true</default>
<summary>First run</summary>
<description>
Whether Boxes is running for the first time
</description>
</key>
<key name="shared-folders" type="s">
<default>""</default>
<summary>Shared folders</summary>
<description>Variant array of shared folders names and path mapping</description>
</key>
<key name="recommended-downloads-url" type="s">
<default>'https://gnome.pages.gitlab.gnome.org/gnome-boxes-logos/recommended-downloads.xml'</default>
<summary>Recommended Downloads Source URL</summary>
<description>An URL pointing at a recommended-downloads.xml file</description>
</key>
</schema>
</schemalist>

View File

@@ -1,111 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<enum id="org.gnome.calculator.NumberFormat">
<value value="0" nick="automatic"/>
<value value="1" nick="fixed"/>
<value value="2" nick="scientific"/>
<value value="3" nick="engineering"/>
</enum>
<enum id="org.gnome.calculator.ButtonMode">
<value value="0" nick="basic"/>
<value value="1" nick="advanced"/>
<value value="2" nick="financial"/>
<value value="3" nick="programming"/>
<value value="4" nick="keyboard"/>
</enum>
<enum id="org.gnome.calculator.AngleUnit">
<value value="0" nick="radians"/>
<value value="1" nick="degrees"/>
<value value="2" nick="gradians"/>
</enum>
<schema path="/org/gnome/calculator/" id="org.gnome.calculator" gettext-domain="gnome-calculator">
<key type="i" name="accuracy">
<default>9</default>
<summary>Accuracy value</summary>
<description>The number of digits displayed after the numeric point</description>
</key>
<key type="i" name="word-size">
<default>64</default>
<range min="8" max="64"/>
<summary>Word size</summary>
<description>The size of the words used in bitwise operations</description>
</key>
<key type="i" name="base">
<default>10</default>
<range min="2" max="16"/>
<summary>Numeric Base</summary>
<description>The numeric base</description>
</key>
<key type="b" name="show-thousands">
<default>false</default>
<summary>Show Thousands Separators</summary>
<description>Indicates whether thousands separators are shown in large numbers.</description>
</key>
<key type="b" name="show-zeroes">
<default>false</default>
<summary>Show Trailing Zeroes</summary>
<description>Indicates whether any trailing zeroes after the numeric point should be shown in the display value.</description>
</key>
<key name="number-format" enum="org.gnome.calculator.NumberFormat">
<default>'automatic'</default>
<summary>Number format</summary>
<description>The format to display numbers in</description>
</key>
<key name="angle-units" enum="org.gnome.calculator.AngleUnit">
<default>'degrees'</default>
<summary>Angle units</summary>
<description>The angle units to use</description>
</key>
<key name="refresh-interval" type="i">
<default>604800</default>
<summary>Currency update interval</summary>
<description>How often the currency exchange rates should be updated. A value of 0 means the currency exchange rates won't be fetched from the network at all.</description>
</key>
<key name="button-mode" enum="org.gnome.calculator.ButtonMode">
<default>'basic'</default>
<summary>Button mode</summary>
<description>The button mode</description>
</key>
<key type="s" name="source-currency">
<default>''</default>
<summary>Source currency</summary>
<description>Currency of the current calculation</description>
</key>
<key type="s" name="target-currency">
<default>''</default>
<summary>Target currency</summary>
<description>Currency to convert the current calculation into</description>
</key>
<key type="s" name="source-units">
<default>'degree'</default>
<summary>Source units</summary>
<description>Units of the current calculation</description>
</key>
<key type="s" name="target-units">
<default>'radian'</default>
<summary>Target units</summary>
<description>Units to convert the current calculation into</description>
</key>
<key type="i" name="precision">
<default>2000</default>
<summary>Internal precision</summary>
<description>The internal precision used with the MPFR library</description>
</key>
<key type="(ii)" name="window-position">
<default>(-1, -1)</default>
<summary>Window position</summary>
<description>Window position (x and y) of the last closed window.</description>
</key>
<key type="b" name="window-maximized">
<default>false</default>
<summary>Window maximized</summary>
<description>Whether the last closed window was maximized.</description>
</key>
<key type="(ii)" name="window-size">
<default>(-1, -1)</default>
<summary>Window size</summary>
<description>Window size (width and height) of the last closed window.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,50 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema path="/org/gnome/caribou/" id="org.gnome.caribou" gettext-domain="caribou">
<key type="b" name="scan-enabled">
<default>false</default>
<summary>Enable switch scanning</summary>
<description/>
</key>
<key type="i" name="scan-grouping">
<default>1</default>
<summary>Scanning type, subgroups, rows or linear</summary>
<description/>
</key>
<key type="d" name="step-time">
<default>1.0</default>
<summary>Time between key transitions</summary>
<description/>
</key>
<key type="b" name="inverse-scanning">
<default>false</default>
<summary>Step with the switch, activate by dwelling</summary>
<description/>
</key>
<key type="b" name="autorestart">
<default>false</default>
<summary>Automatically restart scanning after item activation</summary>
<description/>
</key>
<key type="i" name="scan-cycles">
<default>1</default>
<summary/>
<description/>
</key>
<key type="s" name="switch-device">
<default>'keyboard'</default>
<summary>Switch device, keyboard or mouse</summary>
<description/>
</key>
<key type="s" name="keyboard-key">
<default>'space'</default>
<summary>Key to use with scanning mode</summary>
<description/>
</key>
<key type="i" name="mouse-button">
<default>2</default>
<summary>Mouse button to use in the scanning mode</summary>
<description/>
</key>
</schema>
</schemalist>

View File

@@ -1,17 +0,0 @@
<schemalist>
<schema id="org.gnome.crypto.cache" path="/desktop/gnome/crypto/cache/">
<key name="gpg-cache-method" type="s">
<default>'session'</default>
<summary>Cache Method</summary>
<description>The method to use for caching passphrases typed into the GPG agent.
Should be one of: 'always' caches permanently, 'session' caches until session end,
'idle' caches until the not used for gpg-cache-ttl seconds, 'timeout' caches until
gpg-cache-ttl seconds.</description>
</key>
<key name="gpg-cache-ttl" type="i">
<default>300</default>
<summary>Cache Time To Live</summary>
<description>The amount of time in seconds to cache passphrases when the 'idle' or 'timeout' gpg-cache-method are in use.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,34 +0,0 @@
<schemalist>
<schema id="org.gnome.crypto.pgp" path="/desktop/gnome/crypto/pgp/">
<key name="default-key" type="s">
<default>''</default>
<summary>Default PGP Key</summary>
<description>This specifies the ID of the default PGP key to use for certain operations, mainly signing.</description>
</key>
<key name="ascii-armor" type="b">
<default>true</default>
<summary>ASCII Armor</summary>
<description>When encrypting or signing PGP files whether to use ASCII armor encoding.</description>
</key>
<key name="sort-recipients-by" type="s">
<default>'name'</default>
<summary>The column to sort the recipients</summary>
<description>Specify the column to sort the recipients window by. Columns are: 'name' and 'id'. Put a '-' in front of the column name to sort in descending order.</description>
</key>
<key name="encrypt-to-self" type="b">
<default>true</default>
<summary>Whether to always encrypt to default key</summary>
<description>If set to true, then the default key will always be added to an encryption recipients list.</description>
</key>
<key name="last-signer" type="s">
<default>''</default>
<summary>Last key used to sign a message.</summary>
<description>The ID of the last secret key used to sign a message.</description>
</key>
<key name="keyservers" type="as">
<default>['ldap://keyserver.pgp.com', 'hkps://keys.openpgp.org']</default>
<summary>PGP key servers</summary>
<description>A list of key server URIs to search for remote PGP keys. A display name can be included, by appending a space and then the name.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,20 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.a11y.applications" path="/org/gnome/desktop/a11y/applications/">
<key name="screen-keyboard-enabled" type="b">
<default>false</default>
<summary>On-screen keyboard</summary>
<description>Whether the on-screen keyboard is turned on.</description>
</key>
<key name="screen-magnifier-enabled" type="b">
<default>false</default>
<summary>Screen magnifier</summary>
<description>Whether the screen magnifier is turned on.</description>
</key>
<key name="screen-reader-enabled" type="b">
<default>false</default>
<summary>Screen reader</summary>
<description>Whether the screen reader is turned on.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,21 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.a11y" path="/org/gnome/desktop/a11y/">
<key name="always-show-universal-access-status" type="b">
<default>false</default>
<summary>Always show the Universal Access status icon</summary>
<description>
This key overrides the automatic hiding of the Universal
Access status icon when no accessibility features are enabled.
</description>
</key>
<key name="always-show-text-caret" type="b">
<default>false</default>
<summary>Always show the text caret</summary>
<description>
This key overrides the hiding of the text caret in noneditable
text in applications.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,19 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.a11y.interface" path="/org/gnome/desktop/a11y/interface/">
<key name="high-contrast" type="b">
<default>false</default>
<summary>High contrast</summary>
<description>
Whether to use the high contrast style.
</description>
</key>
<key name="show-status-shapes" type="b">
<default>false</default>
<summary>Show status shapes</summary>
<description>
Whether to use shapes to indicate status in addition or instead of color.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,104 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.a11y.keyboard" path="/org/gnome/desktop/a11y/keyboard/">
<key name="enable" type="b">
<default>false</default>
<summary>Enable accessibility keyboard shortcuts</summary>
</key>
<key name="feature-state-change-beep" type="b">
<default>false</default>
<summary>Beep when a keyboard accessibility feature changes</summary>
<description>Whether to beep when a keyboard accessibility feature is enabled or disabled.</description>
</key>
<key name="timeout-enable" type="b">
<default>false</default>
<summary>Disable keyboard accessibility after a timeout</summary>
<description>Whether to disable keyboard accessibility after a timeout, useful for shared machines.</description>
</key>
<key name="disable-timeout" type="i">
<default>200</default>
<summary>Duration of the disabling timeout</summary>
<description>Duration of the timeout before disabling the keyboard accessibility.</description>
</key>
<key name="bouncekeys-enable" type="b">
<default>false</default>
<summary>Enable “Bounce Keys”</summary>
<description>Whether the “Bounce Keys” keyboard accessibility feature is turned on.</description>
</key>
<key name="bouncekeys-delay" type="i">
<default>300</default>
<summary>Minimum interval in milliseconds</summary>
<description>Ignore multiple presses of the same key within this many milliseconds.</description>
</key>
<key name="bouncekeys-beep-reject" type="b">
<default>false</default>
<summary>Beep when a key is rejected</summary>
<description>Whether to beep when a key is rejected.</description>
</key>
<key name="mousekeys-enable" type="b">
<default>false</default>
<summary>Enable “Mouse Keys”</summary>
<description>Whether the “Mouse Keys” accessibility feature is turned on.</description>
</key>
<key name="mousekeys-max-speed" type="i">
<default>10</default>
<summary>Pixels per seconds</summary>
<description>How many pixels per second to move at the maximum speed.</description>
</key>
<key name="mousekeys-accel-time" type="i">
<default>300</default>
<summary>How long to accelerate in milliseconds</summary>
<description>How many milliseconds it takes to go from 0 to maximum speed.</description>
</key>
<key name="mousekeys-init-delay" type="i">
<default>300</default>
<summary>Initial delay in milliseconds</summary>
<description>How many milliseconds to wait before mouse movement keys start to operate.</description>
</key>
<key name="slowkeys-enable" type="b">
<default>false</default>
<summary>Enable “Slow Keys”</summary>
<description>Whether the “Slow Keys” accessibility feature is turned on.</description>
</key>
<key name="slowkeys-delay" type="i">
<default>300</default>
<summary>Minimum interval in milliseconds</summary>
<description>Do not accept a key as being pressed unless held for this many milliseconds.</description>
</key>
<key name="slowkeys-beep-press" type="b">
<default>false</default>
<summary>Beep when a key is first pressed</summary>
<description>Whether to beep when a key is first pressed.</description>
</key>
<key name="slowkeys-beep-accept" type="b">
<default>false</default>
<summary>Beep when a key is accepted</summary>
<description>Whether to beep when a key is accepted.</description>
</key>
<key name="slowkeys-beep-reject" type="b">
<default>false</default>
<summary>Beep when a key is rejected</summary>
<description>Whether to beep when a key is rejected.</description>
</key>
<key name="stickykeys-enable" type="b">
<default>false</default>
<summary>Enable sticky keys</summary>
<description>Whether the sticky keys accessibility feature is turned on.</description>
</key>
<key name="stickykeys-two-key-off" type="b">
<default>false</default>
<summary>Disable when two keys are pressed at the same time</summary>
<description>Whether to disable sticky keys if two keys are pressed at the same time.</description>
</key>
<key name="stickykeys-modifier-beep" type="b">
<default>false</default>
<summary>Beep when a modifier is pressed.</summary>
<description>Whether to beep when a modifier key is pressed.</description>
</key>
<key name="togglekeys-enable" type="b">
<default>false</default>
<summary>Enable “Toggle Keys”</summary>
<description>Whether the “Toggle Keys” accessibility feature is turned on.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,228 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.a11y.magnifier"
path="/org/gnome/desktop/a11y/magnifier/">
<key name="mouse-tracking" enum="org.gnome.desktop.GDesktopMagnifierMouseTrackingMode">
<default>'proportional'</default>
<summary>Mouse Tracking Mode</summary>
<description>
Determines the position of the magnified mouse image within the
magnified view and how it reacts to system mouse movement. The values
are
• none: no mouse tracking;
• centered: the mouse image is
displayed at the center of the zoom region (which also represents
the point under the system mouse) and the magnified contents are
scrolled as the system mouse moves;
• proportional: the position of the magnified mouse in the zoom region
is proportionally the same as the position of the system mouse on screen;
• push: when the magnified mouse intersects a boundary of the zoom
region, the contents are scrolled into view.
</description>
</key>
<key name="focus-tracking" enum="org.gnome.desktop.GDesktopMagnifierFocusTrackingMode">
<default>'proportional'</default>
<summary>Focus Tracking Mode</summary>
<description>
Determines the position of the focused widget within magnified view.
The values are:
• none: no focus tracking
• centered: the focused image is displayed at the center of the zoom region (which also represents the
point under the system focus) and the magnified contents are scrolled as the system focus moves
• proportional: the position of the magnified focus in the zoom region is proportionally the same as the
position of the system focus on screen
• push: when the magnified focus intersects a boundary of the zoom region, the contents are scrolled
into view
</description>
</key>
<key name="caret-tracking" enum="org.gnome.desktop.GDesktopMagnifierCaretTrackingMode">
<default>'centered'</default>
<summary>Caret Tracking Mode</summary>
<description>
Determines the position of the caret within magnified view. The values are:
• none: no caret tracking
• centered: the image of the caret is displayed at the center of the zoom region (which also represents
the point under the system caret) and the magnified contents are scrolled as the system caret moves
• proportional: the position of the magnified caret in the zoom region is proportionally the same as the
position of the system caret on screen
• push: when the magnified caret intersects a boundary of the zoom region, the contents are scrolled into
view
</description>
</key>
<key name="screen-position" enum="org.gnome.desktop.GDesktopMagnifierScreenPosition">
<default>'full-screen'</default>
<summary>Screen position</summary>
<description>
The magnified view either fills the entire screen, or occupies the
top-half, bottom-half, left-half, or right-half of the screen.
</description>
</key>
<key name="mag-factor" type="d">
<default>2.0</default>
<range min="0.1" max="32.0"/>
<summary>Magnification factor</summary>
<description>
The power of the magnification. A value of 1.0 means no magnification.
A value of 2.0 doubles the size.
</description>
</key>
<key name="lens-mode" type="b">
<default>false</default>
<summary>Enable lens mode</summary>
<description>
Whether the magnified view should be centered over the location of
the system mouse and move with it.
</description>
</key>
<key name="scroll-at-edges" type="b">
<default>false</default>
<summary>
Scroll magnified contents beyond the edges of the desktop
</summary>
<description>
For centered mouse tracking, when the system pointer is at or near the
edge of the screen, the magnified contents continue to scroll such that
the screen edge moves into the magnified view.
</description>
</key>
<!-- Cross-hairs -->
<key name="show-cross-hairs" type="b">
<default>false</default>
<summary>Show or hide crosshairs</summary>
<description>
Enables/disables display of crosshairs centered on the magnified
mouse sprite.
</description>
</key>
<key name="cross-hairs-thickness" type="i">
<default>8</default>
<summary>Thickness of the crosshairs in pixels</summary>
<description>
Width in pixels of the vertical and horizontal lines that make up the crosshairs.
</description>
</key>
<key name="cross-hairs-color" type="s">
<default>'#ff0000'</default>
<summary>Color of the crosshairs</summary>
<description>
The color of the the vertical and horizontal lines that make up
the crosshairs.
</description>
</key>
<key name="cross-hairs-opacity" type="d">
<default>0.66</default>
<range min="0.0" max="1.0"/>
<summary>Opacity of the crosshairs</summary>
<description>
Determines the transparency of the crosshairs, from fully opaque
to fully transparent.
</description>
</key>
<key name="cross-hairs-length" type="i">
<default>4096</default>
<range min="20" max="4096"/>
<summary>Length of the crosshairs in pixels</summary>
<description>
Determines the length in pixels of the vertical and horizontal
lines that make up the crosshairs.
</description>
</key>
<key name="cross-hairs-clip" type="b">
<default>false</default>
<summary>Clip the crosshairs at the center</summary>
<description>
Determines whether the crosshairs intersect the magnified mouse sprite,
or are clipped such that the ends of the horizontal and vertical lines
surround the mouse image.
</description>
</key>
<key name="invert-lightness" type="b">
<default>false</default>
<summary>Inverse lightness</summary>
<description>
Determines whether the lightness values are inverted: darker colors
become lighter and vice versa, and white and black are interchanged.
</description>
</key>
<key name="color-saturation" type="d">
<default>1.0</default>
<range min="0.0" max="1.0"/>
<summary>Color Saturation</summary>
<description>
Represents a change to the color saturation, from 0.0 (grayscale)
to 1.0 (full color).
</description>
</key>
<key name="brightness-red" type="d">
<default>0.0</default>
<range min="-1.0" max="1.0"/>
<summary>Change brightness of red</summary>
<description>
Represents a change to the default brightness of the red component. Zero
indicates no change, values less than zero indicate a decrease, and
values greater than zero indicate an increase.
</description>
</key>
<key name="brightness-green" type="d">
<default>0.0</default>
<range min="-1.0" max="1.0"/>
<summary>Change brightness of green</summary>
<description>
Represents a change to the default brightness for the green component.
Zero indicates no change, values less than zero indicate a decrease, and
values greater than zero indicate an increase.
</description>
</key>
<key name="brightness-blue" type="d">
<default>0.0</default>
<range min="-1.0" max="1.0"/>
<summary>Change brightness of blue</summary>
<description>
Represents a change to the default brightness for the blue component.
Zero indicates no change, values less than zero indicate a decrease, and
values greater than zero indicate an increase.
</description>
</key>
<key name="contrast-red" type="d">
<default>0.0</default>
<range min="-1.0" max="1.0"/>
<summary>Change contrast of red</summary>
<description>
Represents a change to the default contrast of the red component. Zero
indicates no change in contrast, values less than zero indicate a
decrease, and values greater than zero indicate an increase.
</description>
</key>
<key name="contrast-green" type="d">
<default>0.0</default>
<range min="-1.0" max="1.0"/>
<summary>Change contrast of green</summary>
<description>
Represents a change to the default contrast of the green component.
Zero indicates no change in contrast, values less than zero indicate a
decrease, and values greater than zero indicate an increase.
</description>
</key>
<key name="contrast-blue" type="d">
<default>0.0</default>
<range min="-1.0" max="1.0"/>
<summary>Change contrast of blue</summary>
<description>
Represents a change to the default contrast of the blue component. Zero
indicates no change in contrast, values less than zero indicate a
decrease, and values greater than zero indicate an increase.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,60 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.a11y.mouse" path="/org/gnome/desktop/a11y/mouse/">
<key name="dwell-time" type="d">
<default>1.20</default>
<summary>Dwell click time</summary>
<description>Time in seconds before a click is triggered.</description>
</key>
<key name="dwell-threshold" type="i">
<default>10</default>
<summary>Movement threshold</summary>
<description>Distance in pixels before movement will be recognized.</description>
</key>
<key name="dwell-gesture-single" enum="org.gnome.desktop.GDesktopMouseDwellDirection">
<default>'left'</default>
<summary>Gesture single click</summary>
<description>Direction to perform a single click (“left”, “right”, “up”, “down”).</description>
</key>
<key name="dwell-gesture-double" enum="org.gnome.desktop.GDesktopMouseDwellDirection">
<default>'up'</default>
<summary>Gesture double click</summary>
<description>Direction to perform a double click (“left”, “right”, “up”, “down”).</description>
</key>
<key name="dwell-gesture-drag" enum="org.gnome.desktop.GDesktopMouseDwellDirection">
<default>'down'</default>
<summary>Gesture drag click</summary>
<description>Direction to perform dragging (“left”, “right”, “up”, “down”).</description>
</key>
<key name="dwell-gesture-secondary" enum="org.gnome.desktop.GDesktopMouseDwellDirection">
<default>'right'</default>
<summary>Gesture secondary click</summary>
<description>Direction to perform a secondary click (“left”, “right”, “up”, “down”).</description>
</key>
<key name="dwell-mode" enum="org.gnome.desktop.GDesktopMouseDwellMode">
<default>'window'</default>
<summary>Dwell click mode</summary>
<description>The active dwell click mode. Possible values are “window” and “gesture”.</description>
</key>
<key name="click-type-window-visible" type="b">
<default>true</default>
<summary>Show click type window</summary>
<description>Show click type window.</description>
</key>
<key name="dwell-click-enabled" type="b">
<default>false</default>
<summary>Enable dwell clicks</summary>
<description>Enable dwell clicks.</description>
</key>
<key name="secondary-click-enabled" type="b">
<default>false</default>
<summary>Secondary click enabled</summary>
<description>Enable simulated secondary clicks</description>
</key>
<key name="secondary-click-time" type="d">
<default>1.20</default>
<summary>Secondary click time</summary>
<description>Time in seconds before a simulated secondary click is triggered.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,45 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.app-folders" path="/org/gnome/desktop/app-folders/">
<key name="folder-children" type="as">
<default>[]</default>
<summary>Folder children</summary>
<description>List of relative settings paths at which app-folders are
stored. Each folder uses the org.gnome.desktop.app-folders.folder
schema.</description>
</key>
</schema>
<schema id="org.gnome.desktop.app-folders.folder">
<key name="name" type="s">
<default>''</default>
<summary>Folder name</summary>
<description>The name of the application folder.</description>
</key>
<key name="translate" type="b">
<default>false</default>
<summary>Translate the name</summary>
<description>Whether the name key is a filename to be looked up in
/usr/share/desktop-directories.</description>
</key>
<key name="apps" type="as">
<default>[]</default>
<summary>Applications</summary>
<description>The list of IDs of applications that are explicitly
included in this folder.</description>
</key>
<key name="categories" type="as">
<default>[]</default>
<summary>Categories</summary>
<description>A list of categories for which apps will be placed
into this folder by default, in addition to the apps that are
listed in the apps key.</description>
</key>
<key name="excluded-apps" type="as">
<default>[]</default>
<summary>Excluded applications</summary>
<description>A list of IDs of applications that are excluded
from this folder. This can be used to remove applications that
would otherwise be included by category.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,67 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.background" path="/org/gnome/desktop/background/">
<key name="picture-options" enum="org.gnome.desktop.GDesktopBackgroundStyle">
<default>'zoom'</default>
<summary>Picture Options</summary>
<description>
Determines how the image set by wallpaper_filename is rendered.
Possible values are “none”, “wallpaper”, “centered”, “scaled”,
“stretched”, “zoom”, “spanned”.
</description>
</key>
<key name="picture-uri" type="s">
<default>'file:///usr/share/backgrounds/gnome/adwaita-l.jxl'</default>
<summary>Picture URI</summary>
<description>
URI to use for the background image. Note that the backend only supports
local (file://) URIs.
</description>
</key>
<key name="picture-uri-dark" type="s">
<default>'file:///usr/share/backgrounds/gnome/adwaita-d.jxl'</default>
<summary>Picture URI (dark)</summary>
<description>
URI to use for the background image. Note that the backend only supports
local (file://) URIs.
</description>
</key>
<key name="picture-opacity" type="i">
<range min="0" max="100"/>
<default>100</default>
<summary>Picture Opacity</summary>
<description>
Opacity with which to draw the background picture.
</description>
</key>
<key name="primary-color" type="s">
<default>'#023c88'</default>
<summary>Primary Color</summary>
<description>
Left or Top color when drawing gradients, or the solid color.
</description>
</key>
<key name="secondary-color" type="s">
<default>'#5789ca'</default>
<summary>Secondary Color</summary>
<description>
Right or Bottom color when drawing gradients, not used for solid color.
</description>
</key>
<key name="color-shading-type" enum="org.gnome.desktop.GDesktopBackgroundShading">
<default>'solid'</default>
<summary>Color Shading Type</summary>
<description>
How to shade the background color. Possible values are “horizontal”,
“vertical”, and “solid”.
</description>
</key>
<key name="show-desktop-icons" type="b">
<default>false</default>
<summary>Have file manager handle the desktop</summary>
<description>
If set to true, then file manager will draw the icons on the desktop.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,149 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
SPDX-License-Identifier: LGPL-2.1-or-later
SPDX-FileCopyrightText: 2024 GNOME Foundation, Inc.
SPDX-FileCopyrightText: 2020 Dylan McCall
-->
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.break-reminders" path="/org/gnome/desktop/break-reminders/">
<key name="selected-breaks" type="as">
<summary>List of breaks that are currently enabled</summary>
<default>[]</default>
</key>
<child schema="org.gnome.desktop.break-reminders.movement" name="movement"/>
<child schema="org.gnome.desktop.break-reminders.eyesight" name="eyesight"/>
</schema>
<!-- This should ideally be a relocatable schema, but we want different default values for eyesight and movement breaks.
Movement breaks are longer breaks, relatively infrequently. Eyesight breaks are shorter breaks, relatively frequently. -->
<schema id="org.gnome.desktop.break-reminders.movement" path="/org/gnome/desktop/break-reminders/movement/">
<key name="interval-seconds" type="u">
<summary>Time between breaks</summary>
<description>The time between rest breaks, in seconds.</description>
<default>1800</default>
<range min="10"/>
</key>
<key name="duration-seconds" type="u">
<summary>Duration of each break</summary>
<description>The duration of each rest break, in seconds.</description>
<default>300</default>
<range min="10"/>
</key>
<key name="delay-seconds" type="u">
<summary>Amount to delay break if requested</summary>
<description>The amount to delay taking the break by, if the user requests a delay, in seconds.</description>
<default>180</default>
<range min="10"/>
</key>
<key name="fade-screen" type="b">
<summary>Fade screen during breaks</summary>
<description>True to fade the screen during rest breaks.</description>
<default>true</default>
</key>
<key name="lock-screen" type="b">
<summary>Lock screen during breaks</summary>
<description>True to lock the screen during rest breaks.</description>
<default>false</default>
</key>
<key name="play-sound" type="b">
<summary>Play sound when a break finishes</summary>
<description>True to play a sound when a break finishes.</description>
<default>true</default>
</key>
<key name="notify" type="b">
<summary>Notify when a break is due</summary>
<description>True to emit a notification when a break is due to start.</description>
<default>true</default>
</key>
<key name="notify-upcoming" type="b">
<summary>Notify when a break is upcoming</summary>
<description>True to emit a notification a few minutes before a break is due.</description>
<default>true</default>
</key>
<key name="notify-overdue" type="b">
<summary>Notify when a break is overdue</summary>
<description>True to emit a notification when a break is overdue.</description>
<default>true</default>
</key>
<key name="countdown" type="b">
<summary>Notify when a break is due</summary>
<description>True to show a prominent countdown shortly before a break is due.</description>
<default>false</default>
</key>
</schema>
<schema id="org.gnome.desktop.break-reminders.eyesight" path="/org/gnome/desktop/break-reminders/eyesight/">
<key name="interval-seconds" type="u">
<summary>Time between breaks</summary>
<description>The time between rest breaks, in seconds.</description>
<default>1200</default>
<range min="10"/>
</key>
<key name="duration-seconds" type="u">
<summary>Duration of each break</summary>
<description>The duration of each rest break, in seconds.</description>
<default>20</default>
<range min="10"/>
</key>
<key name="delay-seconds" type="u">
<summary>Amount to delay break if requested</summary>
<description>The amount to delay taking the break by, if the user requests a delay, in seconds.</description>
<default>180</default>
<range min="10"/>
</key>
<key name="fade-screen" type="b">
<summary>Fade screen during breaks</summary>
<description>True to fade the screen during rest breaks.</description>
<default>true</default>
</key>
<key name="lock-screen" type="b">
<summary>Lock screen during breaks</summary>
<description>True to lock the screen during rest breaks.</description>
<default>false</default>
</key>
<key name="play-sound" type="b">
<summary>Play sound when a break finishes</summary>
<description>True to play a sound when a break finishes.</description>
<default>true</default>
</key>
<key name="notify" type="b">
<summary>Notify when a break is due</summary>
<description>True to emit a notification when a break is due to start.</description>
<default>true</default>
</key>
<key name="notify-upcoming" type="b">
<summary>Notify when a break is upcoming</summary>
<description>True to emit a notification a few minutes before a break is due.</description>
<default>false</default>
</key>
<key name="notify-overdue" type="b">
<summary>Notify when a break is overdue</summary>
<description>True to emit a notification when a break is overdue.</description>
<default>true</default>
</key>
<key name="countdown" type="b">
<summary>Notify when a break is due</summary>
<description>True to show a prominent countdown shortly before a break is due.</description>
<default>false</default>
</key>
</schema>
</schemalist>

View File

@@ -1,10 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.calendar" path="/org/gnome/desktop/calendar/">
<key name="show-weekdate" type="b">
<default>false</default>
<summary>Show the week date in the calendar</summary>
<description>If true, display the ISO week date in the calendar.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,10 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.datetime" path="/org/gnome/desktop/datetime/">
<key name="automatic-timezone" type="b">
<default>false</default>
<summary>Automatically update timezone</summary>
<description>Whether to automatically update the timezone using geolocation.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,73 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.default-applications" path="/org/gnome/desktop/applications/">
<child name="office" schema="org.gnome.desktop.default-applications.office"/>
<child name="terminal" schema="org.gnome.desktop.default-applications.terminal"/>
</schema>
<schema id="org.gnome.desktop.default-applications.office" path="/org/gnome/desktop/applications/office/">
<child name="calendar" schema="org.gnome.desktop.default-applications.office.calendar"/>
<child name="tasks" schema="org.gnome.desktop.default-applications.office.tasks"/>
</schema>
<schema id="org.gnome.desktop.default-applications.office.calendar" path="/org/gnome/desktop/applications/office/calendar/">
<key name="exec" type="s">
<default>'evolution -c calendar'</default>
<summary>Default calendar</summary>
<description>
Default calendar application
DEPRECATED: This key is deprecated and ignored.
The preferred calendar application is the application handling the text/calendar mime type.
</description>
</key>
<key name="needs-term" type="b">
<default>false</default>
<summary>Calendar needs terminal</summary>
<description>
Whether the default calendar application needs a terminal to run.
DEPRECATED: This key is deprecated and ignored.
The preferred calendar application is the application handling the text/calendar mime type,
whether it needs a terminal is taken from its desktop file.
</description>
</key>
</schema>
<schema id="org.gnome.desktop.default-applications.office.tasks" path="/org/gnome/desktop/applications/office/tasks/">
<key name="exec" type="s">
<default>'evolution -c tasks'</default>
<summary>Default tasks</summary>
<description>
Default tasks application.
</description>
</key>
<key name="needs-term" type="b">
<default>false</default>
<summary>Tasks needs terminal</summary>
<description>
Whether the default tasks application needs a terminal to run.
</description>
</key>
</schema>
<schema id="org.gnome.desktop.default-applications.terminal" path="/org/gnome/desktop/applications/terminal/">
<key name="exec" type="s">
<default>'gnome-terminal'</default>
<summary>Terminal application</summary>
<description>
Terminal program to use when starting applications that require one.
DEPRECATED: This key is deprecated and ignored.
The default terminal is handled in GIO.
</description>
</key>
<key name="exec-arg" type="s">
<default>'-x'</default>
<summary>Exec Arguments</summary>
<description>
Argument used to execute programs in the terminal defined by the
“exec” key.
DEPRECATED: This key is deprecated and ignored.
The default terminal and how to invoke it is handled in GIO.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,204 +0,0 @@
<!-- This file is generated by glib-mkenums, do not modify it. This code is licensed under the same license as the containing project. Note that it links to GLib, so must comply with the LGPL linking clauses. -->
<schemalist>
<enum id="org.gnome.desktop.GDesktopProxyMode">
<value nick="none" value="0"/>
<value nick="manual" value="1"/>
<value nick="auto" value="2"/>
</enum>
<enum id="org.gnome.desktop.GDesktopToolbarStyle">
<value nick="both" value="0"/>
<value nick="both-horiz" value="1"/>
<value nick="icons" value="2"/>
<value nick="text" value="3"/>
</enum>
<enum id="org.gnome.desktop.GDesktopToolbarIconSize">
<value nick="small" value="0"/>
<value nick="large" value="1"/>
</enum>
<enum id="org.gnome.desktop.GDesktopBackgroundStyle">
<value nick="none" value="0"/>
<value nick="wallpaper" value="1"/>
<value nick="centered" value="2"/>
<value nick="scaled" value="3"/>
<value nick="stretched" value="4"/>
<value nick="zoom" value="5"/>
<value nick="spanned" value="6"/>
</enum>
<enum id="org.gnome.desktop.GDesktopBackgroundShading">
<value nick="solid" value="0"/>
<value nick="vertical" value="1"/>
<value nick="horizontal" value="2"/>
</enum>
<enum id="org.gnome.desktop.GDesktopMouseDwellMode">
<value nick="window" value="0"/>
<value nick="gesture" value="1"/>
</enum>
<enum id="org.gnome.desktop.GDesktopMouseDwellDirection">
<value nick="left" value="0"/>
<value nick="right" value="1"/>
<value nick="up" value="2"/>
<value nick="down" value="3"/>
</enum>
<enum id="org.gnome.desktop.GDesktopClockFormat">
<value nick="24h" value="0"/>
<value nick="12h" value="1"/>
</enum>
<enum id="org.gnome.desktop.GDesktopScreensaverMode">
<value nick="blank-only" value="0"/>
<value nick="random" value="1"/>
<value nick="single" value="2"/>
</enum>
<enum id="org.gnome.desktop.GDesktopMagnifierMouseTrackingMode">
<value nick="none" value="0"/>
<value nick="centered" value="1"/>
<value nick="proportional" value="2"/>
<value nick="push" value="3"/>
</enum>
<enum id="org.gnome.desktop.GDesktopMagnifierFocusTrackingMode">
<value nick="none" value="0"/>
<value nick="centered" value="1"/>
<value nick="proportional" value="2"/>
<value nick="push" value="3"/>
</enum>
<enum id="org.gnome.desktop.GDesktopMagnifierCaretTrackingMode">
<value nick="none" value="0"/>
<value nick="centered" value="1"/>
<value nick="proportional" value="2"/>
<value nick="push" value="3"/>
</enum>
<enum id="org.gnome.desktop.GDesktopMagnifierScreenPosition">
<value nick="none" value="0"/>
<value nick="full-screen" value="1"/>
<value nick="top-half" value="2"/>
<value nick="bottom-half" value="3"/>
<value nick="left-half" value="4"/>
<value nick="right-half" value="5"/>
</enum>
<enum id="org.gnome.desktop.GDesktopTitlebarAction">
<value nick="toggle-shade" value="0"/>
<value nick="toggle-maximize" value="1"/>
<value nick="toggle-maximize-horizontally" value="2"/>
<value nick="toggle-maximize-vertically" value="3"/>
<value nick="minimize" value="4"/>
<value nick="none" value="5"/>
<value nick="lower" value="6"/>
<value nick="menu" value="7"/>
</enum>
<enum id="org.gnome.desktop.GDesktopFocusMode">
<value nick="click" value="0"/>
<value nick="sloppy" value="1"/>
<value nick="mouse" value="2"/>
</enum>
<enum id="org.gnome.desktop.GDesktopFocusNewWindows">
<value nick="smart" value="0"/>
<value nick="strict" value="1"/>
</enum>
<enum id="org.gnome.desktop.GDesktopVisualBellType">
<value nick="fullscreen-flash" value="0"/>
<value nick="frame-flash" value="1"/>
</enum>
<enum id="org.gnome.desktop.GDesktopLocationAccuracyLevel">
<value nick="country" value="0"/>
<value nick="city" value="1"/>
<value nick="neighborhood" value="2"/>
<value nick="street" value="3"/>
<value nick="exact" value="4"/>
</enum>
<enum id="org.gnome.desktop.GDesktopTouchpadHandedness">
<value nick="right" value="0"/>
<value nick="left" value="1"/>
<value nick="mouse" value="2"/>
</enum>
<enum id="org.gnome.desktop.GDesktopTouchpadClickMethod">
<value nick="default" value="0"/>
<value nick="none" value="1"/>
<value nick="areas" value="2"/>
<value nick="fingers" value="3"/>
</enum>
<enum id="org.gnome.desktop.GDesktopTouchpadTapButtonMap">
<value nick="default" value="0"/>
<value nick="lrm" value="1"/>
<value nick="lmr" value="2"/>
</enum>
<enum id="org.gnome.desktop.GDesktopDeviceSendEvents">
<value nick="enabled" value="0"/>
<value nick="disabled" value="1"/>
<value nick="disabled-on-external-mouse" value="2"/>
</enum>
<enum id="org.gnome.desktop.GDesktopTabletMapping">
<value nick="absolute" value="0"/>
<value nick="relative" value="1"/>
</enum>
<enum id="org.gnome.desktop.GDesktopPadButtonAction">
<value nick="none" value="0"/>
<value nick="help" value="1"/>
<value nick="switch-monitor" value="2"/>
<value nick="keybinding" value="3"/>
</enum>
<enum id="org.gnome.desktop.GDesktopStylusButtonAction">
<value nick="default" value="0"/>
<value nick="middle" value="1"/>
<value nick="right" value="2"/>
<value nick="back" value="3"/>
<value nick="forward" value="4"/>
<value nick="switch-monitor" value="5"/>
<value nick="keybinding" value="6"/>
</enum>
<enum id="org.gnome.desktop.GDesktopPointerAccelProfile">
<value nick="default" value="0"/>
<value nick="flat" value="1"/>
<value nick="adaptive" value="2"/>
</enum>
<enum id="org.gnome.desktop.GDesktopUsbProtection">
<value nick="lockscreen" value="0"/>
<value nick="always" value="1"/>
</enum>
<enum id="org.gnome.desktop.GDesktopFontAntialiasingMode">
<value nick="none" value="0"/>
<value nick="grayscale" value="1"/>
<value nick="rgba" value="2"/>
</enum>
<enum id="org.gnome.desktop.GDesktopFontHinting">
<value nick="none" value="0"/>
<value nick="slight" value="1"/>
<value nick="medium" value="2"/>
<value nick="full" value="3"/>
</enum>
<enum id="org.gnome.desktop.GDesktopFontRgbaOrder">
<value nick="rgba" value="0"/>
<value nick="rgb" value="1"/>
<value nick="bgr" value="2"/>
<value nick="vrgb" value="3"/>
<value nick="vbgr" value="4"/>
</enum>
<enum id="org.gnome.desktop.GDesktopColorScheme">
<value nick="default" value="0"/>
<value nick="prefer-dark" value="1"/>
<value nick="prefer-light" value="2"/>
</enum>
<enum id="org.gnome.desktop.GDesktopPointingStickScrollMethod">
<value nick="default" value="0"/>
<value nick="none" value="1"/>
<value nick="on-button-down" value="2"/>
</enum>
<enum id="org.gnome.desktop.GDesktopFontRendering">
<value nick="automatic" value="0"/>
<value nick="manual" value="1"/>
</enum>
<enum id="org.gnome.desktop.GDesktopAccentColor">
<value nick="blue" value="0"/>
<value nick="teal" value="1"/>
<value nick="green" value="2"/>
<value nick="yellow" value="3"/>
<value nick="orange" value="4"/>
<value nick="red" value="5"/>
<value nick="pink" value="6"/>
<value nick="purple" value="7"/>
<value nick="slate" value="8"/>
</enum>
</schemalist>
<!-- Generated data ends here -->

View File

@@ -1,72 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.input-sources"
path="/org/gnome/desktop/input-sources/">
<key name="current" type="u">
<default>0</default>
<summary>Current input source</summary>
<description>
The zero-based index into the input sources list specifying
the current one in effect. The value is automatically capped
to remain in the range [0, sources_length) as long as the
sources list isnt empty.
DEPRECATED: This key is deprecated and ignored.
</description>
</key>
<key name="sources" type="a(ss)">
<default>[]</default>
<summary>List of input sources</summary>
<description>
List of input source identifiers available. Each source is
specified as a tuple of 2 strings. The first string is the
type and can be one of “xkb” or “ibus”. For “xkb” sources the
second string is “xkb_layout+xkb_variant” or just “xkb_layout”
if a XKB variant isnt needed. For “ibus” sources the second
string is the IBus engine name. An empty list means that the X
servers current XKB layout and variant wont be touched and
IBus wont be used.
</description>
</key>
<key name="mru-sources" type="a(ss)">
<default>[]</default>
<summary>List of most recently used input sources</summary>
<description>
List of most recently used input sources. The value is in the
same format as the available sources list.
</description>
</key>
<key name="xkb-options" type="as">
<default>[]</default>
<summary>List of XKB options</summary>
<description>
List of XKB options. Each option is an XKB option string as
defined by xkeyboard-configs rules files.
</description>
</key>
<key name="xkb-model" type="s">
<default>'pc105+inet'</default>
<summary>XKB model to use</summary>
<description>
The XKB model to use. The value is the same identifier as
defined by xkeyboard-configs geometry files.
</description>
</key>
<key name="show-all-sources" type="b">
<default>false</default>
<summary>Show all installed input sources</summary>
<description>
Makes all installed input sources available for choosing in
System Settings.
</description>
</key>
<key name="per-window" type="b">
<default>false</default>
<summary>Use different input sources for each window</summary>
<description>
When enabled, input sources get attached to the currently
focused window when activated.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,322 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.interface" path="/org/gnome/desktop/interface/">
<key name="toolkit-accessibility" type="b">
<default>false</default>
<summary>Enable Toolkit Accessibility</summary>
<description>
Whether toolkits should load accessibility related modules.
</description>
</key>
<key name="enable-animations" type="b">
<default>true</default>
<summary>Enable Animations</summary>
<description>
Whether animations should be displayed. Note: This is a global key,
it changes the behaviour of the window manager, the panel etc.
</description>
</key>
<key name="menus-have-tearoff" type="b">
<default>false</default>
<summary>Menus Have Tearoff</summary>
<description>
Whether menus should have a tearoff.
</description>
</key>
<key name="can-change-accels" type="b">
<default>false</default>
<summary>Can Change Accels</summary>
<description>
Whether the user can dynamically type a new accelerator when
positioned over an active menuitem.
</description>
</key>
<key name="toolbar-style" enum="org.gnome.desktop.GDesktopToolbarStyle">
<default>'both-horiz'</default>
<summary>Toolbar Style</summary>
<description>
Toolbar Style. Valid values are “both”, “both-horiz”, “icons”,
and “text”.
</description>
</key>
<key name="menubar-detachable" type="b">
<default>false</default>
<summary>Menubar Detachable</summary>
<description>
Whether the user can detach menubars and move them around.
</description>
</key>
<key name="toolbar-detachable" type="b">
<default>false</default>
<summary>Toolbar Detachable</summary>
<description>
Whether the user can detach toolbars and move them around.
</description>
</key>
<key name="toolbar-icons-size" enum="org.gnome.desktop.GDesktopToolbarIconSize">
<default>'large'</default>
<summary>Toolbar Icon Size</summary>
<description>
Size of icons in toolbars, either “small” or “large”.
</description>
</key>
<key name="cursor-blink" type="b">
<default>true</default>
<summary>Cursor Blink</summary>
<description>
Whether the cursor should blink.
</description>
</key>
<key name="cursor-blink-time" type="i">
<range min="100" max="2500"/>
<default>1200</default>
<summary>Cursor Blink Time</summary>
<description>
Length of the cursor blink cycle, in milliseconds.
</description>
</key>
<key name="cursor-blink-timeout" type="i">
<range min="1" max="2147483647"/>
<default>10</default>
<summary>Cursor Blink Timeout</summary>
<description>
Time after which the cursor stops blinking, in seconds.
</description>
</key>
<key name="icon-theme" type="s">
<default>'Adwaita'</default>
<summary>Icon Theme</summary>
<description>
Icon theme to use for the panel, nautilus etc.
</description>
</key>
<key name="gtk-theme" type="s">
<default>'Adwaita'</default>
<summary>Gtk+ Theme</summary>
<description>
Basename of the default theme used by gtk+.
</description>
</key>
<key name="gtk-key-theme" type="s">
<default>'Default'</default>
<summary>Gtk+ Keybinding Theme</summary>
<description>
Basename of the default keybinding theme used by gtk+.
</description>
</key>
<key name="font-name" type="s">
<default>'Cantarell 11'</default>
<summary>Default font</summary>
<description>
Name of the default font used by gtk+.
</description>
</key>
<key name="avatar-directories" type="as">
<default>[]</default>
<summary>Directories with avatar faces</summary>
<description>
Directories to override the default avatar faces installed by gnome-control-center.
</description>
</key>
<key name="text-scaling-factor" type="d">
<range min="0.5" max="3.0"/>
<default>1.0</default>
<summary>Text scaling factor</summary>
<description>
Factor used to enlarge or reduce text display, without changing font size.
</description>
</key>
<key name="scaling-factor" type="u">
<default>0</default>
<summary>Window scaling factor</summary>
<description>
Integer factor used to scale windows by. For use on high-dpi screens.
0 means pick automatically based on monitor.
</description>
</key>
<key name="gtk-im-preedit-style" type="s">
<default>'callback'</default>
<summary>GTK IM Preedit Style</summary>
<description>
Name of the GTK+ input method Preedit Style used by gtk+.
</description>
</key>
<key name="gtk-im-status-style" type="s">
<default>'callback'</default>
<summary>GTK IM Status Style</summary>
<description>
Name of the GTK+ input method Status Style used by gtk+.
</description>
</key>
<key name="gtk-im-module" type="s">
<default>''</default>
<summary>GTK IM Module</summary>
<description>
Name of the input method module used by GTK+.
</description>
</key>
<key name="document-font-name" type="s">
<default>'Cantarell 11'</default>
<summary>Document font</summary>
<description>
Name of the default font used for reading documents.
</description>
</key>
<key name="monospace-font-name" type="s">
<default>'Source Code Pro 10'</default>
<summary>Monospace font</summary>
<description>
Name of a monospaced (fixed-width) font for use in locations like
terminals.
</description>
</key>
<key name="menubar-accel" type="s">
<default>'F10'</default>
<summary>Menubar accelerator</summary>
<description>
Keyboard shortcut to open the menu bars.
</description>
</key>
<key name="cursor-theme" type="s">
<default>'Adwaita'</default>
<summary>Cursor theme</summary>
<description>Cursor theme name. Used only by Xservers that support the Xcursor extension.</description>
</key>
<key name="cursor-size" type="i">
<default>24</default>
<summary>Cursor size</summary>
<description>Size of the cursor used as cursor theme.</description>
</key>
<key name="gtk-timeout-initial" type="i">
<default>200</default>
<summary>Timeout before click repeat</summary>
<description>Timeout in milliseconds before a click starts repeating (on spinner buttons for example).</description>
</key>
<key name="gtk-timeout-repeat" type="i">
<default>20</default>
<summary>Timeout between click repeats</summary>
<description>Timeout in milliseconds between repeated clicks when a button is left pressed.</description>
</key>
<key name="gtk-color-palette" type="s">
<default>'black:white:gray50:red:purple:blue:light blue:green:yellow:orange:lavender:brown:goldenrod4:dodger blue:pink:light green:gray10:gray30:gray75:gray90'</default>
<summary>Palette used in the color selector</summary>
<description>Palette used in the color selector as defined by the “gtk-color-palette” setting</description>
</key>
<key name="gtk-color-scheme" type="s">
<default>''</default>
<summary>List of symbolic names and color equivalents</summary>
<description>A “\n” separated list of “name:color” as defined by the “gtk-color-scheme” setting</description>
</key>
<key name="clock-format" enum="org.gnome.desktop.GDesktopClockFormat">
<!-- TRANSLATORS: select your locale's default clock format, this should be '12h' or '24h' (with the quotes!) -->
<default l10n="time">'24h'</default>
<summary>Whether the clock displays in 24h or 12h format</summary>
<description>
Whether the clock displays in 24h or 12h format
</description>
</key>
<key name="clock-show-seconds" type="b">
<default>false</default>
<summary>Whether the clock shows seconds</summary>
<description>
If true, display seconds in the clock.
</description>
</key>
<key name="clock-show-date" type="b">
<default>true</default>
<summary>Show date in clock</summary>
<description>
If true, display date in the clock, in addition to time.
</description>
</key>
<key name="clock-show-weekday" type="b">
<default>false</default>
<summary>Show weekday in clock</summary>
<description>
If true, display weekday in the clock, in addition to time.
</description>
</key>
<key name="enable-hot-corners" type="b">
<default>true</default>
<summary>Enable hot corners</summary>
<description>
If true, the activities overview can be accessed by moving the
mouse to the top-left corner.
</description>
</key>
<key name="show-battery-percentage" type="b">
<default>false</default>
<summary>Show battery percentage</summary>
<description>
If true, display battery percentage in the status menu, in addition to the icon.
</description>
</key>
<key name="gtk-enable-primary-paste" type="b">
<default>true</default>
<summary>Enable the primary paste selection</summary>
<description>
If true, gtk+ uses the primary paste selection, usually triggered by a middle mouse button click.
</description>
</key>
<key name="overlay-scrolling" type="b">
<default>true</default>
<summary>Allow overlay scrolling</summary>
<description>
Whether scrollbars should be overlayed as indicators. Depending
on input devices in use, permanent scrollbars may still be
displayed.
</description>
</key>
<key name="locate-pointer" type="b">
<default>false</default>
<summary>Highlights the current location of the pointer.</summary>
<description>
If true, pressing a key will highlight the current pointer location on screen.
</description>
</key>
<key name="font-antialiasing" enum="org.gnome.desktop.GDesktopFontAntialiasingMode">
<default>'grayscale'</default>
<summary>Antialiasing</summary>
<description>
The type of antialiasing to use when rendering fonts. Possible values are: “none” for no antialiasing, “grayscale” for standard grayscale antialiasing, and “rgba” for subpixel antialiasing (LCD screens only).
</description>
</key>
<key name="font-hinting" enum="org.gnome.desktop.GDesktopFontHinting">
<default>'slight'</default>
<summary>Hinting</summary>
<description>
The type of hinting to use when rendering fonts. Possible values are: “none” for no hinting and “slight” for fitting only to the Y-axis like Microsofts ClearType, DirectWrite and Adobes proprietary font rendering engine. Ignores native hinting within the font, generates hints algorithmically. Used on Ubuntu by default. Recommended. The meaning of “medium” and “full” depends on the font format (.ttf, .otf, .pfa/.pfb) and the installed version of FreeType. They usually try to fit glyphs to both the X and the Y axis (except for .otf: Y-only). This can lead to distortion and/or inconsistent rendering depending on the quality of the font, the font format and the state of FreeTypes font engines.
</description>
</key>
<key name="font-rgba-order" enum="org.gnome.desktop.GDesktopFontRgbaOrder">
<default>'rgb'</default>
<summary>RGBA order</summary>
<description>
The order of subpixel elements on an LCD screen; only used when antialiasing is set to “rgba”. Possible values are: “rgb” for red on left (most common), “bgr” for blue on left, “vrgb” for red on top, “vbgr” for red on bottom.
</description>
</key>
<key name="color-scheme" enum="org.gnome.desktop.GDesktopColorScheme">
<default>'default'</default>
<summary>Color scheme</summary>
<description>
The preferred color scheme for the user interface. Valid values are “default”, “prefer-dark”, “prefer-light”.
</description>
</key>
<key name="font-rendering" enum="org.gnome.desktop.GDesktopFontRendering">
<default>'automatic'</default>
<summary>Font rendering</summary>
<description>
Preference to indicate whether font rendering should follow the low-level `font-hinting` and `font-antialiasing` and `font-rgba-order` settings, or take environmental factors such as screen resolution and scaling into account.
Possible values are: "manual" for respecting the low-level settings, or "automatic" for letting the toolkit
make its own decisions.
</description>
</key>
<key name="accent-color" enum="org.gnome.desktop.GDesktopAccentColor">
<default>'blue'</default>
<summary>Accent color</summary>
<description>
The preferred accent color for the user interface. Valid values are "blue", "teal", "green", "yellow", "orange", "red", "pink", "purple", "slate".
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,90 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.lockdown" path="/org/gnome/desktop/lockdown/">
<key name="disable-command-line" type="b">
<default>false</default>
<summary>Disable command line</summary>
<description>
Prevent the user from accessing the terminal or specifying a command
line to be executed. For example, this would disable access to the
panels “Run Application” dialog.
</description>
</key>
<key name="disable-save-to-disk" type="b">
<default>false</default>
<summary>Disable saving files to disk</summary>
<description>
Prevent the user from saving files to disk. For example, this would
disable access to all applications “Save as” dialogs.
</description>
</key>
<key name="disable-printing" type="b">
<default>false</default>
<summary>Disable printing</summary>
<description>
Prevent the user from printing. For example, this would disable access
to all applications “Print” dialogs.
</description>
</key>
<key name="disable-print-setup" type="b">
<default>false</default>
<summary>Disable print setup</summary>
<description>
Prevent the user from modifying print settings. For example, this would
disable access to all applications “Print Setup” dialogs.
</description>
</key>
<key name="disable-user-switching" type="b">
<default>false</default>
<summary>Disable user switching</summary>
<description>
Prevent the user from switching to another account while his session
is active.
</description>
</key>
<key name="disable-lock-screen" type="b">
<default>false</default>
<summary>Disable lock screen</summary>
<description>
Prevent the user to lock his screen.
</description>
</key>
<key name="disable-application-handlers" type="b">
<default>false</default>
<summary>Disable URL and MIME type handlers</summary>
<description>
Prevent running any URL or MIME type handler applications.
</description>
</key>
<key name="disable-log-out" type="b">
<default>false</default>
<summary>Disable log out</summary>
<description>
Prevent the user from logging out.
</description>
</key>
<key name="user-administration-disabled" type="b">
<default>false</default>
<summary>Disable user administration</summary>
<description>
Stop the user from modifying user accounts. By default, we allow adding
and removing users, as well as changing other users settings.
</description>
</key>
<key name="mount-removable-storage-devices-as-read-only" type="b">
<default>false</default>
<summary>Mount removable storage devices as read-only</summary>
<description>
Prevent users from writing or modifying files on removable storage
devices (i.e. flash disks, mobile phones, cameras).
</description>
</key>
<key name="disable-show-password" type="b">
<default>false</default>
<summary>Disable password showing</summary>
<description>
Disable the "Show Password" menu item in password entries.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,35 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.media-handling" path="/org/gnome/desktop/media-handling/">
<key name="automount" type="b">
<default>true</default>
<summary>Whether to automatically mount media</summary>
<description>If set to true, then Nautilus will automatically mount media such as user-visible hard disks and removable media on start-up and media insertion.</description>
</key>
<key name="automount-open" type="b">
<default>true</default>
<summary>Whether to automatically open a folder for automounted media</summary>
<description>If set to true, then Nautilus will automatically open a folder when media is automounted. This only applies to media where no known x-content/* type was detected; for media where a known x-content type is detected, the user configurable action will be taken instead.</description>
</key>
<key name="autorun-never" type="b">
<default>true</default>
<summary>Never prompt or autorun/autostart programs when media are inserted</summary>
<description>If set to true, then Nautilus will never prompt nor autorun/autostart programs when a medium is inserted.</description>
</key>
<key name="autorun-x-content-start-app" type="as">
<default>[ 'x-content/unix-software', 'x-content/ostree-repository' ]</default>
<summary>List of x-content/* types where the preferred application will be launched</summary>
<description>List of x-content/* types for which the user have chosen to start an application in the preference capplet. The preferred application for the given type will be started on insertion on media matching these types.</description>
</key>
<key name="autorun-x-content-ignore" type="as">
<default>[]</default>
<summary>List of x-content/* types set to “Do Nothing”</summary>
<description>List of x-content/* types for which the user have chosen “Do Nothing” in the preference capplet. No prompt will be shown nor will any matching application be started on insertion of media matching these types.</description>
</key>
<key name="autorun-x-content-open-folder" type="as">
<default>[]</default>
<summary>List of x-content/* types set to “Open Folder”</summary>
<description>List of x-content/* types for which the user have chosen “Open Folder” in the preferences capplet. A folder window will be opened on insertion of media matching these types.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,88 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.notifications" path="/org/gnome/desktop/notifications/">
<key name="show-banners" type="b">
<default>true</default>
<summary>Show notification banners</summary>
<description>
Whether notification banners are visible for application notifications.
</description>
</key>
<key name="show-in-lock-screen" type="b">
<default>true</default>
<summary>Show notifications in the lock screen</summary>
<description>
Whether notifications are shown in the lock screen or not.
</description>
</key>
<!-- Temporary hack until GSettingsList lands -->
<key name="application-children" type="as">
<default>[]</default>
<summary />
<description />
</key>
</schema>
<schema id="org.gnome.desktop.notifications.application">
<key name="application-id" type="s">
<default>''</default>
<summary>Application ID</summary>
<description>
The application that this policy is for.
</description>
</key>
<key name="enable" type="b">
<default>true</default>
<summary>Enable notifications</summary>
<description>
Whether notifications are globally enabled for this application.
</description>
</key>
<key name="enable-sound-alerts" type="b">
<default>true</default>
<summary>Enable sound alerts</summary>
<description>
Whether notifications should be accompanied by sound alerts.
</description>
</key>
<key name="show-banners" type="b">
<default>true</default>
<summary>Show notification banners</summary>
<description>
Whether notification banners for this application are shown or not. Does not
affect clicking on message tray buttons.
</description>
</key>
<key name="force-expanded" type="b">
<default>false</default>
<summary>Force automatic expanding of banners</summary>
<description>
Whether notifications from this application are expanded automatically when in banner mode.
</description>
</key>
<key name="show-in-lock-screen" type="b">
<default>true</default>
<summary>Show in the lock screen</summary>
<description>
Whether notifications from this application are shown when the screen is locked.
</description>
</key>
<key name="details-in-lock-screen" type="b">
<default>false</default>
<summary>Show details in the lock screen</summary>
<description>
Whether the summary and body of notifications from this application will be
visible in the locked screen.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,288 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.peripherals" path="/org/gnome/desktop/peripherals/">
<child name="touchpad" schema="org.gnome.desktop.peripherals.touchpad"/>
<child name="keyboard" schema="org.gnome.desktop.peripherals.keyboard"/>
<child name="mouse" schema="org.gnome.desktop.peripherals.mouse"/>
<child name="trackball" schema="org.gnome.desktop.peripherals.trackball"/>
<child name="pointingstick" schema="org.gnome.desktop.peripherals.pointingstick"/>
<child name="tablet" schema="org.gnome.desktop.peripherals.tablet"/>
<child name="touchscreen" schema="org.gnome.desktop.peripherals.touchscreen"/>
</schema>
<schema id="org.gnome.desktop.peripherals.touchpad" path="/org/gnome/desktop/peripherals/touchpad/">
<key name="edge-scrolling-enabled" type="b">
<default>false</default>
<summary>Whether edge scrolling is enabled</summary>
<description>When enabled, touchpads that support edge scrolling will have that feature enabled.</description>
</key>
<key name="two-finger-scrolling-enabled" type="b">
<default>true</default>
<summary>Whether two-finger scrolling is enabled</summary>
<description>When enabled, touchpads that support two-finger scrolling will have that feature enabled.</description>
</key>
<key name="disable-while-typing" type="b">
<default>true</default>
<summary>Whether to disable the touchpad while typing</summary>
<description>When enabled, touchpads will be disabled while typing on the keyboard.</description>
</key>
<key name="tap-to-click" type="b">
<default>true</default>
<summary>Enable mouse clicks with touchpad</summary>
<description>Set this to TRUE to be able to send mouse clicks by tapping on the touchpad.</description>
</key>
<key name="tap-button-map" enum="org.gnome.desktop.GDesktopTouchpadTapButtonMap">
<default>'default'</default>
<summary>Tap Button Map</summary>
<description>Defines the mapping between the number of fingers and touchpad buttons. The default is to have a 1, 2 and 3 finger tap to map to the left, right and middle button ("lrm"), respectively.</description>
</key>
<key name="tap-and-drag" type="b">
<default>true</default>
<summary>Enable tap-and-drag with touchpad</summary>
<description>Set this to TRUE to be able to start a drag by tapping and immediately moving the finger thats now pressed on the touchpad.</description>
</key>
<key name="tap-and-drag-lock" type="b">
<default>false</default>
<summary>Enable tap-and-drag-lock with touchpad</summary>
<description>Set this to TRUE to lock the dragging process within a short timeout when the finger is lifted on the touchpad and the tap-and-drag setting is enabled.</description>
</key>
<key name="send-events" enum="org.gnome.desktop.GDesktopDeviceSendEvents">
<default>'enabled'</default>
<summary>Touchpad enabled</summary>
<description>Defines the situations in which the touchpad is enabled.</description>
</key>
<key name="left-handed" enum="org.gnome.desktop.GDesktopTouchpadHandedness">
<default>'mouse'</default>
<summary>Touchpad button orientation</summary>
<description>Swap left and right mouse buttons for left-handed mice with “left”, “right” for right-handed, “mouse” to follow the mouse setting.</description>
</key>
<key name="accel-profile" enum="org.gnome.desktop.GDesktopPointerAccelProfile">
<default>'default'</default>
<summary>Acceleration profile</summary>
<description>Acceleration profile used for connected touchpads. The acceleration profile can be set to either default (“default”) which uses the default acceleration profile for each device, flat (“flat”), which accelerates by a device specific constant factor derived from the configured pointer speed, or adaptive (“adaptive”) which adapts the acceleration depending on the mouse movement. If a touchpad doesnt support the configured profile, “default” will be used.</description>
</key>
<key name="speed" type="d">
<default>0</default>
<summary>Pointer speed</summary>
<description>Pointer speed for the touchpad. Accepted values are in the [-1..1] range (from “unaccelerated” to “fast”). A value of 0 is the system default.</description>
<range min="-1" max="1"/>
</key>
<key name="natural-scroll" type="b">
<default>true</default>
<summary>Natural scrolling</summary>
<description>Set this to TRUE to enable natural (reverse) scrolling for touchpads.</description>
</key>
<key name="click-method" enum="org.gnome.desktop.GDesktopTouchpadClickMethod">
<default>'fingers'</default>
<summary>Click method</summary>
<description>How to generate software-emulated buttons, either disabled (“none”), through specific areas (“areas”), number of fingers (“fingers”) or left as hardware default (“default”).</description>
</key>
<key name="middle-click-emulation" type="b">
<default>false</default>
<summary>Emulate middle click</summary>
<description>Set this to TRUE to enable middle click during simultaneous left and right click.</description>
</key>
</schema>
<schema id="org.gnome.desktop.peripherals.keyboard" path="/org/gnome/desktop/peripherals/keyboard/">
<key name="repeat" type="b">
<default>true</default>
<summary>Keyboard repeat</summary>
<description>Set this to TRUE to enable keyboard repeat.</description>
</key>
<key name="repeat-interval" type="u">
<default>30</default>
<summary>Key Repeat Interval</summary>
<description>Delay between repeats in milliseconds.</description>
</key>
<key name="delay" type="u">
<default>500</default>
<summary>Initial Key Repeat Delay</summary>
<description>Initial key repeat delay in milliseconds.</description>
</key>
<key name="remember-numlock-state" type="b">
<default>true</default>
<summary>Remember NumLock state</summary>
<description>When set to true, GNOME will remember the state of the NumLock LED between sessions.</description>
</key>
<key name="numlock-state" type="b">
<default>false</default>
<summary>NumLock state</summary>
<description>The remembered state of the NumLock LED.</description>
</key>
</schema>
<schema id="org.gnome.desktop.peripherals.mouse" path="/org/gnome/desktop/peripherals/mouse/">
<key name="left-handed" type="b">
<default>false</default>
<summary>Mouse button orientation</summary>
<description>Swap left and right mouse buttons for left-handed mice.</description>
</key>
<key name="speed" type="d">
<default>0</default>
<summary>Pointer speed</summary>
<description>Pointer speed for mice. Accepted values are in the [-1..1] range (from “unaccelerated” to “fast”). A value of 0 is the system default.</description>
<range min="-1" max="1"/>
</key>
<key name="natural-scroll" type="b">
<default>false</default>
<summary>Natural scrolling</summary>
<description>Set this to TRUE to enable natural (reverse) scrolling for mice.</description>
</key>
<key name="accel-profile" enum="org.gnome.desktop.GDesktopPointerAccelProfile">
<default>'default'</default>
<summary>Acceleration profile</summary>
<description>Acceleration profile used for connected mice. The acceleration profile can be set to either default (“default”) which uses the default acceleration profile for each device, flat (“flat”), which accelerates by a device specific constant factor derived from the configured pointer speed, or adaptive (“adaptive”) which adapts the acceleration depending on the mouse movement. If a mouse doesnt support the configured profile, “default” will be used.</description>
</key>
<key name="middle-click-emulation" type="b">
<default>false</default>
<summary>Emulate middle click</summary>
<description>Set this to TRUE to enable middle click during simultaneous left and right click.</description>
</key>
<key name="double-click" type="i">
<default>400</default>
<summary>Double click time</summary>
<description>Length of a double click in milliseconds.</description>
</key>
<key name="drag-threshold" type="i">
<default>8</default>
<summary>Drag threshold</summary>
<description>Distance before a drag is started.</description>
</key>
</schema>
<schema id="org.gnome.desktop.peripherals.tablet">
<key name="output" type="as">
<default>["", "", ""]</default>
<summary>Drawing tablet mapping</summary>
<description>EDID information of the output the tablet is mapped to. Must be in the format [vendor, product, serial]. ["","",""] relies on automatic mapping.</description>
</key>
<key name="mapping" enum="org.gnome.desktop.GDesktopTabletMapping">
<default>'absolute'</default>
<summary>Tablet mapping</summary>
<description>How input affects the pointer on the screen</description>
</key>
<key name="area" type="ad">
<default>[0, 0, 0, 0]</default>
<summary>Tablet area</summary>
<description>Dead area padding around the active area, in percentages. Respectively applied to left,right,top and bottom sides.</description>
</key>
<key name="keep-aspect" type="b">
<default>false</default>
<summary>Tablet aspect ratio</summary>
<description>Enable this to restrict the tablet area to match the aspect ratio of the output.</description>
</key>
<key name="left-handed" type="b">
<default>false</default>
<summary>Tablet left-handed mode</summary>
<description>Enable this to allow physically rotating the tablet for left-handed setups</description>
</key>
</schema>
<schema id="org.gnome.desktop.peripherals.tablet.stylus">
<key name="pressure-curve" type="ai">
<default>[0, 0, 100, 100]</default>
<summary>Stylus pressure curve</summary>
<description>Set this to x1, y1 and x2, y2 of the pressure curve applied to the stylus.</description>
</key>
<key name="pressure-range" type="ai">
<default>[0, 100]</default>
<summary>Stylus pressure range</summary>
<description>Set this to the percentage of the physical pressure range that should map to the logical range.</description>
</key>
<key name="eraser-pressure-curve" type="ai">
<default>[0, 0, 100, 100]</default>
<summary>Eraser pressure curve</summary>
<description>Set this to x1, y1 and x2, y2 of the pressure curve applied to the eraser.</description>
</key>
<key name="eraser-pressure-range" type="ai">
<default>[0, 100]</default>
<summary>Eraser pressure range</summary>
<description>Set this to the percentage of the physical pressure range that should map to the logical range.</description>
</key>
<key name="button-action" enum="org.gnome.desktop.GDesktopStylusButtonAction">
<default>'default'</default>
<summary>Button action</summary>
<description>Stylus button action, this button is located along the pen handle.</description>
</key>
<key name="secondary-button-action" enum="org.gnome.desktop.GDesktopStylusButtonAction">
<default>'default'</default>
<summary>Secondary button action</summary>
<description>Secondary stylus button action, this button is located along the pen handle on some styli like the Grip Pen. Other styli like the Airbrush Pen or the Inking Pen only have one button, this setting is ineffective on those.</description>
</key>
<key name="tertiary-button-action" enum="org.gnome.desktop.GDesktopStylusButtonAction">
<default>'default'</default>
<summary>Tertiary button action</summary>
<description>Tertiary stylus button action, this button is located along the pen handle on some styli like the 3D Pen. Other styli like the Grip Pen only have two buttons, this setting is ineffective on those.</description>
</key>
<key type="s" name="button-keybinding">
<default>''</default>
<summary>Key combination for the primary button</summary>
<description>The keyboard shortcut generated when the button is pressed for custom actions.</description>
</key>
<key type="s" name="secondary-button-keybinding">
<default>''</default>
<summary>Key combination for the secondary button</summary>
<description>The keyboard shortcut generated when the button is pressed for custom actions.</description>
</key>
<key type="s" name="tertiary-button-keybinding">
<default>''</default>
<summary>Key combination for the tertiary button</summary>
<description>The keyboard shortcut generated when the button is pressed for custom actions.</description>
</key>
</schema>
<schema id="org.gnome.desktop.peripherals.tablet.pad-button">
<key name="action" enum="org.gnome.desktop.GDesktopPadButtonAction">
<default>'none'</default>
<summary>Pad button action type</summary>
<description>The type of action triggered by the button being pressed.</description>
</key>
<key type="s" name="keybinding">
<default>''</default>
<summary>Key combination for the custom action</summary>
<description>The keyboard shortcut generated when the button is pressed for custom actions.</description>
</key>
</schema>
<schema id="org.gnome.desktop.peripherals.touchscreen">
<key name="output" type="as">
<default>["", "", ""]</default>
<summary>Touchscreen output mapping</summary>
<description>EDID information of the output the touchscreen is mapped to. Must be in the format [vendor, product, serial]. ["","",""] relies on automatic mapping.</description>
</key>
</schema>
<schema id="org.gnome.desktop.peripherals.trackball" path="/org/gnome/desktop/peripherals/trackball/">
<key name="scroll-wheel-emulation-button" type="i">
<default>0</default>
<range min="0" max="24"/>
<summary>Mouse wheel emulation button. 0 to disable the feature.</summary>
</key>
<key name="scroll-wheel-emulation-button-lock" type="b">
<default>false</default>
<summary>Mouse wheel emulation button lock</summary>
<description>Set this to TRUE to enable button locking for the wheel emulation button. If enabled, the first click of the button enables scrolling, the second click disables scrolling again.</description>
</key>
<key name="accel-profile" enum="org.gnome.desktop.GDesktopPointerAccelProfile">
<default>'default'</default>
<summary>Acceleration profile</summary>
<description>Acceleration profile used for the trackball. The acceleration profile can be set to either default (“default”) which uses the default acceleration profile, flat (“flat”), which accelerates by a device specific constant factor derived from the configured speed, or adaptive (“adaptive”) which adapts the acceleration depending on the movement. If the trackball doesnt support the configured profile, “default” will be used.</description>
</key>
<key name="middle-click-emulation" type="b">
<default>false</default>
<summary>Emulate middle click</summary>
<description>Set this to TRUE to enable middle click during simultaneous left and right click.</description>
</key>
</schema>
<schema id="org.gnome.desktop.peripherals.pointingstick" path="/org/gnome/desktop/peripherals/pointingstick/">
<key name="speed" type="d">
<default>0</default>
<summary>Pointer speed</summary>
<description>Pointer speed for pointing sticks. Accepted values are in the [-1..1] range (from “unaccelerated” to “fast”). A value of 0 is the system default.</description>
<range min="-1" max="1"/>
</key>
<key name="accel-profile" enum="org.gnome.desktop.GDesktopPointerAccelProfile">
<default>'default'</default>
<summary>Acceleration profile</summary>
<description>Acceleration profile used for the pointing stick. The acceleration profile can be set to either default (“default”) which uses the default acceleration profile, flat (“flat”), which accelerates by a device specific constant factor derived from the configured speed, or adaptive (“adaptive”) which adapts the acceleration depending on the movement. If the pointing stick doesnt support the configured profile, “default” will be used.</description>
</key>
<key name="scroll-method" enum="org.gnome.desktop.GDesktopPointingStickScrollMethod">
<default>'default'</default>
<summary>Scrolling method</summary>
<description>Scrolling method used for pointing sticks. The scrolling method can be set to either default (“default”) which uses the default method, none (“none”), which disables scrolling, or middle-button (“on-button-down”) which enables scrolling whilst the middle button is held down.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,102 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.privacy" path="/org/gnome/desktop/privacy/">
<key name="hide-identity" type="b">
<default>false</default>
<summary>Controls visibility of personal information</summary>
<description>If set to true, the system will make an effort to
not divulge the users identity on screen or on the network.</description>
</key>
<key name="show-full-name-in-top-bar" type="b">
<default>true</default>
<summary>Show full name in the user menu</summary>
<description>Whether the users full name is shown in the user menu or not.</description>
</key>
<key name="remove-old-trash-files" type="b">
<default>false</default>
<summary>Whether to remove old files from the trash automatically</summary>
<description>If TRUE, automatically remove files from the trash
when they are older than “old-files-age” days.</description>
</key>
<key name="remove-old-temp-files" type="b">
<default>false</default>
<summary>Whether to remove old temporary files automatically</summary>
<description>If TRUE, automatically remove temporary files
when they are older than “old-files-age” days.</description>
</key>
<key name="old-files-age" type="u">
<default>30</default>
<summary>Number of days to keep trash and temporary files</summary>
<description>Consider trash and temporary files old after
this many days.</description>
</key>
<key name="remember-recent-files" type="b">
<default>true</default>
<summary>Whether to remember recently used files</summary>
<description>If FALSE, applications will not remember recently
used files.</description>
</key>
<key name="recent-files-max-age" type="i">
<default>-1</default>
<summary>Number of days to remember recently used files for</summary>
<description>Recently used files will be remembered for this many days.
If set to 0, recent files will not be remembered; if set to -1, they
will be retained indefinitely.</description>
</key>
<key name="remember-app-usage" type="b">
<default>true</default>
<summary>Whether to remember application usage</summary>
<description>If FALSE, application usage will not be monitored
and recorded.</description>
</key>
<key name="send-software-usage-stats" type="b">
<default>false</default>
<summary>Send statistics when applications are removed or installed</summary>
<description>If FALSE, no anonymous installation or removal information will be sent to the vendor.</description>
</key>
<key name="report-technical-problems" type="b">
<default>false</default>
<summary>Send reports of technical problems to the vendor</summary>
<description>If TRUE, anonymized reports will be sent automatically to the vendor.</description>
</key>
<key name="disable-microphone" type="b">
<default>false</default>
<summary>Dont allow applications to access the microphone</summary>
<description>If TRUE, applications should not use the microphone.</description>
</key>
<key name="disable-camera" type="b">
<default>false</default>
<summary>Dont allow applications to access the camera</summary>
<description>If TRUE, applications should not use the camera.</description>
</key>
<key name="disable-sound-output" type="b">
<default>false</default>
<summary>Dont allow applications to output sound</summary>
<description>If TRUE, applications should not make sound.</description>
</key>
<key name="usb-protection" type="b">
<default>true</default>
<summary>Whether to protect USB devices</summary>
<description>If the USBGuard service is present and this setting is
enabled, USB devices will be protected as configured in the
usb-protection-level setting.
</description>
</key>
<key name="usb-protection-level" enum="org.gnome.desktop.GDesktopUsbProtection">
<default>'lockscreen'</default>
<summary>When USB devices should be rejected</summary>
<description>
If set to “lockscreen”, only when the lock screen is present new USB devices will
be rejected; if set to “always”, all new USB devices will always be rejected.
</description>
</key>
<key name="privacy-screen" type="b">
<default>false</default>
<summary>Whether the privacy screen is enabled</summary>
<description>If the underlying hardware has privacy screen support and
this setting is enabled, the panels supporting this technology will be
obscured from lateral view.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,136 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.screensaver" path="/org/gnome/desktop/screensaver/">
<key name="idle-activation-enabled" type="b">
<default>true</default>
<summary>Activate when idle</summary>
<description>
Set this to TRUE to activate the screensaver when the session is idle.
DEPRECATED: This key is deprecated and ignored.
Set org.gnome.desktop.session idle-delay to 0 if you do not want to activate the screensaver.
</description>
</key>
<key name="lock-enabled" type="b">
<default>true</default>
<summary>Lock on activation</summary>
<description>Set this to TRUE to lock the screen when the screensaver goes active.</description>
</key>
<key name="lock-delay" type="u">
<default>0</default>
<summary>Time before locking</summary>
<description>The number of seconds after screensaver activation before locking the screen.</description>
</key>
<key name="show-full-name-in-top-bar" type="b">
<default>true</default>
<summary>Show full name in the lock screen</summary>
<description>Whether the users full name is shown in the lock screen or not. This only affects the screen shield, the name is always shown in the unlock dialog.</description>
</key>
<key name="embedded-keyboard-enabled" type="b">
<default>false</default>
<summary>Allow embedding a keyboard into the window</summary>
<description>
Set this to TRUE to allow embedding a keyboard into the window when trying to unlock. The “keyboard_command” key must be set with the appropriate command.
DEPRECATED: This key is deprecated and ignored.
</description>
</key>
<key name="embedded-keyboard-command" type="s">
<default>''</default>
<summary>Embedded keyboard command</summary>
<description>
The command that will be run, if the “embedded_keyboard_enabled” key is set to TRUE, to embed a keyboard widget into the window. This command should implement an XEMBED plug interface and output a window XID on the standard output.
DEPRECATED: This key is deprecated and ignored.
</description>
</key>
<key name="logout-enabled" type="b">
<default>false</default>
<summary>Allow logout</summary>
<description>
Set this to TRUE to offer an option in the unlock dialog to allow logging out after a delay. The delay is specified in the “logout_delay” key.
DEPRECATED: This key is deprecated and ignored.
</description>
</key>
<key name="logout-delay" type="u">
<default>7200</default>
<summary>Time before logout option</summary>
<description>
The number of seconds after the screensaver activation before a logout option will appear in the unlock dialog. This key has effect only if the “logout_enable” key is set to TRUE.
DEPRECATED: This key is deprecated and ignored
</description>
</key>
<key name="logout-command" type="s">
<default>''</default>
<summary>Logout command</summary>
<description>
The command to invoke when the logout button is clicked. This command should simply log the user out without any interaction. This key has effect only if the “logout_enable” key is set to TRUE.
DEPRECATED: This key is deprecated and ignored.
</description>
</key>
<key name="user-switch-enabled" type="b">
<default>true</default>
<summary>Allow user switching</summary>
<description>Set this to TRUE to offer an option in the unlock dialog to switch to a different user account.</description>
</key>
<key name="status-message-enabled" type="b">
<default>true</default>
<summary>Allow the session status message to be displayed</summary>
<description>
Allow the session status message to be displayed when the screen is locked.
DEPRECATED: This key is deprecated and ignored.
</description>
</key>
<key name="picture-options" enum="org.gnome.desktop.GDesktopBackgroundStyle">
<default>'zoom'</default>
<summary>Picture Options</summary>
<description>
Determines how the image set by wallpaper_filename is rendered.
Possible values are “none”, “wallpaper”, “centered”, “scaled”,
“stretched”, “zoom”, “spanned”.
</description>
</key>
<key name="picture-uri" type="s">
<default>'file:///usr/share/backgrounds/gnome/adwaita-timed.xml'</default>
<summary>Picture URI</summary>
<description>
URI to use for the background image. Note that the backend only supports
local (file://) URIs.
</description>
</key>
<key name="picture-opacity" type="i">
<range min="0" max="100"/>
<default>100</default>
<summary>Picture Opacity</summary>
<description>
Opacity with which to draw the background picture.
</description>
</key>
<key name="primary-color" type="s">
<default>'#023c88'</default>
<summary>Primary Color</summary>
<description>
Left or Top color when drawing gradients, or the solid color.
</description>
</key>
<key name="secondary-color" type="s">
<default>'#5789ca'</default>
<summary>Secondary Color</summary>
<description>
Right or Bottom color when drawing gradients, not used for solid color.
</description>
</key>
<key name="color-shading-type" enum="org.gnome.desktop.GDesktopBackgroundShading">
<default>'solid'</default>
<summary>Color Shading Type</summary>
<description>
How to shade the background color. Possible values are “horizontal”,
“vertical”, and “solid”.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,52 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.search-providers" path="/org/gnome/desktop/search-providers/">
<key name="disable-external" type="b">
<default>false</default>
<summary>Disable all external search providers</summary>
<description>
Set to true to disable all external search provider programs,
whether or not they are independently disabled or enabled.
External search providers are installed by applications in
$XDG_DATA_DIR/gnome-shell/search-providers.
</description>
</key>
<key name="disabled" type="as">
<default>[]</default>
<summary>
List of desktop file IDs for which the associated default-enabled search provider
should be disabled
</summary>
<description>
Results for applications contained in this list will not be displayed
when searching.
</description>
</key>
<key name="enabled" type="as">
<default>[]</default>
<summary>
List of desktop file IDs for which the associated default-disabled search provider
should be enabled
</summary>
<description>
Results for applications contained in this list will be displayed
when searching.
</description>
</key>
<key name="sort-order" type="as">
<default>['org.gnome.Settings.desktop', 'org.gnome.Contacts.desktop', 'org.gnome.Nautilus.desktop']</default>
<summary>List of desktop file IDs for search providers sort order</summary>
<description>
Results for applications contained in this list will be displayed in
the specified order.
Results for applications not specified in this list will be displayed
last, sorted alphabetically.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,16 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.session" path="/org/gnome/desktop/session/">
<key name="idle-delay" type="u">
<default>300</default>
<summary>Time before session is considered idle</summary>
<description>The number of seconds of inactivity before the session is considered idle.</description>
</key>
<key name="session-name" type="s">
<default>"gnome"</default>
<summary>Session type</summary>
<description>The name of the session to use. Known value is
“gnome”.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,25 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.sound" path="/org/gnome/desktop/sound/">
<key name="event-sounds" type="b">
<default>true</default>
<summary>Sounds for events</summary>
<description>Whether to play sounds on user events.</description>
</key>
<key name="theme-name" type="s">
<default>'freedesktop'</default>
<summary>Sound theme name</summary>
<description>The XDG sound theme to use for event sounds.</description>
</key>
<key name="input-feedback-sounds" type="b">
<default>false</default>
<summary>Input feedback sounds</summary>
<description>Whether to play sounds on input events.</description>
</key>
<key type="b" name="allow-volume-above-100-percent">
<default>false</default>
<summary>Allow volume above 100%</summary>
<description>Whether volume can be set above 100%, using software amplification.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,13 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.thumbnail-cache" path="/org/gnome/desktop/thumbnail-cache/">
<key name="maximum-age" type="i">
<default>180</default>
<description>Maximum age for thumbnails in the cache, in days. Set to -1 to disable cleaning.</description>
</key>
<key name="maximum-size" type="i">
<default>512</default>
<description>Maximum size of the thumbnail cache, in megabytes. Set to -1 to disable cleaning.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,25 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.thumbnailers" path="/org/gnome/desktop/thumbnailers/">
<key name="disable-all" type="b">
<default>false</default>
<summary>Disable all external thumbnailers</summary>
<description>
Set to true to disable all external thumbnailer programs,
independent on whether they are independently disabled/enabled.
</description>
</key>
<key name="disable" type="as">
<default>[]</default>
<summary>
List of mime-types for which external thumbnailer
programs will be disabled
</summary>
<description>
Thumbnails will not be created for files whose mime-type is
contained in the list.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,347 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.wm.keybindings"
path="/org/gnome/desktop/wm/keybindings/">
<key name="switch-to-workspace-1" type="as">
<default><![CDATA[['<Super>Home']]]></default>
<summary>Switch to workspace 1</summary>
</key>
<key name="switch-to-workspace-2" type="as">
<default>[]</default>
<summary>Switch to workspace 2</summary>
</key>
<key name="switch-to-workspace-3" type="as">
<default>[]</default>
<summary>Switch to workspace 3</summary>
</key>
<key name="switch-to-workspace-4" type="as">
<default>[]</default>
<summary>Switch to workspace 4</summary>
</key>
<key name="switch-to-workspace-5" type="as">
<default>[]</default>
<summary>Switch to workspace 5</summary>
</key>
<key name="switch-to-workspace-6" type="as">
<default>[]</default>
<summary>Switch to workspace 6</summary>
</key>
<key name="switch-to-workspace-7" type="as">
<default>[]</default>
<summary>Switch to workspace 7</summary>
</key>
<key name="switch-to-workspace-8" type="as">
<default>[]</default>
<summary>Switch to workspace 8</summary>
</key>
<key name="switch-to-workspace-9" type="as">
<default>[]</default>
<summary>Switch to workspace 9</summary>
</key>
<key name="switch-to-workspace-10" type="as">
<default>[]</default>
<summary>Switch to workspace 10</summary>
</key>
<key name="switch-to-workspace-11" type="as">
<default>[]</default>
<summary>Switch to workspace 11</summary>
</key>
<key name="switch-to-workspace-12" type="as">
<default>[]</default>
<summary>Switch to workspace 12</summary>
</key>
<key name="switch-to-workspace-left" type="as">
<default><![CDATA[['<Super>Page_Up','<Super><Alt>Left','<Control><Alt>Left']]]></default>
<summary>Switch to workspace left</summary>
</key>
<key name="switch-to-workspace-right" type="as">
<default><![CDATA[['<Super>Page_Down','<Super><Alt>Right','<Control><Alt>Right']]]></default>
<summary>Switch to workspace right</summary>
</key>
<key name="switch-to-workspace-up" type="as">
<default><![CDATA[['<Control><Alt>Up']]]></default>
<summary>Switch to workspace above</summary>
</key>
<key name="switch-to-workspace-down" type="as">
<default><![CDATA[['<Control><Alt>Down']]]></default>
<summary>Switch to workspace below</summary>
</key>
<key name="switch-to-workspace-last" type="as">
<default><![CDATA[['<Super>End']]]></default>
<summary>Switch to last workspace</summary>
</key>
<key name="switch-group" type="as">
<default><![CDATA[['<Super>Above_Tab','<Alt>Above_Tab']]]></default>
<summary>Switch windows of an application</summary>
</key>
<key name="switch-group-backward" type="as">
<default><![CDATA[['<Shift><Super>Above_Tab','<Shift><Alt>Above_Tab']]]></default>
<summary>Reverse switch windows of an application</summary>
</key>
<key name="switch-applications" type="as">
<default><![CDATA[['<Super>Tab','<Alt>Tab']]]></default>
<summary>Switch applications</summary>
</key>
<key name="switch-applications-backward" type="as">
<default><![CDATA[['<Shift><Super>Tab','<Shift><Alt>Tab']]]></default>
<summary>Reverse switch applications</summary>
</key>
<key name="switch-windows" type="as">
<default>[]</default>
<summary>Switch windows</summary>
</key>
<key name="switch-windows-backward" type="as">
<default>[]</default>
<summary>Reverse switch windows</summary>
</key>
<key name="switch-panels" type="as">
<default><![CDATA[['<Control><Alt>Tab']]]></default>
<summary>Switch system controls</summary>
</key>
<key name="switch-panels-backward" type="as">
<default><![CDATA[['<Shift><Control><Alt>Tab']]]></default>
<summary>Reverse switch system controls</summary>
</key>
<key name="cycle-group" type="as">
<default><![CDATA[['<Alt>F6']]]></default>
<summary>Switch windows of an app directly</summary>
</key>
<key name="cycle-group-backward" type="as">
<default><![CDATA[['<Shift><Alt>F6']]]></default>
<summary>Reverse switch windows of an app directly</summary>
</key>
<key name="cycle-windows" type="as">
<default><![CDATA[['<Alt>Escape']]]></default>
<summary>Switch windows directly</summary>
</key>
<key name="cycle-windows-backward" type="as">
<default><![CDATA[['<Shift><Alt>Escape']]]></default>
<summary>Reverse switch windows directly</summary>
</key>
<key name="cycle-panels" type="as">
<default><![CDATA[['<Control><Alt>Escape']]]></default>
<summary>Switch system controls directly</summary>
</key>
<key name="cycle-panels-backward" type="as">
<default><![CDATA[['<Shift><Control><Alt>Escape']]]></default>
<summary>Reverse switch system controls directly</summary>
</key>
<key name="show-desktop" type="as">
<default>[]</default>
<summary>Hide all normal windows</summary>
</key>
<key name="panel-main-menu" type="as">
<default>[]</default>
<summary>DEPRECATED: This key is deprecated and ignored.</summary>
</key>
<key name="panel-run-dialog" type="as">
<default><![CDATA[['<Alt>F2']]]></default>
<summary>Show the run command prompt</summary>
</key>
<key name="set-spew-mark" type="as">
<default>[]</default>
<summary>Dont use</summary>
</key>
<key name="activate-window-menu" type="as">
<default><![CDATA[['<Alt>space']]]></default>
<summary>Activate the window menu</summary>
</key>
<key name="toggle-fullscreen" type="as">
<default>[]</default>
<summary>Toggle fullscreen mode</summary>
</key>
<key name="toggle-maximized" type="as">
<default><![CDATA[['<Alt>F10']]]></default>
<summary>Toggle maximization state</summary>
</key>
<key name="toggle-above" type="as">
<default>[]</default>
<summary>Toggle window always appearing on top</summary>
</key>
<key name="maximize" type="as">
<default><![CDATA[['<Super>Up']]]></default>
<summary>Maximize window</summary>
</key>
<key name="unmaximize" type="as">
<default><![CDATA[['<Super>Down','<Alt>F5']]]></default>
<summary>Restore window</summary>
</key>
<key name="minimize" type="as">
<default><![CDATA[['<Super>h']]]></default>
<summary>Minimize window</summary>
</key>
<key name="close" type="as">
<default><![CDATA[['<Alt>F4']]]></default>
<summary>Close window</summary>
</key>
<key name="begin-move" type="as">
<default><![CDATA[['<Alt>F7']]]></default>
<summary>Move window</summary>
</key>
<key name="begin-resize" type="as">
<default><![CDATA[['<Alt>F8']]]></default>
<summary>Resize window</summary>
</key>
<key name="toggle-on-all-workspaces" type="as">
<default>[]</default>
<summary>Toggle window on all workspaces or one</summary>
</key>
<key name="move-to-workspace-1" type="as">
<default><![CDATA[['<Super><Shift>Home']]]></default>
<summary>Move window to workspace 1</summary>
</key>
<key name="move-to-workspace-2" type="as">
<default>[]</default>
<summary>Move window to workspace 2</summary>
</key>
<key name="move-to-workspace-3" type="as">
<default>[]</default>
<summary>Move window to workspace 3</summary>
</key>
<key name="move-to-workspace-4" type="as">
<default>[]</default>
<summary>Move window to workspace 4</summary>
</key>
<key name="move-to-workspace-5" type="as">
<default>[]</default>
<summary>Move window to workspace 5</summary>
</key>
<key name="move-to-workspace-6" type="as">
<default>[]</default>
<summary>Move window to workspace 6</summary>
</key>
<key name="move-to-workspace-7" type="as">
<default>[]</default>
<summary>Move window to workspace 7</summary>
</key>
<key name="move-to-workspace-8" type="as">
<default>[]</default>
<summary>Move window to workspace 8</summary>
</key>
<key name="move-to-workspace-9" type="as">
<default>[]</default>
<summary>Move window to workspace 9</summary>
</key>
<key name="move-to-workspace-10" type="as">
<default>[]</default>
<summary>Move window to workspace 10</summary>
</key>
<key name="move-to-workspace-11" type="as">
<default>[]</default>
<summary>Move window to workspace 11</summary>
</key>
<key name="move-to-workspace-12" type="as">
<default>[]</default>
<summary>Move window to workspace 12</summary>
</key>
<key name="move-to-workspace-last" type="as">
<default><![CDATA[['<Super><Shift>End']]]></default>
<summary>Move window to last workspace</summary>
</key>
<key name="move-to-workspace-left" type="as">
<default><![CDATA[['<Super><Shift>Page_Up','<Super><Shift><Alt>Left','<Control><Shift><Alt>Left']]]></default>
<summary>Move window one workspace to the left</summary>
</key>
<key name="move-to-workspace-right" type="as">
<default><![CDATA[['<Super><Shift>Page_Down','<Super><Shift><Alt>Right','<Control><Shift><Alt>Right']]]></default>
<summary>Move window one workspace to the right</summary>
</key>
<key name="move-to-workspace-up" type="as">
<default><![CDATA[['<Control><Shift><Alt>Up']]]></default>
<summary>Move window one workspace up</summary>
</key>
<key name="move-to-workspace-down" type="as">
<default><![CDATA[['<Control><Shift><Alt>Down']]]></default>
<summary>Move window one workspace down</summary>
</key>
<key name="move-to-monitor-left" type="as">
<default><![CDATA[['<Super><Shift>Left']]]></default>
<summary>Move window to the next monitor on the left</summary>
</key>
<key name="move-to-monitor-right" type="as">
<default><![CDATA[['<Super><Shift>Right']]]></default>
<summary>Move window to the next monitor on the right</summary>
</key>
<key name="move-to-monitor-up" type="as">
<default><![CDATA[['<Super><Shift>Up']]]></default>
<summary>Move window to the next monitor above</summary>
</key>
<key name="move-to-monitor-down" type="as">
<default><![CDATA[['<Super><Shift>Down']]]></default>
<summary>Move window to the next monitor below</summary>
</key>
<key name="raise-or-lower" type="as">
<default>[]</default>
<summary>Raise window if covered, otherwise lower it</summary>
</key>
<key name="raise" type="as">
<default>[]</default>
<summary>Raise window above other windows</summary>
</key>
<key name="lower" type="as">
<default>[]</default>
<summary>Lower window below other windows</summary>
</key>
<key name="maximize-vertically" type="as">
<default>[]</default>
<summary>Maximize window vertically</summary>
</key>
<key name="maximize-horizontally" type="as">
<default>[]</default>
<summary>Maximize window horizontally</summary>
</key>
<key name="move-to-corner-nw" type="as">
<default>[]</default>
<summary>Move window to top left corner</summary>
</key>
<key name="move-to-corner-ne" type="as">
<default>[]</default>
<summary>Move window to top right corner</summary>
</key>
<key name="move-to-corner-sw" type="as">
<default>[]</default>
<summary>Move window to bottom left corner</summary>
</key>
<key name="move-to-corner-se" type="as">
<default>[]</default>
<summary>Move window to bottom right corner</summary>
</key>
<key name="move-to-side-n" type="as">
<default>[]</default>
<summary>Move window to top edge of screen</summary>
</key>
<key name="move-to-side-s" type="as">
<default>[]</default>
<summary>Move window to bottom edge of screen</summary>
</key>
<key name="move-to-side-e" type="as">
<default>[]</default>
<summary>Move window to right side of screen</summary>
</key>
<key name="move-to-side-w" type="as">
<default>[]</default>
<summary>Move window to left side of screen</summary>
</key>
<key name="move-to-center" type="as">
<default>[]</default>
<summary>Move window to center of screen</summary>
</key>
<key name="switch-input-source" type="as">
<default><![CDATA[['<Super>space','XF86Keyboard']]]></default>
<summary>Switch input source</summary>
<description>Binding to select the next input source</description>
</key>
<key name="switch-input-source-backward" type="as">
<default><![CDATA[['<Shift><Super>space','<Shift>XF86Keyboard']]]></default>
<summary>Switch input source backward</summary>
<description>Binding to select the previous input source</description>
</key>
<key name="always-on-top" type="as">
<default>[]</default>
<summary>Toggle window to be always on top</summary>
<description>Set or unset window to appear always on top</description>
</key>
</schema>
</schemalist>

View File

@@ -1,274 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.desktop.wm.preferences"
path="/org/gnome/desktop/wm/preferences/">
<key name="mouse-button-modifier" type="s">
<default><![CDATA['<Super>']]></default>
<summary>Modifier to use for modified window click actions</summary>
<description>
Clicking a window while holding down this modifier key will move the
window (left click), resize the window (middle click), or show the
window menu (right click). The middle and right click operations may
be swapped using the “resize-with-right-button” key. Modifier is
expressed as <![CDATA[“<Alt>”]]> or <![CDATA[“<Super>”]]> for example.
</description>
</key>
<key name="resize-with-right-button" type="b">
<default>false</default>
<summary>Whether to resize with the right button</summary>
<description>
Set this to true to resize with the right button and show a menu with
the middle button while holding down the key given in
“mouse-button-modifier”; set it to false to make it work
the opposite way around.
</description>
</key>
<key name="button-layout" type="s">
<default>'appmenu:close'</default>
<summary>Arrangement of buttons on the titlebar</summary>
<description>
Arrangement of buttons on the titlebar. The value should be a string,
such as “menu:minimize,maximize,spacer,close”; the colon separates
the left corner of the window from the right corner, and the button
names are comma-separated. Duplicate buttons are not allowed. Unknown
button names are silently ignored so that buttons can be added in
future metacity versions without breaking older versions. A special
spacer tag can be used to insert some space between
two adjacent buttons.
</description>
</key>
<key name="focus-mode" enum="org.gnome.desktop.GDesktopFocusMode">
<default>'click'</default>
<summary>Window focus mode</summary>
<description>
The window focus mode indicates how windows are activated. It has
three possible values; “click” means windows must be clicked in order
to focus them, “sloppy” means windows are focused when the mouse enters
the window, and “mouse” means windows are focused when the mouse enters
the window and unfocused when the mouse leaves the window.
</description>
</key>
<key name="focus-new-windows"
enum="org.gnome.desktop.GDesktopFocusNewWindows">
<default>'smart'</default>
<summary>Control how new windows get focus</summary>
<description>
This option provides additional control over how newly created windows
get focus. It has two possible values; “smart” applies the users
normal focus mode, and “strict” results in new windows not being given
focus automatically.
</description>
</key>
<key name="raise-on-click" type="b">
<default>true</default>
<summary>
Whether windows should be raised when their client area is clicked
</summary>
<description>
The default, true, indicates that a window will be raised
whenever its client area or its frame is clicked.
Setting this to false means that a window will not be raised
if it is clicked on the client area. To raise it, one can
click anywhere in the windows frame, or Super-click on any
part of the window. This mode is useful if one uses many overlapping
windows.
</description>
</key>
<key name="action-double-click-titlebar"
enum="org.gnome.desktop.GDesktopTitlebarAction">
<default>'toggle-maximize'</default>
<summary>Action on title bar double-click</summary>
<description>
This option determines the effects of double-clicking on the title bar.
Current valid options are “toggle-maximize” which will
maximize/unmaximize the window, “toggle-maximize-horizontally” and
“toggle-maximize-vertically” which will maximize/unmaximize the window
in that direction only, “minimize” which will minimize the window,
“menu” which will display the window menu, “lower” which will put the
window behind all the others, and “none” which will not do anything.
</description>
<!-- For compatibility with GConf strings (Metacity 2.30) -->
<aliases>
<alias value="toggle_maximize" target="toggle-maximize"/>
<alias value="toggle_maximize_horizontally"
target="toggle-maximize-horizontally"/>
<alias value="toggle_maximize_vertically"
target="toggle-maximize-vertically"/>
</aliases>
</key>
<key name="action-middle-click-titlebar"
enum="org.gnome.desktop.GDesktopTitlebarAction">
<default>'none'</default>
<summary>Action on title bar middle-click</summary>
<description>
This option determines the effects of middle-clicking on the title bar.
Current valid options are “toggle-maximize” which will
maximize/unmaximize the window,
“toggle-maximize-horizontally” and “toggle-maximize-vertically”
which will maximize/unmaximize the window in that direction only,
“minimize” which will minimize the window, “menu” which will display
the window menu, “lower” which will put the window behind all the
others, and “none” which will not do anything.
</description>
<!-- For compatibility with GConf strings (Metacity 2.30) -->
<aliases>
<alias value="toggle_maximize" target="toggle-maximize"/>
<alias value="toggle_maximize_horizontally"
target="toggle-maximize-horizontally"/>
<alias value="toggle_maximize_vertically"
target="toggle-maximize-vertically"/>
</aliases>
</key>
<key name="action-right-click-titlebar"
enum="org.gnome.desktop.GDesktopTitlebarAction">
<default>'menu'</default>
<summary>Action on title bar right-click</summary>
<description>
This option determines the effects of right-clicking on the title bar.
Current valid options are “toggle-maximize” which will
maximize/unmaximize the window, “toggle-maximize-horizontally” and
“toggle-maximize-vertically” which will maximize/unmaximize
the window in that direction only, “minimize” which will minimize
the window, “menu” which will display the window menu, “lower” which
will put the window behind all the others, and “none” which will not do
anything.
</description>
<!-- For compatibility with GConf strings (Metacity 2.30) -->
<aliases>
<alias value="toggle_maximize" target="toggle-maximize"/>
<alias value="toggle_maximize_horizontally"
target="toggle-maximize-horizontally"/>
<alias value="toggle_maximize_vertically"
target="toggle-maximize-vertically"/>
</aliases>
</key>
<key name="auto-raise" type="b">
<default>false</default>
<summary>Automatically raises the focused window</summary>
<description>
If set to true, and the focus mode is either “sloppy” or “mouse”
then the focused window will be automatically raised after a delay
specified by the auto-raise-delay key. This is not related to clicking
on a window to raise it, nor to entering a window during drag-and-drop.
</description>
</key>
<key name="auto-raise-delay" type="i">
<range min="0" max="10000"/>
<default>500</default>
<summary>Delay in milliseconds for the auto raise option</summary>
<description>
The time delay before raising a window if auto-raise is set to true.
The delay is given in thousandths of a second.
</description>
</key>
<key name="theme" type="s">
<default>'Adwaita'</default>
<summary>Current theme</summary>
<description>
The theme determines the appearance of window borders, titlebar,
and so forth.
DEPRECATED: This key is deprecated and ignored.
</description>
</key>
<key name="titlebar-uses-system-font" type="b">
<default>true</default>
<summary>Use standard system font in window titles</summary>
<description>
If true, ignore the titlebar-font option, and use the standard
application font for window titles.
</description>
</key>
<key name="titlebar-font" type="s">
<default>'Cantarell Bold 11'</default>
<summary>Window title font</summary>
<description>
A font description string describing a font for window titlebars.
The size from the description will only be used if the
titlebar-font-size option is set to 0. Also, this option is disabled
if the titlebar-uses-desktop-font option is set to true.
</description>
</key>
<key name="num-workspaces" type="i">
<default>4</default>
<range min="1" max="36"/>
<summary>Number of workspaces</summary>
<description>
Number of workspaces. Must be more than zero, and has a fixed maximum
to prevent making the desktop unusable by accidentally asking
for too many workspaces.
</description>
</key>
<key name="audible-bell" type="b">
<default>true</default>
<summary>System Bell is Audible</summary>
<description>
Determines whether applications or the system can generate audible
“beeps”; may be used in conjunction with “visual bell”
to allow silent “beeps”.
</description>
</key>
<key name="visual-bell" type="b">
<default>false</default>
<summary>Enable Visual Bell</summary>
<description>
Turns on a visual indication when an application or the system issues
a “bell” or “beep”; useful for the hard-of-hearing and for use
in noisy environments.
</description>
</key>
<key name="visual-bell-type"
enum="org.gnome.desktop.GDesktopVisualBellType">
<default>'fullscreen-flash'</default>
<summary>Visual Bell Type</summary>
<description>
Tells the WM how to implement the visual indication that the
system bell or another application “bell” indicator has been rung.
Currently there are two valid values, “fullscreen-flash”, which
causes a fullscreen white-black flash, and “frame-flash” which
causes the titlebar of the application which sent the bell signal
to flash.
If the application which sent the bell is unknown (as is usually
the case for the default “system beep”), the currently focused
windows titlebar is flashed.
</description>
<!-- For compatibility with GConf strings (Metacity 2.30) -->
<aliases>
<alias value="fullscreen" target="fullscreen-flash"/>
<alias value="frame_flash" target="frame-flash"/>
</aliases>
</key>
<key name="disable-workarounds" type="b">
<default>false</default>
<summary>
Disable misfeatures that are required by old or broken applications
</summary>
<description>
Some applications disregard specifications in ways that result in
window manager misfeatures. This option puts the WM in a
rigorously correct mode, which gives a more consistent
user interface, provided one does not need to run any
misbehaving applications.
</description>
</key>
<key name="workspace-names" type="as">
<default>[]</default>
<summary>The names of the workspaces</summary>
<description>
Defines the names that should be assigned to workspaces.
If the list is too long for the current number of workspaces,
names in excess will be ignored. If the list is too short, or
includes empty names, missing values will be replaced with the
default (“Workspace N”).
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,45 +0,0 @@
<schemalist gettext-domain="gnome-screenshot">
<enum id="org.gnome.gnome-screenshot.file-types">
<value nick="bmp" value="0"/>
<value nick="jpg" value="1"/>
<value nick="png" value="2"/>
<value nick="tiff" value="3"/>
</enum>
<schema id="org.gnome.gnome-screenshot" path="/org/gnome/gnome-screenshot/" gettext-domain="gnome-screenshot">
<key name="take-window-shot" type="b">
<default>false</default>
<summary>Window-specific screenshot (deprecated)</summary>
<description>Grab just the current window, rather than the whole desktop. This key has been deprecated and it is no longer in use.</description>
</key>
<key name="delay" type="i">
<default>0</default>
<summary>Screenshot delay</summary>
<description>The number of seconds to wait before taking the screenshot.</description>
</key>
<key name="auto-save-directory" type="s">
<default>''</default>
<summary>Screenshot directory</summary>
<description>The directory where the screenshots will be saved by default.</description>
</key>
<key name="last-save-directory" type="s">
<default>''</default>
<summary>Last save directory</summary>
<description>The last directory a screenshot was saved in interactive mode.</description>
</key>
<key name="include-pointer" type="b">
<default>false</default>
<summary>Include Pointer</summary>
<description>Include the pointer in the screenshot</description>
</key>
<key name="include-icc-profile" type="b">
<default>true</default>
<summary>Include ICC Profile</summary>
<description>Include the ICC profile of the target in the screenshot file</description>
</key>
<key name="default-file-type" enum="org.gnome.gnome-screenshot.file-types">
<default>'png'</default>
<summary>Default file type extension</summary>
<description>The default file type extension for screenshots.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,31 +0,0 @@
<?xml version="1.0"?>
<schemalist>
<schema gettext-domain="libgnomekbd" id="org.gnome.libgnomekbd.desktop" path="/org/gnome/libgnomekbd/desktop/">
<key name="default-group" type="i">
<range min="-1" max="4"/>
<default>-1</default>
<summary>Default group, assigned on window creation</summary>
<description>Default group, assigned on window creation</description>
</key>
<key name="group-per-window" type="b">
<default>false</default>
<summary>Keep and manage separate group per window</summary>
<description>Keep and manage separate group per window</description>
</key>
<key name="handle-indicators" type="b">
<default>false</default>
<summary>Save/restore indicators together with layout groups</summary>
<description>Save/restore indicators together with layout groups</description>
</key>
<key name="layout-names-as-group-names" type="b">
<default>true</default>
<summary>Show layout names instead of group names</summary>
<description>Show layout names instead of group names (only for versions of XFree supporting multiple layouts)</description>
</key>
<key name="load-extra-items" type="b">
<default>false</default>
<summary>Load extra configuration items</summary>
<description>Load exotic, rarely used layouts and options</description>
</key>
</schema>
</schemalist>

View File

@@ -1,67 +0,0 @@
<?xml version="1.0"?>
<schemalist>
<schema gettext-domain="libgnomekbd" id="org.gnome.libgnomekbd" path="/org/gnome/libgnomekbd/">
<child name="preview" schema="org.gnome.libgnomekbd.preview"/>
<child name="indicator" schema="org.gnome.libgnomekbd.indicator"/>
</schema>
<schema gettext-domain="libgnomekbd" id="org.gnome.libgnomekbd.preview" path="/org/gnome/libgnomekbd/preview/">
<key name="x" type="i">
<range min="-1" max="65535"/>
<default>-1</default>
<summary>The Keyboard Preview, X offset</summary>
<description>The Keyboard Preview, X offset</description>
</key>
<key name="y" type="i">
<range min="-1" max="65535"/>
<default>-1</default>
<summary>The Keyboard Preview, Y offset</summary>
<description>The Keyboard Preview, Y offset</description>
</key>
<key name="width" type="i">
<range min="-1" max="65535"/>
<default>-1</default>
<summary>The Keyboard Preview, width</summary>
<description>The Keyboard Preview, width</description>
</key>
<key name="height" type="i">
<range min="-1" max="65535"/>
<default>-1</default>
<summary>The Keyboard Preview, height</summary>
<description>The Keyboard Preview, height</description>
</key>
</schema>
<schema gettext-domain="libgnomekbd" id="org.gnome.libgnomekbd.indicator" path="/org/gnome/libgnomekbd/indicator/">
<key name="secondary" type="i">
<range min="0" max="15"/>
<default>0</default>
<summary>Secondary groups</summary>
<description>Secondary groups</description>
</key>
<key name="show-flags" type="b">
<default>false</default>
<summary>Show flags in the applet</summary>
<description>Show flags in the applet to indicate the current layout</description>
</key>
<key name="font-family" type="s">
<default>''</default>
<summary>The font family</summary>
<description>The font family for the layout indicator</description>
</key>
<key name="font-size" type="i">
<range min="1" max="65535"/>
<default>10</default>
<summary>The font size</summary>
<description>The font size for the layout indicator</description>
</key>
<key name="foreground-color" type="s">
<default>''</default>
<summary>The foreground color</summary>
<description>The foreground color for the layout indicator</description>
</key>
<key name="background-color" type="s">
<default>''</default>
<summary>The background color</summary>
<description>The background color for the layout indicator</description>
</key>
</schema>
</schemalist>

View File

@@ -1,20 +0,0 @@
<?xml version="1.0"?>
<schemalist>
<schema gettext-domain="libgnomekbd" id="org.gnome.libgnomekbd.keyboard" path="/org/gnome/libgnomekbd/keyboard/">
<key name="model" type="s">
<default>''</default>
<summary>Keyboard model</summary>
<description>keyboard model</description>
</key>
<key name="layouts" type="as">
<default>[]</default>
<summary>Keyboard layout</summary>
<description>keyboard layout</description>
</key>
<key name="options" type="as">
<default>[]</default>
<summary>Keyboard options</summary>
<description>Keyboard options</description>
</key>
</schema>
</schemalist>

View File

@@ -1,264 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<enum id="org.gnome.nautilus.SpeedTradeoff">
<value value="0" nick="always"/>
<value value="1" nick="local-only"/>
<value value="2" nick="never"/>
</enum>
<enum id="org.gnome.nautilus.ClickPolicy">
<value value="0" nick="single"/>
<value value="1" nick="double"/>
</enum>
<enum id="org.gnome.nautilus.DateTimeFormat">
<value value="0" nick="simple"/>
<value value="1" nick="detailed"/>
</enum>
<enum id="org.gnome.nautilus.ActivationChoice">
<value value="0" nick="launch"/>
<value value="1" nick="display"/>
<value value="2" nick="ask"/>
</enum>
<enum id="org.gnome.nautilus.FolderView">
<value value="1" nick="list-view"/>
<value value="2" nick="icon-view"/>
</enum>
<enum id="org.gnome.nautilus.SortOrder">
<!--
When touching this, make sure to keep the values in sync with the
#NautilusFileSortType enum in the `src/nautilus-file.h` code header file.
-->
<value value="0" nick="name"/>
<value value="1" nick="size"/>
<value value="2" nick="type"/>
<value value="3" nick="mtime"/>
<value value="4" nick="atime"/>
<value value="5" nick="btime"/>
<value value="6" nick="starred"/>
</enum>
<enum id="org.gnome.nautilus.GridZoomLevel">
<value value="0" nick="small"/>
<value value="1" nick="small-plus"/>
<value value="2" nick="medium"/>
<value value="3" nick="large"/>
<value value="4" nick="extra-large"/>
</enum>
<enum id="org.gnome.nautilus.ListZoomLevel">
<value value="0" nick="small"/>
<value value="1" nick="medium"/>
<value value="2" nick="large"/>
</enum>
<enum id="org.gnome.nautilus.SearchFilterTimeType">
<value value="0" nick="last_modified"/>
<value value="1" nick="last_used"/>
<value value="2" nick="created"/>
</enum>
<enum id="org.gnome.nautilus.CompressionFormat">
<value value="0" nick="zip"/>
<value value="1" nick="tar.xz"/>
<value value="2" nick="7z"/>
<value value="3" nick="encrypted_zip"/>
</enum>
<schema path="/org/gnome/nautilus/" id="org.gnome.nautilus" gettext-domain="nautilus">
<child schema="org.gnome.nautilus.preferences" name="preferences"/>
<child schema="org.gnome.nautilus.compression" name="compression"/>
<child schema="org.gnome.nautilus.icon-view" name="icon-view"/>
<child schema="org.gnome.nautilus.list-view" name="list-view"/>
<child schema="org.gnome.nautilus.window-state" name="window-state"/>
</schema>
<schema path="/org/gnome/nautilus/preferences/" id="org.gnome.nautilus.preferences" gettext-domain="nautilus">
<key type="b" name="always-use-location-entry">
<default>false</default>
<summary>Always use the location entry, instead of the pathbar</summary>
<description>If set to true, Files will always use a textual input entry for the location toolbar, instead of the pathbar.</description>
</key>
<key name="recursive-search" enum="org.gnome.nautilus.SpeedTradeoff">
<default>'local-only'</default>
<summary>Where to perform recursive search</summary>
<description>Locations in which Files should search subfolders. Available values are “local-only”, “always”, “never”.</description>
</key>
<key name="search-filter-time-type" enum="org.gnome.nautilus.SearchFilterTimeType">
<default>'last_modified'</default>
<summary>Filter the search dates using either last used or last modified</summary>
<description>Filter the search dates using either last used or last modified.</description>
</key>
<key type="b" name="show-delete-permanently">
<default>false</default>
<summary>Whether to show a context menu item to delete permanently</summary>
<description>If set to true, Files will show a delete permanently context menu item to bypass the Trash.</description>
</key>
<key type="b" name="show-create-link">
<default>false</default>
<summary>Whether to show context menu items to create links from copied or selected files</summary>
<description>If set to true, Files will show context menu items to create links from the copied or selected files.</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 type="b" name="install-mime-activation">
<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 app to handle it.</description>
</key>
<key type="b" name="mouse-use-extra-buttons">
<default>true</default>
<summary>Use extra mouse button events in Files</summary>
<description>For users with mice that have “Forward” and “Back” buttons, this key will determine if any action is taken inside of Files when either is pressed.</description>
</key>
<key type="u" name="mouse-forward-button">
<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 type="u" name="mouse-back-button">
<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 files</summary>
<description>Speed trade-off for when to show a 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 files, just use a generic icon. Despite what the name may suggest, this applies to any previewable file type.</description>
</key>
<key type="t" name="thumbnail-limit">
<default>50</default>
<summary>Maximum image size for thumbnailing</summary>
<description>Images over this size (in megabytes) wont 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="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”, “mtime”, “atime” and “starred”.</description>
</key>
<key type="b" name="default-sort-in-reverse-order">
<default>false</default>
<summary>Reverse sort order in new windows</summary>
<description>If true, files in new windows will be sorted in reverse order. I.e., 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. Possible values are “list-view”, and “icon-view”.</description>
</key>
<key type="b" name="show-hidden-files">
<default>false</default>
<summary>Whether to show hidden files</summary>
<description>This key is deprecated and ignored. The “show-hidden” key from “org.gtk.Settings.FileChooser” is now used instead.</description>
</key>
<key type="b" name="migrated-gtk-settings">
<default>false</default>
<summary>Whether GTK 4 settings migration happened</summary>
<description>Whether settings shared with GtkFileChooser have been migrated from their GTK 3 keys to the GTK 4 ones.</description>
</key>
<key type="b" name="open-folder-on-dnd-hover">
<default>true</default>
<summary>Whether to open the hovered folder after a timeout when drag and drop operation</summary>
<description>If this is set to true, when performing a drag and drop operation the hovered folder will open automatically after a timeout.</description>
</key>
<key type="b" name="fts-enabled">
<default>true</default>
<summary>Whether to have full text search enabled by default when opening a new window/tab</summary>
<description>If set to true, Files will also match the file contents besides the name. This toggles the default active state, which can still be overridden in the search popover</description>
</key>
<key name="date-time-format" enum="org.gnome.nautilus.DateTimeFormat">
<default>'simple'</default>
<summary>How to display file timestamps in the views</summary>
<description>If set to 'simple', Files will show Today and Yesterday with time, otherwise the exact date without time. If set to 'detailed', it will always show the exact date and time.</description>
</key>
</schema>
<schema path="/org/gnome/nautilus/compression/" id="org.gnome.nautilus.compression" gettext-domain="nautilus">
<key name="default-compression-format" enum="org.gnome.nautilus.CompressionFormat">
<default>'zip'</default>
<summary>Default format for compressing files</summary>
<description>The format that will be selected when compressing files.</description>
</key>
</schema>
<schema path="/org/gnome/nautilus/icon-view/" id="org.gnome.nautilus.icon-view" gettext-domain="nautilus">
<key type="as" name="captions">
<default>[ 'none', 'none', 'none' ]</default>
<summary>List of possible captions on icons</summary>
<description>A list of captions below an icon in the icon view. The actual number of captions shown depends on the zoom level. Some possible values are: “size”, “type”, “date_modified”, “owner”, “group”, “permissions”, and “mime_type”.</description>
</key>
<key name="default-zoom-level" enum="org.gnome.nautilus.GridZoomLevel">
<aliases>
<alias value='standard' target='small-plus'/>
<alias value='larger' target='extra-large'/>
<alias value='largest' target='extra-large'/>
</aliases>
<default>'medium'</default>
<summary>Default icon view zoom level</summary>
</key>
</schema>
<schema path="/org/gnome/nautilus/list-view/" id="org.gnome.nautilus.list-view" gettext-domain="nautilus">
<key name="default-zoom-level" enum="org.gnome.nautilus.ListZoomLevel">
<aliases>
<alias value='standard' target='medium'/>
<alias value='larger' target='large'/>
</aliases>
<default>'medium'</default>
<summary>Default list view zoom level</summary>
</key>
<key type="as" name="default-visible-columns">
<default>[ 'name', 'size', 'date_modified' ]</default>
<summary>Columns visible in list view</summary>
</key>
<key type="as" name="default-column-order">
<default>[ 'name', 'size', 'type', 'owner', 'group', 'permissions', 'mime_type', 'where', 'date_modified', 'date_modified_with_time', 'date_accessed', 'date_created', 'recency', 'starred' ]</default>
<summary>Column order in list view</summary>
</key>
<key type="b" name="use-tree-view">
<default>false</default>
<summary>Use tree view</summary>
<description>Whether a tree should be used for list view navigation instead of a flat list.</description>
</key>
</schema>
<schema path="/org/gnome/nautilus/window-state/" id="org.gnome.nautilus.window-state" gettext-domain="nautilus">
<key type="(ii)" name="initial-size">
<default>(890, 550)</default>
<summary>Initial size of the window</summary>
<description>A tuple containing the initial width and height of the app window.</description>
</key>
<key type="b" name="maximized">
<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 type="(ii)" name="initial-size-file-chooser">
<default>(890,550)</default>
<summary>Initial size of the window</summary>
<description>A tuple containing the initial width and height of the app window.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,15 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id="org.gnome.nm-applet.eap" gettext-domain="libnma">
<key name="ignore-ca-cert" type="b">
<default>false</default>
<summary>Ignore CA certificate</summary>
<description>Set this to true to disable warnings about CA certificates in EAP authentication.</description>
</key>
<key name="ignore-phase2-ca-cert" type="b">
<default>false</default>
<summary>Ignore CA certificate</summary>
<description>Set this to true to disable warnings about CA certificates in phase 2 of EAP authentication.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,45 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id="org.gnome.nm-applet" path="/org/gnome/nm-applet/" gettext-domain="nm-applet">
<key name="disable-connected-notifications" type="b">
<default>false</default>
<summary>Disable connected notifications</summary>
<description>Set this to true to disable notifications when connecting to a network.</description>
</key>
<key name="disable-disconnected-notifications" type="b">
<default>false</default>
<summary>Disable disconnected notifications</summary>
<description>Set this to true to disable notifications when disconnecting from a network.</description>
</key>
<key name="disable-vpn-notifications" type="b">
<default>false</default>
<summary>Disable VPN notifications</summary>
<description>Set this to true to disable notifications when connecting to or disconnecting from a VPN.</description>
</key>
<key name="suppress-wireless-networks-available" type="b">
<default>false</default>
<summary>Suppress networks available notifications</summary>
<description>Set this to true to disable notifications when Wi-Fi networks are available.</description>
</key>
<key name="stamp" type="i">
<default>0</default>
<summary>Stamp</summary>
<description>Used to determine whether settings should be migrated to a new version.</description>
</key>
<key name="disable-wifi-create" type="b">
<default>false</default>
<summary>Disable WiFi Create</summary>
<description>Set to true to disable creation of adhoc networks when using the applet.</description>
</key>
<key name="suppress-broadband-unlock-prompt" type="b">
<default>false</default>
<summary>Suppress broadband device unlock prompt</summary>
<description>Set to true to not prompt for PIN/PUK when providing it is required to unlock a broadband device.</description>
</key>
<key name="show-applet" type="b">
<default>true</default>
<summary>Show the applet in notification area</summary>
<description>Set to FALSE to disable displaying the applet in the notification area.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,13 +0,0 @@
<!-- This file is generated by glib-mkenums, do not modify it. This code is licensed under the same license as the containing project. Note that it links to GLib, so must comply with the LGPL linking clauses. -->
<schemalist>
<enum id="org.gnome.system.gvfs.GVfsBackendNetworkDisplayMode">
<value nick="disabled" value="0"/>
<value nick="separate" value="1"/>
<value nick="merged" value="2"/>
</enum>
</schemalist>
<!-- Generated data ends here -->

View File

@@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.system.locale" path="/system/locale/">
<key name="region" type="s">
<default>''</default>
<summary>The locale to use for dates / numbers formats</summary>
<description>
Specify the locale to be used for displaying dates, times and numbers formats.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,25 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.system.location"
path="/org/gnome/system/location/">
<key type="b" name="enabled">
<default>false</default>
<summary>Geolocation services are enabled.</summary>
<description>
If true, applications are allowed to access location information.
</description>
</key>
<key name="max-accuracy-level" enum="org.gnome.desktop.GDesktopLocationAccuracyLevel">
<default>'exact'</default>
<summary>The maximum accuracy level of location.</summary>
<description>
Configures the maximum level of location accuracy applications are
allowed to see. Valid options are “country”, “city”, “neighborhood”,
“street”, and “exact” (typically requires GPS receiver). Please keep in
mind that this only controls what GeoClue will allow applications to see
and they can find users location on their own using network resources
(albeit with street-level accuracy at best).
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,170 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gsettings-desktop-schemas">
<schema id="org.gnome.system.proxy" path="/system/proxy/">
<child name="http" schema="org.gnome.system.proxy.http"/>
<child name="https" schema="org.gnome.system.proxy.https"/>
<child name="ftp" schema="org.gnome.system.proxy.ftp"/>
<child name="socks" schema="org.gnome.system.proxy.socks"/>
<key name="mode" enum="org.gnome.desktop.GDesktopProxyMode">
<default>'none'</default>
<summary>Proxy configuration mode</summary>
<description>
Select the proxy configuration mode. Supported values are “none”,
“manual”, “auto”.
If this is “none”, then proxies are not used.
If it is “auto”, the autoconfiguration URL described by the
“autoconfig-url” key is used.
If it is “manual”, then the proxies described by
“/system/proxy/http”, “/system/proxy/https”,
“/system/proxy/ftp” and “/system/proxy/socks” will be used.
Each of the 4 proxy types is enabled if its “host” key is
non-empty and its “port” key is non-0.
If an http proxy is configured, but an https proxy is not,
then the http proxy is also used for https.
If a SOCKS proxy is configured, it is used for all protocols,
except that the http, https, and ftp proxy settings override
it for those protocols only.
</description>
</key>
<key name="autoconfig-url" type="s">
<default>''</default>
<summary>Automatic proxy configuration URL</summary>
<description>
URL that provides proxy configuration values. When mode is
“auto”, this URL is used to look up proxy information for all
protocols.
</description>
</key>
<key name="ignore-hosts" type="as">
<default>[ 'localhost', '127.0.0.0/8', '::1' ]</default>
<summary>Non-proxy hosts</summary>
<description>
This key contains a list of hosts which are connected to directly,
rather than via the proxy (if it is active). The values can be
hostnames, domains (using an initial wildcard like *.foo.com), IP host
addresses (both IPv4 and IPv6) and network addresses with a netmask
(something like 192.168.0.0/24).
</description>
</key>
<key name="use-same-proxy" type="b">
<default>true</default>
<summary>Use HTTP proxy for all protocols</summary>
<description>
Whether to use the HTTP proxy for all protocols or not.
</description>
</key>
</schema>
<schema id="org.gnome.system.proxy.http" path="/system/proxy/http/">
<key name="enabled" type="b">
<default>false</default>
<summary>Unused; ignore</summary>
<description>
This key is not used; HTTP proxying is enabled when the host
key is non-empty and the port is non-0.
</description>
</key>
<key name="host" type="s">
<default>''</default>
<summary>HTTP proxy host name</summary>
<description>
The machine name to proxy HTTP through.
</description>
</key>
<key name="port" type="i">
<range min="0" max="65535"/>
<default>8080</default>
<summary>HTTP proxy port</summary>
<description>
The port on the machine defined by “/system/proxy/http/host” that you
proxy through.
</description>
</key>
<key name="use-authentication" type="b">
<default>false</default>
<summary>Authenticate proxy server connections</summary>
<description>
If true, then connections to the proxy server require authentication.
The username/password combo is defined by
“/system/proxy/http/authentication-user” and
“/system/proxy/http/authentication-password”.
This applies only to the http proxy; when using a separate
https proxy, there is currently no way to specify that it
should use authentication.
</description>
</key>
<key name="authentication-user" type="s">
<default>''</default>
<summary>HTTP proxy username</summary>
<description>
User name to pass as authentication when doing HTTP proxying.
</description>
</key>
<key name="authentication-password" type="s">
<default>''</default>
<summary>HTTP proxy password</summary>
<description>
Password to pass as authentication when doing HTTP proxying.
</description>
</key>
</schema>
<schema id="org.gnome.system.proxy.https" path="/system/proxy/https/">
<key name="host" type="s">
<default>''</default>
<summary>Secure HTTP proxy host name</summary>
<description>
The machine name to proxy secure HTTP through.
</description>
</key>
<key name="port" type="i">
<range min="0" max="65535"/>
<default>0</default>
<summary>Secure HTTP proxy port</summary>
<description>
The port on the machine defined by “/system/proxy/https/host” that you
proxy through.
</description>
</key>
</schema>
<schema id="org.gnome.system.proxy.ftp" path="/system/proxy/ftp/">
<key name="host" type="s">
<default>''</default>
<summary>FTP proxy host name</summary>
<description>
The machine name to proxy FTP through.
</description>
</key>
<key name="port" type="i">
<range min="0" max="65535"/>
<default>0</default>
<summary>FTP proxy port</summary>
<description>
The port on the machine defined by “/system/proxy/ftp/host” that you
proxy through.
</description>
</key>
</schema>
<schema id="org.gnome.system.proxy.socks" path="/system/proxy/socks/">
<key name="host" type="s">
<default>''</default>
<summary>SOCKS proxy host name</summary>
<description>
The machine name to use as a SOCKS proxy.
</description>
</key>
<key name="port" type="i">
<range min="0" max="65535"/>
<default>0</default>
<summary>SOCKS proxy port</summary>
<description>
The port on the machine defined by “/system/proxy/socks/host” that you
proxy through.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,14 +0,0 @@
<schemalist>
<schema id="org.gnome.system.smb" path="/org/gnome/system/smb/">
<key name="display-mode" enum="org.gnome.system.gvfs.GVfsBackendNetworkDisplayMode">
<default>'disabled'</default>
<summary>How to display SMB devices</summary>
<description>How SMB devices are displayed in the "network:///" location. Possible values are "merged", "separate" (the Windows Network folder) and "disabled".</description>
</key>
<key name="workgroup" type="s">
<default>''</default>
<summary>SMB workgroup</summary>
<description>The Windows networking workgroup or domain that the user is part of. In order for a new workgroup to fully take effect the user may need to log out and log back in.</description>
</key>
</schema>
</schemalist>

View File

@@ -1,26 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id='org.gtk.Settings.ColorChooser' path='/org/gtk/settings/color-chooser/'>
<key name='custom-colors' type='a(dddd)'>
<default>[]</default>
<summary>Custom colors</summary>
<description>
An array of custom colors to show in the color chooser. Each color is
specified as a tuple of four doubles, specifying RGBA values between
0 and 1.
</description>
</key>
<key name='selected-color' type='(bdddd)'>
<default>(false,1.0,1.0,1.0,1.0)</default>
<summary>The selected color</summary>
<description>
The selected color, described as a tuple whose first member is a
boolean that is true if a color was selected, and the remaining
four members are four doubles, specifying RGBA values between
0 and 1.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,25 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id='org.gtk.Settings.Debug' path='/org/gtk/settings/debug/'>
<key name='enable-inspector-keybinding' type='b'>
<default>false</default>
<summary>Enable inspector keybinding</summary>
<description>
If this setting is true, GTK+ lets the user open an interactive
debugging window with a keybinding. The default shortcuts for
the keybinding are Control-Shift-I and Control-Shift-D.
</description>
</key>
<key name='inspector-warning' type='b'>
<default>true</default>
<summary>Inspector warning</summary>
<description>
If this setting is true, GTK+ shows a warning before letting
the user use the interactive debugger.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,17 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id='org.gtk.Settings.EmojiChooser' path='/org/gtk/settings/emoji-chooser/'>
<key name='recent-emoji' type='a((auss)u)'>
<default>[]</default>
<summary>Recently used Emoji</summary>
<description>
An array of Emoji definitions to show in the Emoji chooser. Each Emoji is
specified as an array of codepoints, name and shortname. The extra integer after this
pair is the code of the Fitzpatrick modifier to use in place of a 0 in the
codepoint array.
</description>
</key>
</schema>
</schemalist>

View File

@@ -1,178 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright © 2010 Christian Persch
This library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1, or (at your option)
any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this library. If not, see <http://www.gnu.org/licenses/>.
-->
<schemalist>
<enum id='org.gtk.Settings.FileChooser.LocationMode'>
<value nick='path-bar' value='0'/>
<value nick='filename-entry' value='1'/>
</enum>
<enum id='org.gtk.Settings.FileChooser.SortColumn'>
<value nick='name' value='0'/>
<value nick='size' value='1'/>
<value nick='type' value='2'/>
<value nick='modified' value='3'/>
</enum>
<enum id='org.gtk.Settings.FileChooser.SortOrder'>
<value nick='ascending' value='0'/>
<value nick='descending' value='1'/>
</enum>
<enum id='org.gtk.Settings.FileChooser.StartupMode'>
<value nick='recent' value='0'/>
<value nick='cwd' value='1'/>
</enum>
<enum id='org.gtk.Settings.FileChooser.ClockFormat'>
<value nick='24h' value='0'/>
<value nick='12h' value='1'/>
</enum>
<enum id='org.gtk.Settings.FileChooser.DateFormat'>
<value nick='regular' value='0'/>
<value nick='with-time' value='1'/>
</enum>
<enum id='org.gtk.Settings.FileChooser.TypeFormat'>
<value nick='mime' value='0'/>
<value nick='description' value='1'/>
<value nick='category' value='2'/>
</enum>
<schema id='org.gtk.Settings.FileChooser' path='/org/gtk/settings/file-chooser/'>
<key name='last-folder-uri' type='s'>
<default>""</default>
</key>
<key name='location-mode' enum='org.gtk.Settings.FileChooser.LocationMode'>
<default>'path-bar'</default>
<summary>Location mode</summary>
<description>
Controls whether the file chooser shows just a path bar, or a visible entry
for the filename as well, for the benefit of typing-oriented users. The
possible values for these modes are "path-bar" and "filename-entry".
</description>
</key>
<key name='show-hidden' type='b'>
<default>false</default>
<summary>Show hidden files</summary>
<description>
Controls whether the file chooser shows hidden files or not.
</description>
</key>
<key type="b" name="sort-directories-first">
<default>false</default>
<summary>Show folders first</summary>
<description>
If set to true, then folders are shown before files in the list.
</description>
</key>
<key name='expand-folders' type='b'>
<default>false</default>
<summary>Expand folders</summary>
<description>This key is deprecated; do not use it.</description>
</key>
<key name='show-size-column' type='b'>
<default>true</default>
<summary>Show file sizes</summary>
<description>
Controls whether the file chooser shows a column with file sizes.
</description>
</key>
<key name='show-type-column' type='b'>
<default>true</default>
<summary>Show file types</summary>
<description>
Controls whether the file chooser shows a column with file types.
</description>
</key>
<key name='sort-column' enum='org.gtk.Settings.FileChooser.SortColumn'>
<default>'name'</default>
<summary>Sort column</summary>
<description>
Can be one of "name", "modified", or "size". It controls
which of the columns in the file chooser is used for sorting
the list of files.
</description>
</key>
<key name='sort-order' enum='org.gtk.Settings.FileChooser.SortOrder'>
<default>'ascending'</default>
<summary>Sort order</summary>
<description>
Can be one of the strings "ascending" or "descending".
</description>
</key>
<key name='window-position' type='(ii)'>
<default>(-1, -1)</default>
<summary>Window position</summary>
<description>
The (x, y) coordinates of the upper-left corner of the GtkFileChooserDialog's
window.
</description>
</key>
<key name='window-size' type='(ii)'>
<default>(-1, -1)</default>
<summary>Window size</summary>
<description>
The size (width, height) of the GtkFileChooserDialog's window, in pixels.
</description>
</key>
<key name='startup-mode' enum='org.gtk.Settings.FileChooser.StartupMode'>
<default>'recent'</default>
<summary>Startup mode</summary>
<description>
Either "recent" or "cwd"; controls whether the file chooser
starts up showing the list of recently-used files, or the
contents of the current working directory.
</description>
</key>
<key name='sidebar-width' type='i'>
<default>148</default>
<summary>Sidebar width</summary>
<description>
Width in pixels of the file chooser's places sidebar.
</description>
</key>
<key name="clock-format" enum="org.gtk.Settings.FileChooser.ClockFormat">
<default>'24h'</default>
<summary>Time format</summary>
<description>
Whether the time is shown in 24h or 12h format.
</description>
</key>
<key name="date-format" enum="org.gtk.Settings.FileChooser.DateFormat">
<default>'regular'</default>
<summary>Date format</summary>
<description>
The amount of detail to show in the Modified column.
</description>
</key>
<key name="type-format" enum="org.gtk.Settings.FileChooser.TypeFormat">
<default>'category'</default>
<summary>Type format</summary>
<description>
Different ways to show the 'Type' column information.
Example outputs for a video mp4 file:
'mime' -> 'video/mp4'
'description' -> 'MPEG-4 video'
'category' -> 'Video'
</description>
</key>
</schema>
</schemalist>

Some files were not shown because too many files have changed in this diff Show More