diff options
author | Eitan Isaacson <eitan@monotonous.org> | 2011-05-03 16:28:54 -0700 |
---|---|---|
committer | Eitan Isaacson <eitan@monotonous.org> | 2011-05-05 15:30:38 -0400 |
commit | deea136016db4a858939998479a91b8928cb8750 (patch) | |
tree | e625f06b606147f66b86db2deaaa585f1af0b805 /caribou/antler | |
parent | b1ba682af01576f294e71872551f576519627a30 (diff) | |
download | caribou-deea136016db4a858939998479a91b8928cb8750.tar.gz |
Added antler_settings.py
Diffstat (limited to 'caribou/antler')
-rw-r--r-- | caribou/antler/Makefile.am | 1 | ||||
-rw-r--r-- | caribou/antler/antler_settings.py | 12 |
2 files changed, 13 insertions, 0 deletions
diff --git a/caribou/antler/Makefile.am b/caribou/antler/Makefile.am index 51efe0f..d38f508 100644 --- a/caribou/antler/Makefile.am +++ b/caribou/antler/Makefile.am @@ -2,6 +2,7 @@ caribou_antlerdir = $(pkgpythondir)/antler/ caribou_antler_PYTHON = \ __init__.py \ + antler_settings.py \ keyboard_view.py \ main.py \ window.py diff --git a/caribou/antler/antler_settings.py b/caribou/antler/antler_settings.py new file mode 100644 index 0000000..ba13154 --- /dev/null +++ b/caribou/antler/antler_settings.py @@ -0,0 +1,12 @@ +from caribou.settings.setting_types import * +from caribou.i18n import _ + +AntlerSettings = SettingsTopGroup( + _("Antler Preferences"), "/org/gnome/antler/", "org.gnome.antler", + [SettingsGroup("antler", _("Antler"), [ + SettingsGroup("appearance", _("Appearance"), [ + BooleanSetting("use_system", _("Use System Theme"), + True, _("Use System Theme")) + ]) + ]) + ]) |