summaryrefslogtreecommitdiff
path: root/data/schemas/org.gnome.metacity.gschema.xml
diff options
context:
space:
mode:
Diffstat (limited to 'data/schemas/org.gnome.metacity.gschema.xml')
-rw-r--r--data/schemas/org.gnome.metacity.gschema.xml93
1 files changed, 93 insertions, 0 deletions
diff --git a/data/schemas/org.gnome.metacity.gschema.xml b/data/schemas/org.gnome.metacity.gschema.xml
new file mode 100644
index 00000000..9f1952fe
--- /dev/null
+++ b/data/schemas/org.gnome.metacity.gschema.xml
@@ -0,0 +1,93 @@
+<schemalist gettext-domain="metacity">
+
+ <enum id="org.gnome.metacity.MetaPlacementMode">
+ <value nick="smart" value="0" />
+ <value nick="cascade" value="1" />
+ <value nick="center" value="2" />
+ <value nick="origin" value="3" />
+ <value nick="random" value="4" />
+ </enum>
+
+ <schema id="org.gnome.metacity" path="/org/gnome/metacity/">
+
+ <key name="compositing-manager" type="b">
+ <default>true</default>
+ <summary>Compositing Manager</summary>
+ <description>
+ Determines whether Metacity is a compositing manager.
+ </description>
+ </key>
+
+ <key name="reduced-resources" type="b">
+ <default>false</default>
+ <summary>If true, trade off usability for less resource usage</summary>
+ <description>
+ If true, Metacity will give the user less feedback by using wireframes,
+ avoiding animations, or other means. This is a significant reduction
+ in usability for many users, but may allow legacy applications to
+ continue working, and may also be a useful tradeoff
+ for terminal servers.
+
+ However, the wireframe feature is disabled when accessibility is on.
+ </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="placement-mode" enum="org.gnome.metacity.MetaPlacementMode">
+ <default>'smart'</default>
+ <summary>Window placement behavior</summary>
+ <description>
+ Metacity's default window-placement behavior is smart (first-fit),
+ similar to behaviors in some other window managers. It will try to tile
+ windows so that they do not overlap. Set this option to "smart" for this
+ behavior.
+
+ This option can be set to "center" to place new windows in the centers
+ of their workspaces, "origin" for the upper-left corners of the
+ workspaces, or "random" to place new windows at random locations within
+ their workspaces.
+ </description>
+ </key>
+
+ <key name="alt-tab-thumbnails" type="b">
+ <default>false</default>
+ <summary>Show window content thumbnail in Alt-Tab</summary>
+ <description>
+ If set to true, Metacity will show window content thumbnails in the
+ Alt-Tab window instead of only icons.
+ </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>
+
+ </schema>
+
+ <schema id="org.gnome.metacity.keybindings" path="/org/gnome/metacity/keybindings/">
+
+ <key name="toggle-tiled-left" type="as">
+ <default><![CDATA[['<Super>Left']]]></default>
+ </key>
+
+ <key name="toggle-tiled-right" type="as">
+ <default><![CDATA[['<Super>Right']]]></default>
+ </key>
+
+ </schema>
+
+</schemalist>