diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/applet-main.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/applet-main.c b/src/applet-main.c index 62faab0..cd07548 100644 --- a/src/applet-main.c +++ b/src/applet-main.c @@ -172,6 +172,12 @@ applet_fill_cb (PanelApplet * applet, const gchar * iid, gpointer data) GtkWidget *menubar; gint i; gint indicators_loaded = 0; + + /* check if we are running stracciatella session */ + if (g_strcmp0(g_getenv("GDMSESSION"), "gnome-stracciatella") == 0) { + g_debug("Running stracciatella GNOME session, disabling myself"); + return TRUE; + } /* Set panel options */ gtk_container_set_border_width(GTK_CONTAINER (applet), 0); |