diff options
author | Ken VanDine <ken.vandine@canonical.com> | 2011-09-01 13:53:47 -0400 |
---|---|---|
committer | Ken VanDine <ken.vandine@canonical.com> | 2011-09-01 13:53:47 -0400 |
commit | abcb5c20d4788aa28a831dae1c3cb16e8a68f5bd (patch) | |
tree | 4ad67db96fe4be040b40a097e343745b00410d86 /src/indicator-session.c | |
parent | c0553de90eb81bbfa300955504ea0d0b84795018 (diff) | |
parent | ea01f7722081d1d29b6d80b708a22a60c3938bf9 (diff) | |
download | ayatana-indicator-session-abcb5c20d4788aa28a831dae1c3cb16e8a68f5bd.tar.gz ayatana-indicator-session-abcb5c20d4788aa28a831dae1c3cb16e8a68f5bd.tar.bz2 ayatana-indicator-session-abcb5c20d4788aa28a831dae1c3cb16e8a68f5bd.zip |
Import upstream version 0.3.4.1
Diffstat (limited to 'src/indicator-session.c')
-rw-r--r-- | src/indicator-session.c | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/indicator-session.c b/src/indicator-session.c index fab47b3..2b36fdd 100644 --- a/src/indicator-session.c +++ b/src/indicator-session.c @@ -164,10 +164,19 @@ indicator_session_init (IndicatorSession *self) self->users.label = GTK_LABEL (gtk_label_new (NULL)); + const gchar *greeter_var; + greeter_var = g_getenv("INDICATOR_GREETER_MODE"); + // devices self->devices.menu = GTK_MENU (dbusmenu_gtkmenu_new(INDICATOR_SESSION_DBUS_NAME, INDICATOR_SESSION_DBUS_OBJECT)); - self->devices.image = indicator_image_helper (ICON_DEFAULT); + if (g_strcmp0(greeter_var, "1") == 0){ + self->devices.image = indicator_image_helper (GREETER_ICON_DEFAULT); + } + else{ + self->devices.image = indicator_image_helper (ICON_DEFAULT); + } + gtk_widget_show (GTK_WIDGET(self->devices.menu)); gtk_widget_show (GTK_WIDGET(self->devices.image)); @@ -497,8 +506,7 @@ receive_signal (GDBusProxy * proxy, &self->users); } } - else if (g_strcmp0(signal_name, "RebootRequired") == 0) { - // TODO waiting on design to give me a name. + else if (g_strcmp0(signal_name, "RestartRequired") == 0) { self->devices.image = indicator_image_helper (ICON_RESTART); } } |