diff options
author | Havoc Pennington <hp@pobox.com> | 2001-12-09 22:41:12 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2001-12-09 22:41:12 +0000 |
commit | 6981a8198bdce947fa2f43a28babe427e740282b (patch) | |
tree | e247cdeeb2810c60ea00e7620e903fd82eca7668 /src/metacity.schemas | |
parent | b3778e4470e08dab6017d0134c81607920110e74 (diff) | |
download | metacity-6981a8198bdce947fa2f43a28babe427e740282b.tar.gz metacity-6981a8198bdce947fa2f43a28babe427e740282b.tar.bz2 |
move SM init a bit later in the process, and init prefs
2001-12-09 Havoc Pennington <hp@pobox.com>
* src/main.c (main): move SM init a bit later in the process, and
init prefs
* src/session.c: fix no SM case (though I hardly know why I'm
bothering)
* src/main.c (main): call bindtextdomain
* src/util.h (_): actually call gettext
* configure.in: put in AM_GLIB_GNU_GETTEXT and gconf stuff
* src/prefs.c: Preferences - this marks the beginning of our doom.
None of them are actually implemented yet, but we monitor
some stuff from gconf.
Diffstat (limited to 'src/metacity.schemas')
-rw-r--r-- | src/metacity.schemas | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/src/metacity.schemas b/src/metacity.schemas index 109c900..e8caa56 100644 --- a/src/metacity.schemas +++ b/src/metacity.schemas @@ -4,7 +4,8 @@ <!-- General preferences --> <schema> - <key>/apps/metacity/general/focus_mode</key> + <key>/schemas/apps/metacity/general/focus_mode</key> + <applyto>/apps/metacity/general/focus_mode</applyto> <owner>metacity</owner> <type>string</type> <default>click</default> @@ -22,7 +23,8 @@ </schema> <schema> - <key>/apps/metacity/general/titlebar_uses_desktop_font</key> + <key>/schemas/apps/metacity/general/titlebar_uses_desktop_font</key> + <applyto>/apps/metacity/general/titlebar_uses_desktop_font</applyto> <owner>metacity</owner> <type>bool</type> <default>true</default> @@ -37,7 +39,8 @@ </schema> <schema> - <key>/apps/metacity/general/titlebar_font</key> + <key>/schemas/apps/metacity/general/titlebar_font</key> + <applyto>/apps/metacity/general/titlebar_font</applyto> <owner>metacity</owner> <type>string</type> <!-- no default is deliberate - we want to be unset by default --> @@ -57,7 +60,8 @@ </schema> <schema> - <key>/apps/metacity/general/titlebar_font_size</key> + <key>/schemas/apps/metacity/general/titlebar_font_size</key> + <applyto>/apps/metacity/general/titlebar_font_size</applyto> <owner>metacity</owner> <type>int</type> <default>0</default> @@ -75,18 +79,19 @@ <!-- Keybindings --> <schema> - <key>/apps/metacity/keybindings/activate_window_menu</key> + <key>/schemas/apps/metacity/keybindings/activate_window_menu</key> + <applyto>/apps/metacity/keybindings/activate_window_menu</applyto> <owner>metacity</owner> <type>string</type> - <default> + <default><Alt>space</default> <locale name="C"> <short>Activate window menu</short> <long> The keybinding used to activate the window menu. - The format looks like "<Control>a" or "<Shift><Alt>F1" or - "<Release>z" (the last one is for key release). The parser is + The format looks like "<Control>a" or "<Shift><Alt>F1" or + "<Release>z" (the last one is for key release). The parser is fairly liberal and allows lower or upper case, and also - abbreviations such as "<Ctl>" and "<Ctrl>". This option can be + abbreviations such as "<Ctl>" and "<Ctrl>". This option can be set to a single string, or a list of strings; if a list, all of the given keybindings will be present. If you set the option to the special string "disabled", then there |