Bjørn Lie
73c793de2a
Scripted push of project GNOME:Next OBS-URL: https://build.opensuse.org/request/show/735062 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-settings-daemon?expand=0&rev=349
105 lines
5.1 KiB
Diff
105 lines
5.1 KiB
Diff
diff -urp gnome-settings-daemon-3.33.90.orig/data/org.gnome.settings-daemon.plugins.power.gschema.xml.in gnome-settings-daemon-3.33.90/data/org.gnome.settings-daemon.plugins.power.gschema.xml.in
|
|
--- gnome-settings-daemon-3.33.90.orig/data/org.gnome.settings-daemon.plugins.power.gschema.xml.in 2019-08-05 18:40:19.000000000 -0500
|
|
+++ gnome-settings-daemon-3.33.90/data/org.gnome.settings-daemon.plugins.power.gschema.xml.in 2019-08-31 19:31:48.127633355 -0500
|
|
@@ -41,5 +41,10 @@
|
|
<summary>Power button action</summary>
|
|
<description>The action to take when the system power button is pressed. This action is hard-coded (and the setting ignored) on virtual machines (power off) and tablets (suspend).</description>
|
|
</key>
|
|
+ <key name="notify-idle-resumed" type="b">
|
|
+ <default>true</default>
|
|
+ <_summary>If an information message should be displayed when returning from idle sleep.</_summary>
|
|
+ <_description>If an information message should be displayed when returning from idle sleep.</_description>
|
|
+ </key>
|
|
</schema>
|
|
</schemalist>
|
|
diff -urp gnome-settings-daemon-3.33.90.orig/plugins/power/gsd-power-manager.c gnome-settings-daemon-3.33.90/plugins/power/gsd-power-manager.c
|
|
--- gnome-settings-daemon-3.33.90.orig/plugins/power/gsd-power-manager.c 2019-08-05 18:40:19.000000000 -0500
|
|
+++ gnome-settings-daemon-3.33.90/plugins/power/gsd-power-manager.c 2019-08-31 19:34:05.024358981 -0500
|
|
@@ -157,6 +157,7 @@ struct _GsdPowerManager
|
|
NotifyNotification *notification_ups_discharging;
|
|
NotifyNotification *notification_low;
|
|
NotifyNotification *notification_sleep_warning;
|
|
+ NotifyNotification *notification_resumed;
|
|
GsdPowerActionType sleep_action_type;
|
|
gboolean battery_is_low; /* laptop battery low, or UPS discharging */
|
|
|
|
@@ -191,6 +192,7 @@ struct _GsdPowerManager
|
|
gboolean inhibit_suspend_taken;
|
|
guint inhibit_lid_switch_timer_id;
|
|
gboolean is_virtual_machine;
|
|
+ GsdPowerActionType last_idle_power_action;
|
|
|
|
/* Idles */
|
|
GnomeIdleMonitor *idle_monitor;
|
|
@@ -1497,6 +1499,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->settings, "notify-idle-resumed");
|
|
+ if (!ret)
|
|
+ return;
|
|
+
|
|
+ /* close any existing notification of this class */
|
|
+ notify_close_if_showing (&manager->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->notification_resumed);
|
|
+ notify_notification_set_timeout (manager->notification_resumed,
|
|
+ GSD_POWER_MANAGER_NOTIFY_TIMEOUT_SHORT);
|
|
+ notify_notification_set_urgency (manager->notification_resumed,
|
|
+ NOTIFY_URGENCY_NORMAL);
|
|
+ /* TRANSLATORS: this is the notification application name */
|
|
+ notify_notification_set_app_name (manager->notification_resumed, _("Power"));
|
|
+ notify_notification_set_hint (manager->notification_resumed,
|
|
+ "transient", g_variant_new_boolean (TRUE));
|
|
+
|
|
+ /* try to show */
|
|
+ ret = notify_notification_show (manager->notification_resumed,
|
|
+ &error);
|
|
+ if (!ret) {
|
|
+ g_warning ("failed to show notification: %s", error->message);
|
|
+ g_error_free (error);
|
|
+ g_object_unref (manager->notification_resumed);
|
|
+ }
|
|
+}
|
|
+
|
|
+static void
|
|
idle_set_mode (GsdPowerManager *manager, GsdPowerIdleMode mode)
|
|
{
|
|
gboolean ret = FALSE;
|
|
@@ -1573,6 +1618,7 @@ idle_set_mode (GsdPowerManager *manager,
|
|
action_type = g_settings_get_enum (manager->settings,
|
|
"sleep-inactive-ac-type");
|
|
}
|
|
+ manager->last_idle_power_action = action_type;
|
|
do_power_action_type (manager, action_type);
|
|
|
|
/* turn on screen and restore user-selected brightness level */
|
|
@@ -2353,6 +2399,12 @@ handle_suspend_actions (GsdPowerManager
|
|
static void
|
|
handle_resume_actions (GsdPowerManager *manager)
|
|
{
|
|
+ if (manager->last_idle_power_action == GSD_POWER_ACTION_SUSPEND ||
|
|
+ manager->last_idle_power_action == GSD_POWER_ACTION_HIBERNATE)
|
|
+ show_resumed_notification (manager);
|
|
+
|
|
+ manager->last_idle_power_action = GSD_POWER_ACTION_NOTHING;
|
|
+
|
|
/* ensure we turn the panel back on after resume */
|
|
backlight_enable (manager);
|
|
|