From 535b67ea41bbe150888f19ac89a7bde99cd86bb6 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Mon, 16 Oct 2006 23:09:44 +0000 Subject: alt+q shutdown the emulator --- (limited to 'sugar-emulator-shutdown') diff --git a/sugar-emulator-shutdown b/sugar-emulator-shutdown new file mode 100755 index 0000000..c608d97 --- /dev/null +++ b/sugar-emulator-shutdown @@ -0,0 +1,24 @@ +#!/usr/bin/python + +# Copyright (C) 2006, Red Hat, Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +import os +import signal + +if os.environ.has_key('SUGAR_XEPHYR_PID'): + pid = int(os.environ['SUGAR_XEPHYR_PID']) + os.kill(pid, signal.SIGTERM) -- cgit v0.9.1