Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2007-01-11 10:20:08 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2007-01-11 10:20:08 (GMT)
commit297381cad771c3ac9c728ae784e8ea9c325184c4 (patch)
tree18bccae2bc2f0eee59936dadaab9edc5a622e018 /sugar
parentdda16d83c0fe754eb697c5ceb0bb952bfd15a70f (diff)
Basic implementation of the shutdown graphics
Diffstat (limited to 'sugar')
-rw-r--r--sugar/env.py6
-rw-r--r--sugar/graphics/iconcolor.py2
2 files changed, 8 insertions, 0 deletions
diff --git a/sugar/env.py b/sugar/env.py
index 09511f4..14d8d70 100644
--- a/sugar/env.py
+++ b/sugar/env.py
@@ -30,6 +30,12 @@ def get_bundle_path():
else:
return None
+def is_emulator():
+ if os.environ.has_key('SUGAR_EMULATOR'):
+ if os.environ['SUGAR_EMULATOR'] == 'yes':
+ return True
+ return False
+
def get_bundle_service_name():
if os.environ.has_key('SUGAR_BUNDLE_SERVICE_NAME'):
return os.environ['SUGAR_BUNDLE_SERVICE_NAME']
diff --git a/sugar/graphics/iconcolor.py b/sugar/graphics/iconcolor.py
index 71dfe18..e880582 100644
--- a/sugar/graphics/iconcolor.py
+++ b/sugar/graphics/iconcolor.py
@@ -22,6 +22,8 @@ from sugar.graphics.colors import colors
def _parse_string(color_string):
if color_string == 'white':
return ['#ffffff', '#414141']
+ elif color_string == 'insensitive':
+ return ['#ffffff', '#e2e2e2']
splitted = color_string.split(',')
if len(splitted) == 2: