Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Using Fedora
FedoraForum Search

Forgot Password? Join Us!

Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 24th October 2012, 08:46 PM
fetchinson Offline
Registered User
 
Join Date: Jun 2008
Posts: 68
linuxfirefox
No gnome-screensaver process (but screen still goes blank after a while).

Hi folks, I'm not using gnome or kde only the sawfish window manager stand alone. But I do launch gnome-settings-daemon for all the goodies it provides. Now my question is that I don't know what causes my laptop screen to go blank after a while. There is no gnome-screensaver process or anything like *screen* but nevertheless screensaving works very well.

Is this a dbus thing?
Reply With Quote
  #2  
Old 24th October 2012, 09:23 PM
brianblaze's Avatar
brianblaze Offline
Registered User
 
Join Date: Jun 2012
Location: Montreal
Posts: 112
linuxfirefox
Re: No gnome-screensaver process (but screen still goes blank after a while).

Sadly I am not too familiar with kde but even gnome does not have screen savers but I too have the same weirdness which I have never really bothered to worry about but my screen should turn off after an hour but it does after like 15 minutes... in my system settings -> screen it says it should tunr off after 1 hour... Probably something similar.... maybe not
Reply With Quote
  #3  
Old 24th October 2012, 09:53 PM
sidebrnz's Avatar
sidebrnz Offline
Registered User
 
Join Date: Oct 2007
Location: Freedonia
Age: 63
Posts: 2,107
linuxfirefox
Re: No gnome-screensaver process (but screen still goes blank after a while).

Gnome-screensaver should only be used with Gnome, but it will try to take over any time it's installed. Fetchinson, you should check to see if xscreensaver is installed and if so, how it's set. The best way to do this is to run this in a terminal, not as root:

xscreensaver-demo

If bash can't find it, you don't have xscreensaver installed. If it runs, it may be set to act only as a screen blanker. Also, it occurs to me that you might be using the wrong command to look for a screen saver.

ps aux | grep *screen*

returns only the grep command on my box, but

ps aux | grep screen

also shows that xscreensaver is running. HTH, HAND.
__________________
Registered Linux user #470359 and permanently recovered BOFH.

Any advice in this post is worth exactly what you paid for it.
Reply With Quote
  #4  
Old 24th October 2012, 09:58 PM
fetchinson Offline
Registered User
 
Join Date: Jun 2008
Posts: 68
linuxfirefox
Re: No gnome-screensaver process (but screen still goes blank after a while).

Quote:
Originally Posted by sidebrnz View Post
Gnome-screensaver should only be used with Gnome, but it will try to take over any time it's installed. Fetchinson, you should check to see if xscreensaver is installed and if so, how it's set.
No, xscreensaver is not installed so it is not running.

And whatever runs is actuallly only acting as screen blanker as you said, so after a while the screen goes simply blank. And then when it has to it wakes up as it should so it functions perfectly well. I just can't find what process it is

Quote:
Also, it occurs to me that you might be using the wrong command to look for a screen saver.

ps aux | grep *screen*

returns only the grep command on my box, but

ps aux | grep screen
Sure, I do the former "ps aux | grep screen" so I'm definitely sure that nothing of the sort is running.

My only guess is a dbus thingy at this point but don't know how to track it down.
Reply With Quote
  #5  
Old 24th October 2012, 10:59 PM
secipolla Offline
Registered User
 
Join Date: May 2011
Posts: 700
linuxchrome
Re: No gnome-screensaver process (but screen still goes blank after a while).

That's the X default setting (blanks after 600s).

I think you can disable it for the session with

Code:
xset -dpms
or for 'ever' with a file turning off DPMS in /etc/X11/xorg.conf.d

Maybe something like:
Code:
Section "Monitor"
    Identifier     "Monitor0"
    Option         "DPMS" "off"
EndSection
P.S. note that even out of X the screen blanks when idle and that's a kernel setting AFAIK (but haven't searched how to disable that).

Other references: man xset and https://wiki.archlinux.org/index.php...ment_Signaling

Last edited by secipolla; 24th October 2012 at 11:09 PM.
Reply With Quote
  #6  
Old 25th October 2012, 02:18 AM
cazo Online
Registered User
 
Join Date: Sep 2005
Location: Redneck Riviera
Posts: 333
linuxchrome
Re: No gnome-screensaver process (but screen still goes blank after a while).

Does your screen go blank, or does it actually 'sleep'? It's probably hard to tell on a laptop's internal display, but an external display's power LED usually changes from green to amber.

Code:
gsettings list-recursively org.gnome.settings-daemon.plugins.power

org.gnome.settings-daemon.plugins.power active true
org.gnome.settings-daemon.plugins.power button-hibernate 'hibernate'
org.gnome.settings-daemon.plugins.power button-power 'suspend'
org.gnome.settings-daemon.plugins.power button-sleep 'hibernate'
org.gnome.settings-daemon.plugins.power button-suspend 'suspend'
org.gnome.settings-daemon.plugins.power critical-battery-action 'hibernate'
org.gnome.settings-daemon.plugins.power idle-brightness 30
org.gnome.settings-daemon.plugins.power idle-dim-ac false
org.gnome.settings-daemon.plugins.power idle-dim-battery true
org.gnome.settings-daemon.plugins.power idle-dim-time 90
org.gnome.settings-daemon.plugins.power lid-close-ac-action 'blank'
org.gnome.settings-daemon.plugins.power lid-close-battery-action 'suspend'
org.gnome.settings-daemon.plugins.power notify-perhaps-recall true
org.gnome.settings-daemon.plugins.power percentage-action 2
org.gnome.settings-daemon.plugins.power percentage-critical 3
org.gnome.settings-daemon.plugins.power percentage-low 10
org.gnome.settings-daemon.plugins.power priority 1
org.gnome.settings-daemon.plugins.power sleep-display-ac 1800
org.gnome.settings-daemon.plugins.power sleep-display-battery 1800
org.gnome.settings-daemon.plugins.power sleep-inactive-ac-timeout 0
org.gnome.settings-daemon.plugins.power sleep-inactive-ac-type 'suspend'
org.gnome.settings-daemon.plugins.power sleep-inactive-battery-timeout 0
org.gnome.settings-daemon.plugins.power sleep-inactive-battery-type 'suspend'
org.gnome.settings-daemon.plugins.power time-action 120
org.gnome.settings-daemon.plugins.power time-critical 300
org.gnome.settings-daemon.plugins.power time-low 1200
org.gnome.settings-daemon.plugins.power use-time-for-policy true

Last edited by cazo; 25th October 2012 at 02:21 AM.
Reply With Quote
  #7  
Old 25th October 2012, 08:19 AM
fetchinson Offline
Registered User
 
Join Date: Jun 2008
Posts: 68
linuxfirefox
Re: No gnome-screensaver process (but screen still goes blank after a while).

Thanks guys for the replies.

It turns out there is a new framework in the kernel called fanotify which can monitor files and directories for changes and even tells you what process it is doing it. And using fanotify I found out that upowerd is the culprit
Reply With Quote
Reply

Tags
blank, gnomescreensaver, process, screen

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Blank screen screensaver VS turning disply off kona0197 Wibble 4 11th January 2012 02:23 AM
After Screensaver, Screen is Blank changturkey Using Fedora 0 3rd December 2008 12:34 PM
gnome screensaver and screen lock taozhyn Using Fedora 0 20th August 2007 05:47 PM
Failed to execute child process "gnome-screensaver" loren456 Using Fedora 1 25th June 2007 03:46 AM
Blank screen after booting process 4th guy Using Fedora 0 17th June 2006 04:47 PM


Current GMT-time: 22:21 (Friday, 24-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat