From 9ffcbfca4d6f5e8b4f67569e38583956c58660be Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Sat, 22 Sep 2007 12:49:21 +0000 Subject: Play a startup sound if it exists. --- (limited to 'shell/sugar-shell') diff --git a/shell/sugar-shell b/shell/sugar-shell index a054189..93f2faa 100755 --- a/shell/sugar-shell +++ b/shell/sugar-shell @@ -24,6 +24,7 @@ import pygtk pygtk.require('2.0') import gtk import gobject +import gst from sugar import logger from sugar import env @@ -82,13 +83,19 @@ def check_cm(bus_name): pass return False -def _unfreeze_dcon_idle_cb(): - # Unfreeze the display when it's stable +def _shell_started_cb(): + # Unfreeze the display hw_manager = hardwaremanager.get_manager() hw_manager.set_dcon_freeze(0) + startup_sound = os.path.join(env.get_sounds_path('startup.ogg')) + if os.path.exists(startup_sound): + player = gst.element_factory_make("playbin", "player") + player.set_property("uri", "file://" + startup_sound) + player.set_state(gst.STATE_PLAYING) + def main(): - gobject.idle_add(_unfreeze_dcon_idle_cb) + gobject.idle_add(_shell_started_cb) _save_session_info() _start_matchbox() -- cgit v0.9.1