GNOME Bugzilla – Bug 712706
Suspend on idle broken by gnome-shell resetting idletime
Last modified: 2014-04-25 08:47:02 UTC
Hi, I have recently upgraded to Fedora 20. Unfortunately, this has broken the suspending after x minutes of idle functionality, even though it is enabled in settings: $ gsettings get org.gnome.settings-daemon.plugins.power sleep-inactive-ac-timeout 1800 $ gsettings get org.gnome.settings-daemon.plugins.power sleep-inactive-ac-type 'suspend' $ gsettings get org.gnome.settings-daemon.plugins.power sleep-inactive-battery-timeout 900 $ gsettings get org.gnome.settings-daemon.plugins.power sleep-inactive-battery-type 'suspend' Where should I look to investigate this further?
That should still work, and is implemented in gnome-settings-daemon, as the configuration option hint. Is this a VM or a real machine? Is the power plugin actually active: gsettings get org.gnome.settings-daemon.plugins.power active Is gnome-settings-daemon running? What's the output of "systemd-inhibit --list" when the machine is idle?
This is a real machine, a Clevo P150HM laptop. $ gsettings get org.gnome.settings-daemon.plugins.power active true $ LANG=C systemd-inhibit --list Who: NetworkManager (UID 0/root, PID 861/NetworkManager) What: sleep Why: Usługa NetworkManager musi wyłączyć sieci Mode: delay Who: julas (UID 500/julas, PID 2261/gnome-settings-) What: handle-power-key:handle-suspend-key:handle-hibernate-key Why: GNOME handling keypresses Mode: block Who: GNOME Shell (UID 500/julas, PID 2330/gnome-shell) What: sleep Why: Środowisko GNOME musi zablokować ekran Mode: delay Who: Telepathy (UID 500/julas, PID 2356/mission-control) What: shutdown:sleep Why: Disconnecting IM accounts before suspend/shutdown... Mode: delay Who: julas (UID 500/julas, PID 2261/gnome-settings-) What: sleep Why: GNOME needs to lock the screen Mode: delay I am not sure how I should get the output of the above command when idle - running it will wake the system up, won;t it?
I have a similar problem on Arch Linux, Gnome 3.10 $ gsettings get org.gnome.settings-daemon.plugins.power active true $ systemd-inhibit --list Who: dkao (UID 1000/dkao, PID 1422/gnome-settings-) What: handle-power-key:handle-suspend-key:handle-hibernate-key Why: GNOME handling keypresses Mode: block Who: Telepathy (UID 1000/dkao, PID 1538/mission-control) What: shutdown:sleep Why: Disconnecting IM accounts before suspend/shutdown... Mode: delay Who: root (UID 0/root, PID 225/NetworkManager) What: sleep Why: inhibited Mode: delay Who: dkao (UID 1000/dkao, PID 1422/gnome-settings-) What: sleep Why: GNOME needs to lock the screen Mode: delay Who: GNOME Shell (UID 1000/dkao, PID 1483/gnome-shell) What: sleep Why: GNOME needs to lock the screen Mode: delay 5 inhibitors listed. If I set org.gnome.desktop.session idle-delay and org.gnome.settings-daemon.plugins.power sleep-inactive-battery-timeout to the same value then suspend on idle works, otherwise the screen just turns on to show lockscreen when sleep-inactive-battery-timeout is reached and nothing happens.
On my fresh Fedora 20 installation (a desktop), "Automatic suspend" is also broken. For me, there is a workaround by change the power settings: As long as I set the "Blank screen" option to "never" or to a higher value than "Automatic suspend", my system will suspend to RAM. What works: * Blank screen = never * Automatic suspend = 30 min Will also work: * Blank screen = 5 min * Automatic suspend = 2 min (by using dconf-editor) What doesn't work: * Blank screen = 5 min * Automatic suspend = 30 min
I'm also having this issue, Arch Linux with gnome 3.10, while testing https://bugzilla.gnome.org/show_bug.cgi?id=705105. When the suspend timer reaches the designed time to suspend, and the screen is locked, instead of suspending the lock screen shows up.
This is affecting me too, on Fedora 20 (desktop). This bug is marked as NEEDINFO, but AFAICS the requested information has already been provided, hasn't it? Is there any further information we can provide?
Hi! (In reply to comment #0) > I have recently upgraded to Fedora 20. Unfortunately, this has broken the > suspending after x minutes of idle functionality, even though it is enabled in > settings: > > $ gsettings get org.gnome.settings-daemon.plugins.power > sleep-inactive-ac-timeout > 1800 > $ gsettings get org.gnome.settings-daemon.plugins.power sleep-inactive-ac-type > 'suspend' > $ gsettings get org.gnome.settings-daemon.plugins.power > sleep-inactive-battery-timeout > 900 > $ gsettings get org.gnome.settings-daemon.plugins.power > sleep-inactive-battery-type > 'suspend' > > Where should I look to investigate this further? I found out that suspend works when I switch off the option "Show in Lock Screen". Than everything works. I hope that is helps. CU Michael
(In reply to comment #7) > Hi! > > (In reply to comment #0) > > I have recently upgraded to Fedora 20. Unfortunately, this has broken the > > suspending after x minutes of idle functionality, even though it is enabled in > > settings: > > > > $ gsettings get org.gnome.settings-daemon.plugins.power > > sleep-inactive-ac-timeout > > 1800 > > $ gsettings get org.gnome.settings-daemon.plugins.power sleep-inactive-ac-type > > 'suspend' > > $ gsettings get org.gnome.settings-daemon.plugins.power > > sleep-inactive-battery-timeout > > 900 > > $ gsettings get org.gnome.settings-daemon.plugins.power > > sleep-inactive-battery-type > > 'suspend' > > > > Where should I look to investigate this further? > I found out that suspend works when I switch off the option "Show in Lock > Screen". Than everything works. I hope that is helps. Oh, doh. I kept staring at the gnome-settings-daemon code for that... We generate a notification when the machine is about to suspend, which gnome-shell wants to show on the lock screen, and it wakes up the monitor for that... commit 137cbbd141ee9e6e8fa635d1800930e12578ed12 Author: Giovanni Campagna <gcampagna@src.gnome.org> Date: Sun Jul 14 16:20:49 2013 +0200 ScreenShield: wake up the screen when new notifications appear This way the user is immediately notified when something happens. https://bugzilla.gnome.org/show_bug.cgi?id=703084 Instead, it should wake up the screen itself (poking at the DPMS state directly), and turn it back off 15 seconds later, as gnome-settings-daemon does (SCREENSAVER_TIMEOUT_BLANK is 15 seconds). Or it could send a signal to gnome-settings-daemon to do that. Either way, it needs to stop resetting the idletime when a notification comes in.
(In reply to comment #7) > Hi! > [snip] > I found out that suspend works when I switch off the option "Show in Lock > Screen". Than everything works. I hope that is helps. > > CU > Michael Thank you for posting this workaround! =)
Created attachment 271468 [details] [review] ScreenShield: send a signal to GSD to wake up the screen Instead of poking through IDLETIME, which confuses the state tracking and can prevent automatic suspend, send a special signal to GSD when the screen is to be waken up for a notification. Someday we'll bring over all the state tracking and avoid this ping-pong between gnome-shell and gnome-settings-daemon, but that day's not today.
Review of attachment 271468 [details] [review]: Looks fine. And yes we should aim to have all this logic in the same place one day
Attachment 271468 [details] pushed as edd66c4 - ScreenShield: send a signal to GSD to wake up the screen
Will this also be backported to 3.10?
This is still a problem for me, using 3.12.0.1 on Arch Linux My gsd debug log: (gnome-settings-daemon:2110): power-plugin-DEBUG: idletime watch: dim (24) (gnome-settings-daemon:2110): power-plugin-DEBUG: Doing a state transition: dim (gnome-settings-daemon:2110): power-plugin-DEBUG: Received screensaver ActiveChanged signal: 1 (old: 0) (gnome-settings-daemon:2110): power-plugin-DEBUG: setting up blank callback for 15s (gnome-settings-daemon:2110): power-plugin-DEBUG: setting up sleep callback 900s (gnome-settings-daemon:2110): power-plugin-DEBUG: setting up sleep warning callback 720s (gnome-settings-daemon:2110): power-plugin-DEBUG: Doing a state transition: blank (gnome-settings-daemon:2110): power-plugin-DEBUG: TESTSUITE: Blanked screen (gnome-settings-daemon:2110): power-plugin-DEBUG: idletime watch: blank (26) (gnome-settings-daemon:2110): power-plugin-DEBUG: Not going to 'less idle' mode blank (current: blank) (gnome-settings-daemon:2110): power-plugin-DEBUG: idletime watch: sleep-warning (28) (gnome-settings-daemon:2110): power-plugin-DEBUG: Doing a state transition: normal (gnome-settings-daemon:2110): power-plugin-DEBUG: TESTSUITE: Unblanked screen (gnome-settings-daemon:2110): cursor-plugin-DEBUG: Device 10 'SynPS/2 Synaptics TouchPad' became active (gnome-settings-daemon:2110): cursor-plugin-DEBUG: Attempting to show the cursor (gnome-settings-daemon:2110): power-plugin-DEBUG: idletime reset (gnome-settings-daemon:2110): power-plugin-DEBUG: Doing a state transition: blank (gnome-settings-daemon:2110): power-plugin-DEBUG: TESTSUITE: Blanked screen (gnome-settings-daemon:2110): power-plugin-DEBUG: Doing a state transition: normal (gnome-settings-daemon:2110): power-plugin-DEBUG: TESTSUITE: Unblanked screen (gnome-settings-daemon:2110): power-plugin-DEBUG: idletime reset (gnome-settings-daemon:2110): power-plugin-DEBUG: Doing a state transition: normal (gnome-settings-daemon:2110): power-plugin-DEBUG: TESTSUITE: Unblanked screen (gnome-settings-daemon:2110): power-plugin-DEBUG: idletime reset (gnome-settings-daemon:2110): power-plugin-DEBUG: Doing a state transition: normal (gnome-settings-daemon:2110): power-plugin-DEBUG: TESTSUITE: Unblanked screen (gnome-settings-daemon:2110): power-plugin-DEBUG: idletime watch: blank (26) (gnome-settings-daemon:2110): power-plugin-DEBUG: Doing a state transition: blank (gnome-settings-daemon:2110): power-plugin-DEBUG: TESTSUITE: Blanked screen (gnome-settings-daemon:2110): power-plugin-DEBUG: idletime reset (gnome-settings-daemon:2110): power-plugin-DEBUG: Doing a state transition: normal (gnome-settings-daemon:2110): power-plugin-DEBUG: TESTSUITE: Unblanked screen (gnome-settings-daemon:2110): power-plugin-DEBUG: Received screensaver ActiveChanged signal: 0 (old: 1) (gnome-settings-daemon:2110): power-plugin-DEBUG: setting up sleep callback 900s (gnome-settings-daemon:2110): power-plugin-DEBUG: setting up sleep warning callback 720s (gnome-settings-daemon:2110): power-plugin-DEBUG: setting up dim callback for 240s cursor-plugin shows trackpad activity without me touching it. Is this normal? I have tried turning off my trackpad: result is the same, just without the cursor-plugin printouts.
Still not working with the upgrate to 3.12.0 on Arch Linux - the machine will not suspend automatically if the screen is locked.
(In reply to comment #14) > (gnome-settings-daemon:2110): power-plugin-DEBUG: Doing a state transition: > normal > (gnome-settings-daemon:2110): power-plugin-DEBUG: TESTSUITE: Unblanked screen > (gnome-settings-daemon:2110): cursor-plugin-DEBUG: Device 10 'SynPS/2 Synaptics > TouchPad' became active > (gnome-settings-daemon:2110): cursor-plugin-DEBUG: Attempting to show the > cursor > (gnome-settings-daemon:2110): power-plugin-DEBUG: idletime reset ... > cursor-plugin shows trackpad activity without me touching it. Is this normal? No, this shouldn't happen and it's likely why this is failing for you. FWIW, I don't see the bug on my laptop. > I have tried turning off my trackpad: result is the same, just without the > cursor-plugin printouts. How did you disable the trackpad? Can you try disabling it through xinput and see if suspend on idle works? Something like: $ xinput [ check the touchpad's id ] $ xinput float <touchpad id> To re-enable it: $ xinput reattach <touchpad id> 2
(In reply to comment #15) > Still not working with the upgrate to 3.12.0 on Arch Linux - the machine will > not suspend automatically if the screen is locked. Please do: $ gnome-settings-daemon --replace --debug > ~/gsd-debug.log 2>&1 and attach the log here.
(In reply to comment #17) > (In reply to comment #15) > > Still not working with the upgrate to 3.12.0 on Arch Linux - the machine will > > not suspend automatically if the screen is locked. > > Please do: > > $ gnome-settings-daemon --replace --debug > ~/gsd-debug.log 2>&1 > > and attach the log here. gnome-settings-daemon: command not found
(In reply to comment #18) > (In reply to comment #17) > > (In reply to comment #15) > > > Still not working with the upgrate to 3.12.0 on Arch Linux - the machine will > > > not suspend automatically if the screen is locked. > > > > Please do: > > > > $ gnome-settings-daemon --replace --debug > ~/gsd-debug.log 2>&1 > > > > and attach the log here. > > gnome-settings-daemon: command not found It's in /usr/libexec or /usr/lib/gnome-settings-daemon/ depending on the distribution.
Ok --- ** (gnome-settings-daemon:8859): DEBUG: Starting settings manager ** (gnome-settings-daemon:8859): DEBUG: loading PNPIDs ** (gnome-settings-daemon:8859): DEBUG: Loading settings plugins from dir: /usr/lib/gnome-settings-daemon-3.0/ ** (gnome-settings-daemon:8859): DEBUG: Loading plugin: /usr/lib/gnome-settings-daemon-3.0/cursor.gnome-settings-plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsPluginInfo: name='Cursor' file='/usr/lib/gnome-settings-daemon-3.0/cursor.gnome-settings-plugin' location='cursor' ** (gnome-settings-daemon:8859): DEBUG: Loading plugin: /usr/lib/gnome-settings-daemon-3.0/color.gnome-settings-plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsPluginInfo: name='Color' file='/usr/lib/gnome-settings-daemon-3.0/color.gnome-settings-plugin' location='color' ** (gnome-settings-daemon:8859): DEBUG: Loading plugin: /usr/lib/gnome-settings-daemon-3.0/orientation.gnome-settings-plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsPluginInfo: name='Orientation' file='/usr/lib/gnome-settings-daemon-3.0/orientation.gnome-settings-plugin' location='orientation' ** (gnome-settings-daemon:8859): DEBUG: Loading plugin: /usr/lib/gnome-settings-daemon-3.0/clipboard.gnome-settings-plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsPluginInfo: name='Clipboard' file='/usr/lib/gnome-settings-daemon-3.0/clipboard.gnome-settings-plugin' location='clipboard' ** (gnome-settings-daemon:8859): DEBUG: Loading plugin: /usr/lib/gnome-settings-daemon-3.0/mouse.gnome-settings-plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsPluginInfo: name='Mouse' file='/usr/lib/gnome-settings-daemon-3.0/mouse.gnome-settings-plugin' location='mouse' ** (gnome-settings-daemon:8859): DEBUG: Loading plugin: /usr/lib/gnome-settings-daemon-3.0/gdu-sd-plugin.gnome-settings-plugin ** (gnome-settings-daemon:8859): DEBUG: Could not find 'Copyright' in /usr/lib/gnome-settings-daemon-3.0/gdu-sd-plugin.gnome-settings-plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsPluginInfo: name='Disks Problem Monitor' file='/usr/lib/gnome-settings-daemon-3.0/gdu-sd-plugin.gnome-settings-plugin' location='gdu-sd' ** (gnome-settings-daemon:8859): DEBUG: Loading plugin: /usr/lib/gnome-settings-daemon-3.0/xrandr.gnome-settings-plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsPluginInfo: name='XRandR' file='/usr/lib/gnome-settings-daemon-3.0/xrandr.gnome-settings-plugin' location='xrandr' ** (gnome-settings-daemon:8859): DEBUG: Loading plugin: /usr/lib/gnome-settings-daemon-3.0/housekeeping.gnome-settings-plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsPluginInfo: name='Housekeeping' file='/usr/lib/gnome-settings-daemon-3.0/housekeeping.gnome-settings-plugin' location='housekeeping' ** (gnome-settings-daemon:8859): DEBUG: Loading plugin: /usr/lib/gnome-settings-daemon-3.0/datetime.gnome-settings-plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsPluginInfo: name='Date and Time' file='/usr/lib/gnome-settings-daemon-3.0/datetime.gnome-settings-plugin' location='datetime' ** (gnome-settings-daemon:8859): DEBUG: Loading plugin: /usr/lib/gnome-settings-daemon-3.0/wacom.gnome-settings-plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsPluginInfo: name='Wacom' file='/usr/lib/gnome-settings-daemon-3.0/wacom.gnome-settings-plugin' location='gsdwacom' ** (gnome-settings-daemon:8859): DEBUG: Loading plugin: /usr/lib/gnome-settings-daemon-3.0/sound.gnome-settings-plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsPluginInfo: name='Sound' file='/usr/lib/gnome-settings-daemon-3.0/sound.gnome-settings-plugin' location='sound' ** (gnome-settings-daemon:8859): DEBUG: Loading plugin: /usr/lib/gnome-settings-daemon-3.0/keyboard.gnome-settings-plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsPluginInfo: name='Keyboard' file='/usr/lib/gnome-settings-daemon-3.0/keyboard.gnome-settings-plugin' location='keyboard' ** (gnome-settings-daemon:8859): DEBUG: Loading plugin: /usr/lib/gnome-settings-daemon-3.0/a11y-settings.gnome-settings-plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsPluginInfo: name='Accessibility settings' file='/usr/lib/gnome-settings-daemon-3.0/a11y-settings.gnome-settings-plugin' location='a11y-settings' ** (gnome-settings-daemon:8859): DEBUG: Loading plugin: /usr/lib/gnome-settings-daemon-3.0/xsettings.gnome-settings-plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsPluginInfo: name='X Settings' file='/usr/lib/gnome-settings-daemon-3.0/xsettings.gnome-settings-plugin' location='xsettings' ** (gnome-settings-daemon:8859): DEBUG: Loading plugin: /usr/lib/gnome-settings-daemon-3.0/rfkill.gnome-settings-plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsPluginInfo: name='Rfkill' file='/usr/lib/gnome-settings-daemon-3.0/rfkill.gnome-settings-plugin' location='rfkill' ** (gnome-settings-daemon:8859): DEBUG: Loading plugin: /usr/lib/gnome-settings-daemon-3.0/media-keys.gnome-settings-plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsPluginInfo: name='Media keys' file='/usr/lib/gnome-settings-daemon-3.0/media-keys.gnome-settings-plugin' location='media-keys' ** (gnome-settings-daemon:8859): DEBUG: Loading plugin: /usr/lib/gnome-settings-daemon-3.0/power.gnome-settings-plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsPluginInfo: name='Power' file='/usr/lib/gnome-settings-daemon-3.0/power.gnome-settings-plugin' location='power' ** (gnome-settings-daemon:8859): DEBUG: Loading plugin: /usr/lib/gnome-settings-daemon-3.0/smartcard.gnome-settings-plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsPluginInfo: name='Smartcard' file='/usr/lib/gnome-settings-daemon-3.0/smartcard.gnome-settings-plugin' location='smartcard' ** (gnome-settings-daemon:8859): DEBUG: Loading plugin: /usr/lib/gnome-settings-daemon-3.0/print-notifications.gnome-settings-plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsPluginInfo: name='Print-notifications' file='/usr/lib/gnome-settings-daemon-3.0/print-notifications.gnome-settings-plugin' location='print-notifications' ** (gnome-settings-daemon:8859): DEBUG: Loading plugin: /usr/lib/gnome-settings-daemon-3.0/screensaver-proxy.gnome-settings-plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsPluginInfo: name='Screensaver Proxy' file='/usr/lib/gnome-settings-daemon-3.0/screensaver-proxy.gnome-settings-plugin' location='screensaver-proxy' ** (gnome-settings-daemon:8859): DEBUG: Loading plugin: /usr/lib/gnome-settings-daemon-3.0/a11y-keyboard.gnome-settings-plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsPluginInfo: name='Accessibility Keyboard' file='/usr/lib/gnome-settings-daemon-3.0/a11y-keyboard.gnome-settings-plugin' location='a11y-keyboard' ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsModule 0x2037000 initialising ** (gnome-settings-daemon:8859): DEBUG: Loading /usr/lib/gnome-settings-daemon-3.0/libpower.so ** (gnome-settings-daemon:8859): DEBUG: Creating object of type GsdPowerPlugin (gnome-settings-daemon:8859): power-plugin-DEBUG: GsdPower initializing (gnome-settings-daemon:8859): power-plugin-DEBUG: Activating gsd_power plugin (gnome-settings-daemon:8859): power-plugin-DEBUG: Starting power manager ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsManager: emitting plugin-activated power ** (gnome-settings-daemon:8859): DEBUG: Plugin power: active ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsModule 0x20464a0 initialising ** (gnome-settings-daemon:8859): DEBUG: Loading /usr/lib/gnome-settings-daemon-3.0/libhousekeeping.so ** (gnome-settings-daemon:8859): DEBUG: Creating object of type GsdHousekeepingPlugin (gnome-settings-daemon:8859): housekeeping-plugin-DEBUG: GsdHousekeeping initializing (gnome-settings-daemon:8859): housekeeping-plugin-DEBUG: Activating gsd_housekeeping plugin (gnome-settings-daemon:8859): housekeeping-plugin-DEBUG: Starting housekeeping manager (gnome-settings-daemon:8859): housekeeping-plugin-DEBUG: housekeeping: will tidy up in 2 minutes ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsManager: emitting plugin-activated housekeeping ** (gnome-settings-daemon:8859): DEBUG: Plugin housekeeping: active ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsModule 0x2052850 initialising ** (gnome-settings-daemon:8859): DEBUG: Loading /usr/lib/gnome-settings-daemon-3.0/libgdu-sd.so ** (gnome-settings-daemon:8859): DEBUG: Creating object of type GduSdPlugin ** (gnome-settings-daemon:8859): DEBUG: GduSd initializing ** (gnome-settings-daemon:8859): DEBUG: Activating gdu_sd plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsManager: emitting plugin-activated gdu-sd ** (gnome-settings-daemon:8859): DEBUG: Plugin gdu-sd: active ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsModule 0x20528a0 initialising ** (gnome-settings-daemon:8859): DEBUG: Loading /usr/lib/gnome-settings-daemon-3.0/libxsettings.so ** (gnome-settings-daemon:8859): DEBUG: Creating object of type GnomeXSettingsPlugin ** (gnome-settings-daemon:8859): DEBUG: GnomeXSettings initializing ** (gnome-settings-daemon:8859): DEBUG: Activating gnome_xsettings plugin ** (gnome-settings-daemon:8859): DEBUG: Starting xsettings manager ** (gnome-settings-daemon:8859): DEBUG: Starting remote-display manager ** (gnome-settings-daemon:8859): DEBUG: GsdXSettingsGtk initializing ** (gnome-settings-daemon:8859): DEBUG: Setting GTK modules 'canberra-gtk-module' ** (gnome-settings-daemon:8859): DEBUG: xft_settings_set_xresources: orig res 'Xft.dpi: 96 Xft.antialias: 1 Xft.hinting: 1 Xft.hintstyle: hintfull Xft.rgba: rgb ' ** (gnome-settings-daemon:8859): DEBUG: xft_settings_set_xresources: new res 'Xft.dpi: 96 Xft.antialias: 1 Xft.hinting: 1 Xft.hintstyle: hintfull Xft.rgba: rgb ' ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsManager: emitting plugin-activated xsettings ** (gnome-settings-daemon:8859): DEBUG: Plugin xsettings: active ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsModule 0x206a4a0 initialising ** (gnome-settings-daemon:8859): DEBUG: Loading /usr/lib/gnome-settings-daemon-3.0/libxrandr.so ** (gnome-settings-daemon:8859): DEBUG: Creating object of type GsdXrandrPlugin (gnome-settings-daemon:8859): xrandr-plugin-DEBUG: GsdXrandr initializing (gnome-settings-daemon:8859): xrandr-plugin-DEBUG: Activating gsd_xrandr plugin (gnome-settings-daemon:8859): xrandr-plugin-DEBUG: Starting xrandr manager ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsManager: emitting plugin-activated xrandr ** (gnome-settings-daemon:8859): DEBUG: Plugin xrandr: active ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsModule 0x206a450 initialising ** (gnome-settings-daemon:8859): DEBUG: Loading /usr/lib/gnome-settings-daemon-3.0/libsound.so ** (gnome-settings-daemon:8859): DEBUG: Creating object of type GsdSoundPlugin (gnome-settings-daemon:8859): sound-plugin-DEBUG: GsdSound initializing (gnome-settings-daemon:8859): sound-plugin-DEBUG: Activating gsd_sound plugin (gnome-settings-daemon:8859): sound-plugin-DEBUG: Starting sound manager (gnome-settings-daemon:8859): sound-plugin-DEBUG: Registering directory monitor for /home/lmello/.local/share/sounds (gnome-settings-daemon:8859): sound-plugin-DEBUG: Registering directory monitor for /usr/share/sounds ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsManager: emitting plugin-activated sound ** (gnome-settings-daemon:8859): DEBUG: Plugin sound: active ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsModule 0x1fdaf20 initialising ** (gnome-settings-daemon:8859): DEBUG: Loading /usr/lib/gnome-settings-daemon-3.0/libkeyboard.so ** (gnome-settings-daemon:8859): DEBUG: Creating object of type GsdKeyboardPlugin (gnome-settings-daemon:8859): keyboard-plugin-DEBUG: GsdKeyboard initializing (gnome-settings-daemon:8859): keyboard-plugin-DEBUG: Activating gsd_keyboard plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsManager: emitting plugin-activated keyboard ** (gnome-settings-daemon:8859): DEBUG: Plugin keyboard: active ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsModule 0x1fdaed0 initialising ** (gnome-settings-daemon:8859): DEBUG: Loading /usr/lib/gnome-settings-daemon-3.0/libgsdwacom.so ** (gnome-settings-daemon:8859): DEBUG: Creating object of type GsdWacomPlugin (gnome-settings-daemon:8859): wacom-plugin-DEBUG: GsdWacom initializing (gnome-settings-daemon:8859): wacom-plugin-DEBUG: Activating gsd_wacom plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsManager: emitting plugin-activated gsdwacom ** (gnome-settings-daemon:8859): DEBUG: Plugin gsdwacom: active ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsModule 0x1fdae30 initialising ** (gnome-settings-daemon:8859): DEBUG: Loading /usr/lib/gnome-settings-daemon-3.0/liba11y-keyboard.so ** (gnome-settings-daemon:8859): DEBUG: Creating object of type GsdA11yKeyboardPlugin ** (gnome-settings-daemon:8859): DEBUG: GsdA11yKeyboard initializing ** (gnome-settings-daemon:8859): DEBUG: Activating gsd_a11y_keyboard plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsManager: emitting plugin-activated a11y-keyboard ** (gnome-settings-daemon:8859): DEBUG: Plugin a11y-keyboard: active ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsModule 0x1fdade0 initialising ** (gnome-settings-daemon:8859): DEBUG: Loading /usr/lib/gnome-settings-daemon-3.0/liba11y-settings.so ** (gnome-settings-daemon:8859): DEBUG: Creating object of type GsdA11ySettingsPlugin (gnome-settings-daemon:8859): a11y-settings-plugin-DEBUG: GsdA11ySettings initializing (gnome-settings-daemon:8859): a11y-settings-plugin-DEBUG: Activating gsd_a11y_settings plugin (gnome-settings-daemon:8859): a11y-settings-plugin-DEBUG: Starting a11y_settings manager ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsManager: emitting plugin-activated a11y-settings ** (gnome-settings-daemon:8859): DEBUG: Plugin a11y-settings: active ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsModule 0x2052ed0 initialising ** (gnome-settings-daemon:8859): DEBUG: Loading /usr/lib/gnome-settings-daemon-3.0/libmouse.so ** (gnome-settings-daemon:8859): DEBUG: Creating object of type GsdMousePlugin (gnome-settings-daemon:8859): mouse-plugin-DEBUG: GsdMouse initializing (gnome-settings-daemon:8859): mouse-plugin-DEBUG: Activating gsd_mouse plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsManager: emitting plugin-activated mouse ** (gnome-settings-daemon:8859): DEBUG: Plugin mouse: active ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsModule 0x206a540 initialising ** (gnome-settings-daemon:8859): DEBUG: Loading /usr/lib/gnome-settings-daemon-3.0/libscreensaver-proxy.so ** (gnome-settings-daemon:8859): DEBUG: Creating object of type GsdScreensaverProxyPlugin (gnome-settings-daemon:8859): screensaver-proxy-plugin-DEBUG: GsdScreensaverProxy initializing (gnome-settings-daemon:8859): screensaver-proxy-plugin-DEBUG: Activating gsd_screensaver_proxy plugin (gnome-settings-daemon:8859): screensaver-proxy-plugin-DEBUG: Starting screensaver-proxy manager ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsManager: emitting plugin-activated screensaver-proxy ** (gnome-settings-daemon:8859): DEBUG: Plugin screensaver-proxy: active ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsModule 0x206a590 initialising ** (gnome-settings-daemon:8859): DEBUG: Loading /usr/lib/gnome-settings-daemon-3.0/libsmartcard.so ** (gnome-settings-daemon:8859): DEBUG: Creating object of type GsdSmartcardPlugin (gnome-settings-daemon:8859): smartcard-plugin-DEBUG: GsdSmartcard initializing (gnome-settings-daemon:8859): smartcard-plugin-DEBUG: GsdSmartcardManagerError: Registering dbus error org.gnome.SettingsDaemon.Smartcard.Manager.Error.Generic (gnome-settings-daemon:8859): smartcard-plugin-DEBUG: GsdSmartcardManagerError: Registering dbus error org.gnome.SettingsDaemon.Smartcard.Manager.Error.WithNss (gnome-settings-daemon:8859): smartcard-plugin-DEBUG: GsdSmartcardManagerError: Registering dbus error org.gnome.SettingsDaemon.Smartcard.Manager.Error.LoadingDriver (gnome-settings-daemon:8859): smartcard-plugin-DEBUG: GsdSmartcardManagerError: Registering dbus error org.gnome.SettingsDaemon.Smartcard.Manager.Error.WatchingForEvents (gnome-settings-daemon:8859): smartcard-plugin-DEBUG: GsdSmartcardManagerError: Registering dbus error org.gnome.SettingsDaemon.Smartcard.Manager.Error.ReportingEvents (gnome-settings-daemon:8859): smartcard-plugin-DEBUG: GsdSmartcardManagerError: Registering dbus error org.gnome.SettingsDaemon.Smartcard.Manager.Error.FindingSmartcard (gnome-settings-daemon:8859): smartcard-plugin-DEBUG: Activating gsd_smartcard plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsManager: emitting plugin-activated smartcard ** (gnome-settings-daemon:8859): DEBUG: Plugin smartcard: active ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsModule 0x206a5e0 initialising ** (gnome-settings-daemon:8859): DEBUG: Loading /usr/lib/gnome-settings-daemon-3.0/libcolor.so ** (gnome-settings-daemon:8859): DEBUG: Creating object of type GsdColorPlugin (gnome-settings-daemon:8859): color-plugin-DEBUG: GsdColor initializing (gnome-settings-daemon:8859): color-plugin-DEBUG: Activating gsd_color plugin (gnome-settings-daemon:8859): color-plugin-DEBUG: Starting color manager ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsManager: emitting plugin-activated color ** (gnome-settings-daemon:8859): DEBUG: Plugin color: active ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsModule 0x206a720 initialising ** (gnome-settings-daemon:8859): DEBUG: Loading /usr/lib/gnome-settings-daemon-3.0/libprint-notifications.so ** (gnome-settings-daemon:8859): DEBUG: Creating object of type GsdPrintNotificationsPlugin (gnome-settings-daemon:8859): print-notifications-plugin-DEBUG: GsdPrintNotifications initializing (gnome-settings-daemon:8859): print-notifications-plugin-DEBUG: Activating gsd_print_notifications plugin (gnome-settings-daemon:8859): print-notifications-plugin-DEBUG: Starting print-notifications manager ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsManager: emitting plugin-activated print-notifications ** (gnome-settings-daemon:8859): DEBUG: Plugin print-notifications: active ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsModule 0x206a770 initialising ** (gnome-settings-daemon:8859): DEBUG: Loading /usr/lib/gnome-settings-daemon-3.0/libmedia-keys.so ** (gnome-settings-daemon:8859): DEBUG: Creating object of type GsdMediaKeysPlugin (gnome-settings-daemon:8859): media-keys-plugin-DEBUG: GsdMediaKeys initializing (gnome-settings-daemon:8859): media-keys-plugin-DEBUG: Adding system inhibitors for power keys (gnome-settings-daemon:8859): media-keys-plugin-DEBUG: Activating gsd_media_keys plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsManager: emitting plugin-activated media-keys ** (gnome-settings-daemon:8859): DEBUG: Plugin media-keys: active ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsModule 0x208a590 initialising ** (gnome-settings-daemon:8859): DEBUG: Loading /usr/lib/gnome-settings-daemon-3.0/librfkill.so ** (gnome-settings-daemon:8859): DEBUG: Creating object of type GsdRfkillPlugin (gnome-settings-daemon:8859): rfkill-plugin-DEBUG: GsdRfkill initializing (gnome-settings-daemon:8859): rfkill-plugin-DEBUG: Activating gsd_rfkill plugin (gnome-settings-daemon:8859): rfkill-plugin-DEBUG: Read killswitch of type 'WLAN' (idx=0): soft 0 hard 0 (gnome-settings-daemon:8859): rfkill-plugin-DEBUG: Read killswitch of type 'RFKILL' (idx=1): soft 0 hard 0 (gnome-settings-daemon:8859): rfkill-plugin-DEBUG: Read killswitch of type 'WLAN' (idx=2): soft 0 hard 0 (gnome-settings-daemon:8859): rfkill-plugin-DEBUG: Read killswitch of type 'RFKILL' (idx=4): soft 0 hard 0 ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsManager: emitting plugin-activated rfkill ** (gnome-settings-daemon:8859): DEBUG: Plugin rfkill: active ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsModule 0x208a680 initialising ** (gnome-settings-daemon:8859): DEBUG: Loading /usr/lib/gnome-settings-daemon-3.0/libdatetime.so ** (gnome-settings-daemon:8859): DEBUG: Creating object of type GsdDatetimePlugin (gnome-settings-daemon:8859): datetime-plugin-DEBUG: GsdDatetime initializing (gnome-settings-daemon:8859): datetime-plugin-DEBUG: Activating gsd_datetime plugin (gnome-settings-daemon:8859): datetime-plugin-DEBUG: Starting datetime manager (gnome-settings-daemon:8859): datetime-plugin-DEBUG: Automatic timezone disabled ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsManager: emitting plugin-activated datetime ** (gnome-settings-daemon:8859): DEBUG: Plugin datetime: active ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsModule 0x208a770 initialising ** (gnome-settings-daemon:8859): DEBUG: Loading /usr/lib/gnome-settings-daemon-3.0/libclipboard.so ** (gnome-settings-daemon:8859): DEBUG: Creating object of type GsdClipboardPlugin (gnome-settings-daemon:8859): clipboard-plugin-DEBUG: GsdClipboard initializing (gnome-settings-daemon:8859): clipboard-plugin-DEBUG: Activating gsd_clipboard plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsManager: emitting plugin-activated clipboard ** (gnome-settings-daemon:8859): DEBUG: Plugin clipboard: active ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsModule 0x208a4f0 initialising ** (gnome-settings-daemon:8859): DEBUG: Loading /usr/lib/gnome-settings-daemon-3.0/liborientation.so ** (gnome-settings-daemon:8859): DEBUG: Creating object of type GsdOrientationPlugin (gnome-settings-daemon:8859): orientation-plugin-DEBUG: GsdOrientation initializing (gnome-settings-daemon:8859): orientation-plugin-DEBUG: Activating gsd_orientation plugin ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsManager: emitting plugin-activated orientation ** (gnome-settings-daemon:8859): DEBUG: Plugin orientation: active ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsModule 0x7f1be0004680 initialising ** (gnome-settings-daemon:8859): DEBUG: Loading /usr/lib/gnome-settings-daemon-3.0/libcursor.so ** (gnome-settings-daemon:8859): DEBUG: Creating object of type GsdCursorPlugin (gnome-settings-daemon:8859): cursor-plugin-DEBUG: GsdCursor initializing (gnome-settings-daemon:8859): cursor-plugin-DEBUG: Activating gsd_cursor plugin (gnome-settings-daemon:8859): cursor-plugin-DEBUG: Starting cursor manager (gnome-settings-daemon:8859): cursor-plugin-DEBUG: Attempting to hide the cursor ** (gnome-settings-daemon:8859): DEBUG: GnomeSettingsManager: emitting plugin-activated cursor ** (gnome-settings-daemon:8859): DEBUG: Plugin cursor: active ** (gnome-settings-daemon:8859): DEBUG: Failed to set the environment: GDBus.Error:org.gnome.SessionManager.NotInInitialization: Setenv interface is only available during the DisplayServer and Initialization phase ** (gnome-settings-daemon:8859): DEBUG: Failed to set the environment: GDBus.Error:org.gnome.SessionManager.NotInInitialization: Setenv interface is only available during the DisplayServer and Initialization phase (gnome-settings-daemon:8859): media-keys-plugin-DEBUG: System inhibitor fd is 19 ** (gnome-settings-daemon:8859): DEBUG: Registered client at path /org/gnome/SessionManager/Client9 ** (gnome-settings-daemon:8859): DEBUG: Vino appeared (gnome-settings-daemon:8859): color-plugin-DEBUG: profile /home/lmello/.local/share/icc/edid-c56b37dddf61ba64c005bc2e76a78cc9.icc added (gnome-settings-daemon:8859): keyboard-plugin-DEBUG: Starting keyboard manager (gnome-settings-daemon:8859): keyboard-plugin-DEBUG: Started the keyboard plugin, applying all settings (gnome-settings-daemon:8859): keyboard-plugin-DEBUG: Applying the repeat settings (gnome-settings-daemon:8859): keyboard-plugin-DEBUG: Applying the bell settings (gnome-settings-daemon:8859): keyboard-plugin-DEBUG: Applying the num-lock settings (gnome-settings-daemon:8859): keyboard-plugin-DEBUG: Remember num-lock is set, so applying setting 'GSD_NUM_LOCK_STATE_OFF' ** (gnome-settings-daemon:8859): DEBUG: Starting a11y_keyboard manager (gnome-settings-daemon:8859): mouse-plugin-DEBUG: setting handedness on SynPS/2 Synaptics TouchPad (gnome-settings-daemon:8859): mouse-plugin-DEBUG: setting motion on SynPS/2 Synaptics TouchPad (gnome-settings-daemon:8859): mouse-plugin-DEBUG: Setting accel -1/-1, threshold -1 for device 'SynPS/2 Synaptics TouchPad' (gnome-settings-daemon:8859): mouse-plugin-DEBUG: setting tap to click on SynPS/2 Synaptics TouchPad (gnome-settings-daemon:8859): mouse-plugin-DEBUG: setting edge scroll on SynPS/2 Synaptics TouchPad (gnome-settings-daemon:8859): mouse-plugin-DEBUG: setting horiz scroll on SynPS/2 Synaptics TouchPad (gnome-settings-daemon:8859): mouse-plugin-DEBUG: Trying to set natural (reverse) scroll for "SynPS/2 Synaptics TouchPad" (gnome-settings-daemon:8859): mouse-plugin-DEBUG: Trying to set device enabled for 12 (gnome-settings-daemon:8859): mouse-plugin-DEBUG: Enabled device 12 (gnome-settings-daemon:8859): smartcard-plugin-DEBUG: attempting to load NSS database '/etc/pki/nssdb' (gnome-settings-daemon:8859): smartcard-plugin-DEBUG: NSS database '/etc/pki/nssdb' loaded (gnome-settings-daemon:8859): print-notifications-plugin-DEBUG: Got dests from local CUPS server. (gnome-settings-daemon:8859): media-keys-plugin-DEBUG: Starting media_keys manager (gnome-settings-daemon:8859): media-keys-plugin-DEBUG: Starting mpris controller (gnome-settings-daemon:8859): orientation-plugin-DEBUG: Did not find an accelerometer ** (gnome-settings-daemon:8859): DEBUG: Setting original state ** (gnome-settings-daemon:8859): DEBUG: Enabling because of remote display status (vnc: 0) (gnome-settings-daemon:8859): smartcard-plugin-DEBUG: taking name org.gnome.SettingsDaemon.Smartcard on session bus (gnome-settings-daemon:8859): smartcard-plugin-DEBUG: Getting list of suitable drivers (gnome-settings-daemon:8859): Gvc-DEBUG: get server info (gnome-settings-daemon:8859): Gvc-DEBUG: update server (gnome-settings-daemon:8859): Gvc-DEBUG: Udpating card alsa_card.pci-0000_00_1b.0 (index: 0 driver: module-alsa-card.c): (gnome-settings-daemon:8859): Gvc-DEBUG: Profile 'input:analog-stereo': 1 sources 0 sinks (gnome-settings-daemon:8859): Gvc-DEBUG: Profile 'output:analog-stereo': 0 sources 1 sinks (gnome-settings-daemon:8859): Gvc-DEBUG: Profile 'output:analog-stereo+input:analog-stereo': 1 sources 1 sinks (Current) (gnome-settings-daemon:8859): Gvc-DEBUG: Profile 'output:hdmi-stereo': 0 sources 1 sinks (gnome-settings-daemon:8859): Gvc-DEBUG: Profile 'output:hdmi-stereo+input:analog-stereo': 1 sources 1 sinks (gnome-settings-daemon:8859): Gvc-DEBUG: Profile 'output:hdmi-surround': 0 sources 1 sinks (gnome-settings-daemon:8859): Gvc-DEBUG: Profile 'output:hdmi-surround+input:analog-stereo': 1 sources 1 sinks (gnome-settings-daemon:8859): Gvc-DEBUG: Profile 'off': 0 sources 0 sinks (gnome-settings-daemon:8859): Gvc-DEBUG: Property: 'alsa.card' = '0' (gnome-settings-daemon:8859): Gvc-DEBUG: Property: 'alsa.card_name' = 'HDA Intel PCH' (gnome-settings-daemon:8859): Gvc-DEBUG: Property: 'alsa.long_card_name' = 'HDA Intel PCH at 0xc0710000 irq 43' (gnome-settings-daemon:8859): Gvc-DEBUG: Property: 'alsa.driver_name' = 'snd_hda_intel' (gnome-settings-daemon:8859): Gvc-DEBUG: Property: 'device.bus_path' = 'pci-0000:00:1b.0' (gnome-settings-daemon:8859): Gvc-DEBUG: Property: 'sysfs.path' = '/devices/pci0000:00/0000:00:1b.0/sound/card0' (gnome-settings-daemon:8859): Gvc-DEBUG: Property: 'device.bus' = 'pci' (gnome-settings-daemon:8859): Gvc-DEBUG: Property: 'device.vendor.id' = '8086' (gnome-settings-daemon:8859): Gvc-DEBUG: Property: 'device.vendor.name' = 'Intel Corporation' (gnome-settings-daemon:8859): Gvc-DEBUG: Property: 'device.product.id' = '1e20' (gnome-settings-daemon:8859): Gvc-DEBUG: Property: 'device.product.name' = '7 Series/C210 Series Chipset Family High Definition Audio Controller' (gnome-settings-daemon:8859): Gvc-DEBUG: Property: 'device.form_factor' = 'internal' (gnome-settings-daemon:8859): Gvc-DEBUG: Property: 'device.string' = '0' (gnome-settings-daemon:8859): Gvc-DEBUG: Property: 'device.description' = 'Built-in Audio' (gnome-settings-daemon:8859): Gvc-DEBUG: Property: 'module-udev-detect.discovered' = '1' (gnome-settings-daemon:8859): Gvc-DEBUG: Property: 'device.icon_name' = 'audio-card-pci' (gnome-settings-daemon:8859): Gvc-DEBUG: 4 profiles supported on port Internal Microphone (gnome-settings-daemon:8859): Gvc-DEBUG: 4 profiles supported on port Microphone (gnome-settings-daemon:8859): Gvc-DEBUG: 2 profiles supported on port Analog Output (gnome-settings-daemon:8859): Gvc-DEBUG: 2 profiles supported on port Speakers (gnome-settings-daemon:8859): Gvc-DEBUG: 2 profiles supported on port Headphones (gnome-settings-daemon:8859): Gvc-DEBUG: 4 profiles supported on port HDMI / DisplayPort (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - card: 0x20963a0 (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - card port name: hdmi-output-0 (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - 1st line: HDMI / DisplayPort (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - 2nd line: Built-in Audio (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - port available 0, value passed in 0 (gnome-settings-daemon:8859): Gvc-DEBUG: Set profiles for 'HDMI / DisplayPort' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:hdmi-surround' is 'output:hdmi-surround' (gnome-settings-daemon:8859): Gvc-DEBUG: Adding profile to combobox: 'output:hdmi-surround' - 'Digital Surround 5.1 (HDMI) Output' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:hdmi-surround+input:analog-stereo' is 'output:hdmi-surround' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:hdmi-stereo' is 'output:hdmi-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: Adding profile to combobox: 'output:hdmi-stereo' - 'Digital Stereo (HDMI) Output' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:hdmi-stereo+input:analog-stereo' is 'output:hdmi-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:hdmi-surround' is 'output:hdmi-surround' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:hdmi-surround+input:analog-stereo' is 'output:hdmi-surround' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:hdmi-stereo' is 'output:hdmi-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:hdmi-stereo+input:analog-stereo' is 'output:hdmi-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: create_ui_device_from_port, direction 1, description 'HDMI / DisplayPort', origin 'Built-in Audio', port available 0 (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - card: 0x20963a0 (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - card port name: analog-output-headphones (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - 1st line: Headphones (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - 2nd line: Built-in Audio (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - port available 1, value passed in 1 (gnome-settings-daemon:8859): Gvc-DEBUG: Set profiles for 'Headphones' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:analog-stereo' is 'output:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: Adding profile to combobox: 'output:analog-stereo' - 'Analog Stereo Output' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:analog-stereo+input:analog-stereo' is 'output:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:analog-stereo' is 'output:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:analog-stereo+input:analog-stereo' is 'output:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: create_ui_device_from_port, direction 1, description 'Headphones', origin 'Built-in Audio', port available 1 (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - card: 0x20963a0 (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - card port name: analog-output-speaker (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - 1st line: Speakers (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - 2nd line: Built-in Audio (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - port available 0, value passed in 0 (gnome-settings-daemon:8859): Gvc-DEBUG: Set profiles for 'Speakers' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:analog-stereo' is 'output:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: Adding profile to combobox: 'output:analog-stereo' - 'Analog Stereo Output' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:analog-stereo+input:analog-stereo' is 'output:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:analog-stereo' is 'output:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:analog-stereo+input:analog-stereo' is 'output:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: create_ui_device_from_port, direction 1, description 'Speakers', origin 'Built-in Audio', port available 0 (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - card: 0x20963a0 (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - card port name: analog-output (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - 1st line: Analog Output (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - 2nd line: Built-in Audio (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - port available 1, value passed in 1 (gnome-settings-daemon:8859): Gvc-DEBUG: Set profiles for 'Analog Output' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:analog-stereo' is 'output:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: Adding profile to combobox: 'output:analog-stereo' - 'Analog Stereo Output' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:analog-stereo+input:analog-stereo' is 'output:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:analog-stereo' is 'output:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:analog-stereo+input:analog-stereo' is 'output:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: create_ui_device_from_port, direction 1, description 'Analog Output', origin 'Built-in Audio', port available 1 (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - card: 0x20963a0 (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - card port name: analog-input-mic (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - 1st line: Microphone (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - 2nd line: Built-in Audio (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - port available 0, value passed in 0 (gnome-settings-daemon:8859): Gvc-DEBUG: Set profiles for 'Microphone' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'input:analog-stereo' is 'input:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: Adding profile to combobox: 'input:analog-stereo' - 'Analog Stereo Input' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:hdmi-surround+input:analog-stereo' is 'input:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:hdmi-stereo+input:analog-stereo' is 'input:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:analog-stereo+input:analog-stereo' is 'input:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'input:analog-stereo' is 'input:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:hdmi-surround+input:analog-stereo' is 'input:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:hdmi-stereo+input:analog-stereo' is 'input:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:analog-stereo+input:analog-stereo' is 'input:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: create_ui_device_from_port, direction 0, description 'Microphone', origin 'Built-in Audio', port available 0 (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - card: 0x20963a0 (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - card port name: analog-input-internal-mic (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - 1st line: Internal Microphone (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - 2nd line: Built-in Audio (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - port available 1, value passed in 1 (gnome-settings-daemon:8859): Gvc-DEBUG: Set profiles for 'Internal Microphone' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'input:analog-stereo' is 'input:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: Adding profile to combobox: 'input:analog-stereo' - 'Analog Stereo Input' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:hdmi-surround+input:analog-stereo' is 'input:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:hdmi-stereo+input:analog-stereo' is 'input:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:analog-stereo+input:analog-stereo' is 'input:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'input:analog-stereo' is 'input:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:hdmi-surround+input:analog-stereo' is 'input:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:hdmi-stereo+input:analog-stereo' is 'input:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: The canonical name for 'output:analog-stereo+input:analog-stereo' is 'input:analog-stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: create_ui_device_from_port, direction 0, description 'Internal Microphone', origin 'Built-in Audio', port available 1 (gnome-settings-daemon:8859): Gvc-DEBUG: Updating client: index=0 name='Login Session c6' (gnome-settings-daemon:8859): Gvc-DEBUG: Updating client: index=4 name='XSMP Session on gnome-session as 1082af85112e29f57113976649363799400000080420029' (gnome-settings-daemon:8859): Gvc-DEBUG: Updating client: index=5 name='GNOME Shell' (gnome-settings-daemon:8859): Gvc-DEBUG: Updating client: index=6 name='GNOME Shell Volume Control' (gnome-settings-daemon:8859): Gvc-DEBUG: Updating client: index=9 name='GNOME Volume Control Media Keys' (gnome-settings-daemon:8859): power-plugin-DEBUG: Screen configuration changed (gnome-settings-daemon:8859): power-plugin-DEBUG: TESTSUITE: Unblanked screen (gnome-settings-daemon:8859): power-plugin-DEBUG: Adding suspend delay inhibitor (gnome-settings-daemon:8859): power-plugin-DEBUG: setting up sleep callback 90s (gnome-settings-daemon:8859): power-plugin-DEBUG: setting up sleep warning callback 72s ** (gnome-settings-daemon:8859): DEBUG: xft_settings_set_xresources: orig res 'Xft.dpi: 96 Xft.antialias: 1 Xft.hinting: 1 Xft.hintstyle: hintfull Xft.rgba: rgb ' ** (gnome-settings-daemon:8859): DEBUG: xft_settings_set_xresources: new res 'Xft.dpi: 96 Xft.antialias: 1 Xft.hinting: 1 Xft.hintstyle: hintfull Xft.rgba: rgb ' (gnome-settings-daemon:8859): Gvc-DEBUG: Updating sink: index=0 name='alsa_output.pci-0000_00_1b.0.analog-stereo' description='Built-in Audio Analog Stereo' map='front-left,front-right' (gnome-settings-daemon:8859): Gvc-DEBUG: update sink - is new (gnome-settings-daemon:8859): Gvc-DEBUG: Attempt to match_stream update_with_existing_outputs - Try description : 'Analog Output', origin : 'Built-in Audio', device port name : 'analog-output', card : 0x20963a0, AGAINST stream port: 'analog-output-headphones', sink card id 0 (gnome-settings-daemon:8859): Gvc-DEBUG: Attempt to match_stream update_with_existing_outputs - Try description : 'Speakers', origin : 'Built-in Audio', device port name : 'analog-output-speaker', card : 0x20963a0, AGAINST stream port: 'analog-output-headphones', sink card id 0 (gnome-settings-daemon:8859): Gvc-DEBUG: Attempt to match_stream update_with_existing_outputs - Try description : 'Headphones', origin : 'Built-in Audio', device port name : 'analog-output-headphones', card : 0x20963a0, AGAINST stream port: 'analog-output-headphones', sink card id 0 (gnome-settings-daemon:8859): Gvc-DEBUG: Match device with stream: We have a match with description: 'Headphones', origin: 'Built-in Audio', cached already with device id 2, so set stream id to 1 (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - sink/source id: 1 (gnome-settings-daemon:8859): Gvc-DEBUG: Attempt to match_stream update_with_existing_outputs - Try description : 'Analog Output', origin : 'Built-in Audio', device port name : 'analog-output', card : 0x20963a0, AGAINST stream port: 'analog-output', sink card id 0 (gnome-settings-daemon:8859): Gvc-DEBUG: Match device with stream: We have a match with description: 'Analog Output', origin: 'Built-in Audio', cached already with device id 4, so set stream id to 1 (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - sink/source id: 1 (gnome-settings-daemon:8859): Gvc-DEBUG: Attempt to match_stream update_with_existing_outputs - Try description : 'Analog Output', origin : 'Built-in Audio', device port name : 'analog-output', card : 0x20963a0, AGAINST stream port: 'analog-output-speaker', sink card id 0 (gnome-settings-daemon:8859): Gvc-DEBUG: Attempt to match_stream update_with_existing_outputs - Try description : 'Speakers', origin : 'Built-in Audio', device port name : 'analog-output-speaker', card : 0x20963a0, AGAINST stream port: 'analog-output-speaker', sink card id 0 (gnome-settings-daemon:8859): Gvc-DEBUG: Match device with stream: We have a match with description: 'Speakers', origin: 'Built-in Audio', cached already with device id 3, so set stream id to 1 (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - sink/source id: 1 (gnome-settings-daemon:8859): Gvc-DEBUG: lookup-device-from-stream found device: device description 'Analog Output', device port = 'analog-output', device stream id 1 AND stream port = 'analog-output' stream id '1' and stream description 'Built-in Audio Analog Stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: gvc_mixer_control_lookup_device_from_stream - Could not find a device for stream 'Built-in Audio Analog Stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: active_sink change (gnome-settings-daemon:8859): power-plugin-DEBUG: System inhibitor fd is 23 (gnome-settings-daemon:8859): GnomeDesktop-DEBUG: loading: /usr/share/libgnome-desktop-3.0/pnp.ids (gnome-settings-daemon:8859): GnomeDesktop-DEBUG: Added 55055 items to the vendor hashtable (gnome-settings-daemon:8859): color-plugin-DEBUG: output xrandr-Seiko Epson Corporation added (gnome-settings-daemon:8859): Gvc-DEBUG: Updating source: index=0 name='alsa_output.pci-0000_00_1b.0.analog-stereo.monitor' description='Monitor of Built-in Audio Analog Stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: Updating source: index=1 name='alsa_input.pci-0000_00_1b.0.analog-stereo' description='Built-in Audio Analog Stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: update source (gnome-settings-daemon:8859): Gvc-DEBUG: Attempt to match_stream update_with_existing_outputs - Try description : 'Internal Microphone', origin : 'Built-in Audio', device port name : 'analog-input-internal-mic', card : 0x20963a0, AGAINST stream port: 'analog-input-mic', sink card id 0 (gnome-settings-daemon:8859): Gvc-DEBUG: Attempt to match_stream update_with_existing_outputs - Try description : 'Microphone', origin : 'Built-in Audio', device port name : 'analog-input-mic', card : 0x20963a0, AGAINST stream port: 'analog-input-mic', sink card id 0 (gnome-settings-daemon:8859): Gvc-DEBUG: Match device with stream: We have a match with description: 'Microphone', origin: 'Built-in Audio', cached already with device id 5, so set stream id to 2 (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - sink/source id: 2 (gnome-settings-daemon:8859): Gvc-DEBUG: Attempt to match_stream update_with_existing_outputs - Try description : 'Internal Microphone', origin : 'Built-in Audio', device port name : 'analog-input-internal-mic', card : 0x20963a0, AGAINST stream port: 'analog-input-internal-mic', sink card id 0 (gnome-settings-daemon:8859): Gvc-DEBUG: Match device with stream: We have a match with description: 'Internal Microphone', origin: 'Built-in Audio', cached already with device id 6, so set stream id to 2 (gnome-settings-daemon:8859): Gvc-DEBUG: gvc-mixer-output-set-property - sink/source id: 2 (gnome-settings-daemon:8859): Gvc-DEBUG: lookup-device-from-stream found device: device description 'Internal Microphone', device port = 'analog-input-internal-mic', device stream id 2 AND stream port = 'analog-input-internal-mic' stream id '2' and stream description 'Built-in Audio Analog Stereo' (gnome-settings-daemon:8859): Gvc-DEBUG: gvc_mixer_control_lookup_device_from_stream - Could not find a device for stream 'Built-in Audio Analog Stereo' (gnome-settings-daemon:8859): color-plugin-DEBUG: assign for /org/freedesktop/ColorManager/devices/xrandr_Seiko_Epson_Corporation_lmello_1000 already in progress (gnome-settings-daemon:8859): Gvc-DEBUG: Updating client: index=5 name='GNOME Shell' (gnome-settings-daemon:8859): color-plugin-DEBUG: need to assign display device xrandr-Seiko Epson Corporation (gnome-settings-daemon:8859): color-plugin-DEBUG: auto-profile edid /home/lmello/.local/share/icc/edid-c56b37dddf61ba64c005bc2e76a78cc9.icc exists with md (gnome-settings-daemon:8859): color-plugin-DEBUG: not a calib profile for xrandr-Seiko Epson Corporation (gnome-settings-daemon:8859): color-plugin-DEBUG: setting root window ICC profile atom from /home/lmello/.local/share/icc/edid-c56b37dddf61ba64c005bc2e76a78cc9.icc (gnome-settings-daemon:8859): color-plugin-DEBUG: falling back to dummy ramp (gnome-settings-daemon:8859): power-plugin-DEBUG: Received screensaver ActiveChanged signal: 1 (old: 0) (gnome-settings-daemon:8859): power-plugin-DEBUG: setting up blank callback for 15s (gnome-settings-daemon:8859): power-plugin-DEBUG: setting up sleep callback 90s (gnome-settings-daemon:8859): power-plugin-DEBUG: setting up sleep warning callback 72s (gnome-settings-daemon:8859): power-plugin-DEBUG: Doing a state transition: blank (gnome-settings-daemon:8859): power-plugin-DEBUG: TESTSUITE: Blanked screen (gnome-settings-daemon:8859): power-plugin-DEBUG: idletime watch: blank (4) (gnome-settings-daemon:8859): power-plugin-DEBUG: Not going to 'less idle' mode blank (current: blank) (gnome-settings-daemon:8859): power-plugin-DEBUG: idletime watch: sleep-warning (6) (gnome-settings-daemon:8859): power-plugin-DEBUG: Doing a state transition: normal (gnome-settings-daemon:8859): power-plugin-DEBUG: TESTSUITE: Unblanked screen (gnome-settings-daemon:8859): cursor-plugin-DEBUG: Device 12 'SynPS/2 Synaptics TouchPad' became active (gnome-settings-daemon:8859): cursor-plugin-DEBUG: Attempting to show the cursor (gnome-settings-daemon:8859): power-plugin-DEBUG: idletime reset (gnome-settings-daemon:8859): power-plugin-DEBUG: Doing a state transition: blank (gnome-settings-daemon:8859): power-plugin-DEBUG: TESTSUITE: Blanked screen (gnome-settings-daemon:8859): power-plugin-DEBUG: Doing a state transition: normal (gnome-settings-daemon:8859): power-plugin-DEBUG: TESTSUITE: Unblanked screen (gnome-settings-daemon:8859): power-plugin-DEBUG: idletime reset (gnome-settings-daemon:8859): power-plugin-DEBUG: Doing a state transition: normal (gnome-settings-daemon:8859): power-plugin-DEBUG: TESTSUITE: Unblanked screen (gnome-settings-daemon:8859): power-plugin-DEBUG: idletime watch: blank (4) (gnome-settings-daemon:8859): power-plugin-DEBUG: Doing a state transition: blank (gnome-settings-daemon:8859): power-plugin-DEBUG: TESTSUITE: Blanked screen (gnome-settings-daemon:8859): housekeeping-plugin-DEBUG: housekeeping: checking thumbnail cache size and freshness (gnome-settings-daemon:8859): power-plugin-DEBUG: idletime reset (gnome-settings-daemon:8859): power-plugin-DEBUG: Doing a state transition: normal (gnome-settings-daemon:8859): power-plugin-DEBUG: TESTSUITE: Unblanked screen (gnome-settings-daemon:8859): power-plugin-DEBUG: Received screensaver ActiveChanged signal: 0 (old: 1) (gnome-settings-daemon:8859): power-plugin-DEBUG: setting up sleep callback 90s (gnome-settings-daemon:8859): power-plugin-DEBUG: setting up sleep warning callback 72s ---
(In reply to comment #16) > > I have tried turning off my trackpad: result is the same, just without the > > cursor-plugin printouts. > > How did you disable the trackpad? > > Can you try disabling it through xinput and see if suspend on idle works? > Something like: > > $ xinput > [ check the touchpad's id ] > $ xinput float <touchpad id> > > To re-enable it: > > $ xinput reattach <touchpad id> 2 I previously disabled touchpad using gnome settings. Tested again with xinput float, same result. Another detail: modifying gsd to disable the show_sleep_warning() call does let my computer suspend, but in that case my computer immediately tries to suspend again after resuming. Normal suspend methods such as lid close and suspend button don't have this problem.
(In reply to comment #20) ... > (gnome-settings-daemon:8859): power-plugin-DEBUG: idletime watch: sleep-warning > (6) > (gnome-settings-daemon:8859): power-plugin-DEBUG: Doing a state transition: > normal > (gnome-settings-daemon:8859): power-plugin-DEBUG: TESTSUITE: Unblanked screen > (gnome-settings-daemon:8859): cursor-plugin-DEBUG: Device 12 'SynPS/2 Synaptics > TouchPad' became active > (gnome-settings-daemon:8859): cursor-plugin-DEBUG: Attempting to show the > cursor > (gnome-settings-daemon:8859): power-plugin-DEBUG: idletime reset ... This is definitely not normal. If you aren't touching the laptop when it's about to go to sleep then I can I only think that this is a hardware hiccup. Since I can't reproduce, I'm running out of ideas here :-/
Created attachment 274627 [details] gsd debug info Also seeing this in Arch with Gnome 3.12, attached is gnome-settings-daemon debug log. I'm using a desktop, so no touchpad to deal with. The only time automatic suspend works is when screen blank time and automatic suspend time are set to the same value (e.g. 15 min for both). This scenario not present in debug log, but I can provide a new log if that will help. log info for approx. 4 hours idle time. Screen lock is ON, 30 minutes Show notifications on lock screen is OFF Blank screen after 5 min Auto suspend after 80 minutes
(In reply to comment #22) > (In reply to comment #20) > ... > > (gnome-settings-daemon:8859): power-plugin-DEBUG: idletime watch: sleep-warning > > (6) > > (gnome-settings-daemon:8859): power-plugin-DEBUG: Doing a state transition: > > normal > > (gnome-settings-daemon:8859): power-plugin-DEBUG: TESTSUITE: Unblanked screen > > (gnome-settings-daemon:8859): cursor-plugin-DEBUG: Device 12 'SynPS/2 Synaptics > > TouchPad' became active > > (gnome-settings-daemon:8859): cursor-plugin-DEBUG: Attempting to show the > > cursor > > (gnome-settings-daemon:8859): power-plugin-DEBUG: idletime reset > ... > > This is definitely not normal. If you aren't touching the laptop when it's > about to go to sleep then I can I only think that this is a hardware hiccup. > > Since I can't reproduce, I'm running out of ideas here :-/ I disabled my touchpad using xinput and the results were the same, so I don't think it's a hardware thing... which build flags do you use to build mutter and gnome-settings-daemon?
(In reply to comment #24) > I disabled my touchpad using xinput and the results were the same, so I don't > think it's a hardware thing... which build flags do you use to build mutter and > gnome-settings-daemon? I don't think there's any compile time options that matter here but see: http://pkgs.fedoraproject.org/cgit/gnome-settings-daemon.git/tree/gnome-settings-daemon.spec#n95 http://pkgs.fedoraproject.org/cgit/mutter.git/tree/mutter.spec#n68 Can you perhaps try Fedora 20 and see if it reproduces there?
If the problem still happens with 3.12, please file a new bug.