summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rwxr-xr-xdraksnapshot-applet4
2 files changed, 7 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index af20274..7346457 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,6 @@
+- applet:
+ o prevent running twice the same applet
+
Version 0.11 - 24 June 2008, Thierry Vignaud
- applet:
diff --git a/draksnapshot-applet b/draksnapshot-applet
index 7fabdbe..35634f7 100755
--- a/draksnapshot-applet
+++ b/draksnapshot-applet
@@ -41,6 +41,10 @@ use ugtk2 qw(:all);
use lib qw(/usr/lib/libDrakX/drakfirsttime);
use Gtk2::Notify '-init', 'draksnapshot';
+if (my $pid = is_running('draksnapshot-ap')) {
+ die "draksnapshot-applet already running ($pid)\n";
+}
+
ugtk2::add_icon_path("/usr/share/draksnapshot/pixmaps/");
my $menu;