Index: gnome-settings-daemon-3.7.90/data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in =================================================================== --- gnome-settings-daemon-3.7.90.orig/data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in +++ gnome-settings-daemon-3.7.90/data/org.gnome.settings-daemon.plugins.power.gschema.xml.in.in @@ -106,5 +106,10 @@ <_summary>If we should show the recalled battery warning for a broken battery <_description>If we should show the recalled battery warning for a broken battery. Set this to false only if you know your battery is okay. + + true + <_summary>If an information message should be displayed when returning from idle sleep. + <_description>If an information message should be displayed when returning from idle sleep. + Index: gnome-settings-daemon-3.7.90/plugins/power/gsd-power-manager.c =================================================================== --- gnome-settings-daemon-3.7.90.orig/plugins/power/gsd-power-manager.c +++ gnome-settings-daemon-3.7.90/plugins/power/gsd-power-manager.c @@ -186,6 +186,7 @@ struct GsdPowerManagerPrivate NotifyNotification *notification_low; NotifyNotification *notification_sleep_warning; NotifyNotification *notification_logout_warning; + NotifyNotification *notification_resumed; GsdPowerActionType sleep_action_type; gboolean battery_is_low; /* laptop battery low, or UPS discharging */ @@ -212,6 +213,7 @@ struct GsdPowerManagerPrivate gboolean inhibit_suspend_taken; guint inhibit_lid_switch_timer_id; gboolean is_virtual_machine; + GsdPowerActionType last_idle_power_action; /* Idles */ GnomeIdleMonitor *idle_monitor; @@ -2452,6 +2454,49 @@ is_session_active (GsdPowerManager *mana } static void +show_resumed_notification (GsdPowerManager *manager) +{ + GError *error = NULL; + gboolean ret; + + /* don't show when running under GDM */ + if (g_getenv ("RUNNING_UNDER_GDM") != NULL) { + g_debug ("running under gdm, so no notification"); + return; + } + + ret = g_settings_get_boolean (manager->priv->settings, "notify-idle-resumed"); + if (!ret) + return; + + /* close any existing notification of this class */ + notify_close_if_showing (manager->priv->notification_resumed); + + /* create a new notification */ + create_notification (_("System resumed from sleep"), + _("The system automatically went to sleep because the system was idle."), + NULL, + &manager->priv->notification_resumed); + notify_notification_set_timeout (manager->priv->notification_resumed, + GSD_POWER_MANAGER_NOTIFY_TIMEOUT_SHORT); + notify_notification_set_urgency (manager->priv->notification_resumed, + NOTIFY_URGENCY_NORMAL); + /* TRANSLATORS: this is the notification application name */ + notify_notification_set_app_name (manager->priv->notification_resumed, _("Power")); + notify_notification_set_hint (manager->priv->notification_resumed, + "transient", g_variant_new_boolean (TRUE)); + + /* try to show */ + ret = notify_notification_show (manager->priv->notification_resumed, + &error); + if (!ret) { + g_warning ("failed to show notification: %s", error->message); + g_error_free (error); + g_object_unref (manager->priv->notification_resumed); + } +} + +static void idle_set_mode (GsdPowerManager *manager, GsdPowerIdleMode mode) { gboolean ret = FALSE; @@ -2544,6 +2589,8 @@ idle_set_mode (GsdPowerManager *manager, action_type = g_settings_get_enum (manager->priv->settings, "sleep-inactive-ac-type"); } + + manager->priv->last_idle_power_action = action_type; do_power_action_type (manager, action_type); /* turn on screen and restore user-selected brightness level */ @@ -2590,7 +2637,6 @@ idle_set_mode (GsdPowerManager *manager, } manager->priv->kbd_brightness_pre_dim = -1; } - } } @@ -3364,6 +3410,12 @@ handle_resume_actions (GsdPowerManager * notify_close_if_showing (manager->priv->notification_ups_discharging); main_battery_or_ups_low_changed (manager, FALSE); + if (manager->priv->last_idle_power_action == GSD_POWER_ACTION_SUSPEND || + manager->priv->last_idle_power_action == GSD_POWER_ACTION_HIBERNATE) + show_resumed_notification (manager); + + manager->priv->last_idle_power_action = GSD_POWER_ACTION_NOTHING; + /* ensure we turn the panel back on after resume */ backlight_enable (manager);