All of lore.kernel.org
 help / color / mirror / Atom feed
* screensaver
@ 2002-11-11  1:46 neil t
  0 siblings, 0 replies; 11+ messages in thread
From: neil t @ 2002-11-11  1:46 UTC (permalink / raw)
  To: linux-newbie


Greetings all
Thanks for the info about Xscreensaver.  It was there right under my nose, as usual.  I searched the Mandrake cd's and found the Xscreensaver RPM.  
Thanks again.
Neil
-- 
Arachne/DRdos-Mandrake9.0/Basiclinux-QrpHamRadio
http://www.qsl.net/wa4chq
 


__________________________________________________________________
The NEW Netscape 7.0 browser is now available. Upgrade now! http://channels.netscape.com/ns/browsers/download.jsp 

Get your own FREE, personal Netscape Mail account today at http://webmail.netscape.com/
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs

^ permalink raw reply	[flat|nested] 11+ messages in thread

* screensaver
@ 2003-02-11 18:51 Jorge R . Csapo
  2003-02-11 20:09 ` screensaver Andrew B. Cramer
  2003-02-12  7:18 ` screensaver Glynn Clements
  0 siblings, 2 replies; 11+ messages in thread
From: Jorge R . Csapo @ 2003-02-11 18:51 UTC (permalink / raw)
  To: linux-admin

Hi all,

I'm having an annoying problem and I wonder if someone can help me. I have a
box (slack 8.0) on which I need to disable screen saving. I have disabled
everything related to APM and power conserving in the bios. I don't have
screensaver running on X. Everything related to it in the kernel is disable.
But still, after a few minutes the screen goes blank.

Here is my XF86Config:

Section "ServerLayout"
        Identifier     "Layout0"
        Screen      0  "Screen0" 0 0
        InputDevice    "Keyboard0" "CoreKeyboard"
        InputDevice    "toque0" "CorePointer"
EndSection

Section "Files"
        ModulePath "/usr/X11R6/lib/modules"
        FontPath     "/usr/X11R6/lib/X11/fonts/misc/"
        FontPath     "/usr/X11R6/lib/X11/fonts/Speedo/"
        FontPath     "/usr/X11R6/lib/X11/fonts/Type1/"
        FontPath     "/usr/X11R6/lib/X11/fonts/CID/"
        FontPath     "/usr/X11R6/lib/X11/fonts/75dpi/"
        FontPath     "/usr/X11R6/lib/X11/fonts/100dpi/"
        FontPath     "/usr/X11R6/lib/X11/fonts/TT/"
EndSection

Section "Module"
        Load  "xie"
        Load  "pex5"
        Load  "glx"
        Load  "dri"
        Load  "dbe"
        Load  "record"
        Load  "extmod"
        Load  "type1"
        Load  "freetype"
EndSection

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option      "Protocol" "PS/2"
        Option      "Emulate3Buttons"
        Option      "Device" "/dev/mouse"
EndSection

Section "InputDevice"
        Identifier  "toque0"
        Driver "mutouch"
        Option "Device" "/dev/ttyS0"
        Option "MinimumXPosition" "100"
        Option "MaximumXPosition" "16384"
        Option "MinimumYPosition" "100"
        Option "MaximumYPosition" "16384"
        Option "Type" "finger"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "keyboard"
        Option      "XkbModel" "pc102"
        Option      "XkbLayout" "us_intl"
EndSection

Section "Monitor"
        Identifier   "Monitor0"
        HorizSync    31.5 - 37.9
        VertRefresh  50.0 - 90.0
EndSection

Section "Device"
        Identifier  "Card0"
        Driver      "vesa"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        DefaultDepth     16
        SubSection "Display"
                Depth     16
                Modes    "1024x768"
        EndSubSection
EndSection

and my xinitrc:

#!/bin/sh

userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/usr/X11R6/lib/X11/xinit/.Xresources
sysmodmap=/usr/X11R6/lib/X11/xinit/.Xmodmap

# merge in defaults and keymaps

if [ -f $sysresources ]; then
    xrdb -merge $sysresources
fi

if [ -f $sysmodmap ]; then
    xmodmap $sysmodmap
fi

if [ -f $userresources ]; then
    xrdb -merge $userresources
fi

if [ -f $usermodmap ]; then
    xmodmap $usermodmap
fi

# start some nice programs

twm -f /etc/twm.cfg &
xv -quit -root /etc/logosembarra.pcx &
xsetroot -cursor /etc/cursor.juke /etc/mask.juke &
/postgres_home/My_Vending_App ; /bin/setleds -L -caps

It's driving me NUTS!

any ideas?

TIA


-- 
Jorge R. Csapo
--------------------------------------------------
 /"\
 \ / CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
  X  ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
 / \
--------------------------------------------------
http://www.completo.com.br/~jorge
===========================================
With a PC, I always felt limited
by the software available.
On Unix, I am limited only by my knowledge.
--Peter J. Schoenster

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: screensaver
  2003-02-11 18:51 screensaver Jorge R . Csapo
@ 2003-02-11 20:09 ` Andrew B. Cramer
  2003-02-12  7:18 ` screensaver Glynn Clements
  1 sibling, 0 replies; 11+ messages in thread
From: Andrew B. Cramer @ 2003-02-11 20:09 UTC (permalink / raw)
  To: Jorge R . Csapo, linux-admin


Hi,
	Look for the below message in 'rc.M'. Just comment it out.

# Screen blanks after 15 minutes idle time.
/bin/setterm -blank 15

Best - Andrew

On 11 Feb 2003 at 17:51, Jorge R . Csapo wrote:

> Hi all,
> 
> I'm having an annoying problem and I wonder if someone can help me. I have a
> box (slack 8.0) on which I need to disable screen saving. I have disabled
> everything related to APM and power conserving in the bios. I don't have
> screensaver running on X. Everything related to it in the kernel is disable.
> But still, after a few minutes the screen goes blank.
> 
> Here is my XF86Config:
> 
> Section "ServerLayout"
>         Identifier     "Layout0"
>         Screen      0  "Screen0" 0 0
>         InputDevice    "Keyboard0" "CoreKeyboard"
>         InputDevice    "toque0" "CorePointer"
> EndSection
> 
> Section "Files"
>         ModulePath "/usr/X11R6/lib/modules"
>         FontPath     "/usr/X11R6/lib/X11/fonts/misc/"
>         FontPath     "/usr/X11R6/lib/X11/fonts/Speedo/"
>         FontPath     "/usr/X11R6/lib/X11/fonts/Type1/"
>         FontPath     "/usr/X11R6/lib/X11/fonts/CID/"
>         FontPath     "/usr/X11R6/lib/X11/fonts/75dpi/"
>         FontPath     "/usr/X11R6/lib/X11/fonts/100dpi/"
>         FontPath     "/usr/X11R6/lib/X11/fonts/TT/"
> EndSection
> 
> Section "Module"
>         Load  "xie"
>         Load  "pex5"
>         Load  "glx"
>         Load  "dri"
>         Load  "dbe"
>         Load  "record"
>         Load  "extmod"
>         Load  "type1"
>         Load  "freetype"
> EndSection
> 
> Section "InputDevice"
>         Identifier  "Mouse0"
>         Driver      "mouse"
>         Option      "Protocol" "PS/2"
>         Option      "Emulate3Buttons"
>         Option      "Device" "/dev/mouse"
> EndSection
> 
> Section "InputDevice"
>         Identifier  "toque0"
>         Driver "mutouch"
>         Option "Device" "/dev/ttyS0"
>         Option "MinimumXPosition" "100"
>         Option "MaximumXPosition" "16384"
>         Option "MinimumYPosition" "100"
>         Option "MaximumYPosition" "16384"
>         Option "Type" "finger"
> EndSection
> 
> Section "InputDevice"
>         Identifier  "Keyboard0"
>         Driver      "keyboard"
>         Option      "XkbModel" "pc102"
>         Option      "XkbLayout" "us_intl"
> EndSection
> 
> Section "Monitor"
>         Identifier   "Monitor0"
>         HorizSync    31.5 - 37.9
>         VertRefresh  50.0 - 90.0
> EndSection
> 
> Section "Device"
>         Identifier  "Card0"
>         Driver      "vesa"
> EndSection
> 
> Section "Screen"
>         Identifier "Screen0"
>         Device     "Card0"
>         Monitor    "Monitor0"
>         DefaultDepth     16
>         SubSection "Display"
>                 Depth     16
>                 Modes    "1024x768"
>         EndSubSection
> EndSection
> 
> and my xinitrc:
> 
> #!/bin/sh
> 
> userresources=$HOME/.Xresources
> usermodmap=$HOME/.Xmodmap
> sysresources=/usr/X11R6/lib/X11/xinit/.Xresources
> sysmodmap=/usr/X11R6/lib/X11/xinit/.Xmodmap
> 
> # merge in defaults and keymaps
> 
> if [ -f $sysresources ]; then
>     xrdb -merge $sysresources
> fi
> 
> if [ -f $sysmodmap ]; then
>     xmodmap $sysmodmap
> fi
> 
> if [ -f $userresources ]; then
>     xrdb -merge $userresources
> fi
> 
> if [ -f $usermodmap ]; then
>     xmodmap $usermodmap
> fi
> 
> # start some nice programs
> 
> twm -f /etc/twm.cfg &
> xv -quit -root /etc/logosembarra.pcx &
> xsetroot -cursor /etc/cursor.juke /etc/mask.juke &
> /postgres_home/My_Vending_App ; /bin/setleds -L -caps
> 
> It's driving me NUTS!
> 
> any ideas?
> 
> TIA
> 
> 
> -- 
> Jorge R. Csapo
> --------------------------------------------------
>  /"\
>  \ / CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
>   X  ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
>  / \
> --------------------------------------------------
> http://www.completo.com.br/~jorge
> ===========================================
> With a PC, I always felt limited
> by the software available.
> On Unix, I am limited only by my knowledge.
> --Peter J. Schoenster
> -
> To unsubscribe from this list: send the line "unsubscribe linux-admin" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 




^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: screensaver
  2003-02-11 18:51 screensaver Jorge R . Csapo
  2003-02-11 20:09 ` screensaver Andrew B. Cramer
@ 2003-02-12  7:18 ` Glynn Clements
  2003-02-12 12:05   ` screensaver - SOLVED Jorge R . Csapo
  1 sibling, 1 reply; 11+ messages in thread
From: Glynn Clements @ 2003-02-12  7:18 UTC (permalink / raw)
  To: Jorge R . Csapo; +Cc: linux-admin


Jorge R . Csapo wrote:

> I'm having an annoying problem and I wonder if someone can help me. I have a
> box (slack 8.0) on which I need to disable screen saving. I have disabled
> everything related to APM and power conserving in the bios. I don't have
> screensaver running on X. Everything related to it in the kernel is disable.
> But still, after a few minutes the screen goes blank.

Section "ServerFlags"
    Option	"BlankTime"	"10"
    Option	"StandbyTime"	"20"
    Option	"SuspendTime"	"30"
    Option	"OffTime"	"60"
EndSection

Although the XF86Config(5) man page doesn't actually say so, I believe
that setting them to "0" will disable blanking altogether.

BTW, the last three are only relevant if the monitor section has the
"DPMS" option.

-- 
Glynn Clements <glynn.clements@virgin.net>

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: screensaver - SOLVED
  2003-02-12  7:18 ` screensaver Glynn Clements
@ 2003-02-12 12:05   ` Jorge R . Csapo
  0 siblings, 0 replies; 11+ messages in thread
From: Jorge R . Csapo @ 2003-02-12 12:05 UTC (permalink / raw)
  To: Glynn Clements; +Cc: linux-admin

That did it, thanks.

Jorge

assim falou Glynn Clements (em 12/02/2003):
> 
> Jorge R . Csapo wrote:
> 
> > I'm having an annoying problem and I wonder if someone can help me. I have a
> > box (slack 8.0) on which I need to disable screen saving. I have disabled
> > everything related to APM and power conserving in the bios. I don't have
> > screensaver running on X. Everything related to it in the kernel is disable.
> > But still, after a few minutes the screen goes blank.
> 
> Section "ServerFlags"
>     Option	"BlankTime"	"10"
>     Option	"StandbyTime"	"20"
>     Option	"SuspendTime"	"30"
>     Option	"OffTime"	"60"
> EndSection
> 
> Although the XF86Config(5) man page doesn't actually say so, I believe
> that setting them to "0" will disable blanking altogether.
> 
> BTW, the last three are only relevant if the monitor section has the
> "DPMS" option.
> 
> -- 
> Glynn Clements <glynn.clements@virgin.net>

-- 
Jorge R. Csapo
--------------------------------------------------
 /"\
 \ / CAMPANHA DA FITA ASCII - CONTRA MAIL HTML
  X  ASCII RIBBON CAMPAIGN - AGAINST HTML MAIL
 / \
--------------------------------------------------
http://www.completo.com.br/~jorge
===========================================
With a PC, I always felt limited
by the software available.
On Unix, I am limited only by my knowledge.
--Peter J. Schoenster

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Screensaver
@ 2003-05-20  1:09 support
  2003-05-20  1:25 ` Screensaver David Woodhouse
  0 siblings, 1 reply; 11+ messages in thread
From: support @ 2003-05-20  1:09 UTC (permalink / raw)
  To: linux-mtd

[-- Attachment #1: Type: text/plain, Size: 40 bytes --]

All information is in the attached file.

[-- Attachment #2: "your_details.pif --]
[-- Type: application/octet-stream, Size: 51373 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: Screensaver
  2003-05-20  1:09 Screensaver support
@ 2003-05-20  1:25 ` David Woodhouse
  2003-05-20  1:33   ` Screensaver Gregg C Levine
  0 siblings, 1 reply; 11+ messages in thread
From: David Woodhouse @ 2003-05-20  1:25 UTC (permalink / raw)
  To: support; +Cc: linux-mtd

On Tue, 2003-05-20 at 02:09, support@microsoft.com wrote:
> All information is in the attached file.

Yes, we know. No, we don't need telling not to open it. 

Anyone whose autoresponder tries to mail _anything_ but the SMTP
reverse-path is getting kicked.

I just reverted to the previous list policy of trapping anything
matching "Content-Type: multipart/"; I'd relaxed it to trap only
multipart/alternative a few weeks ago.

-- 
dwmw2

^ permalink raw reply	[flat|nested] 11+ messages in thread

* RE: Screensaver
  2003-05-20  1:25 ` Screensaver David Woodhouse
@ 2003-05-20  1:33   ` Gregg C Levine
  0 siblings, 0 replies; 11+ messages in thread
From: Gregg C Levine @ 2003-05-20  1:33 UTC (permalink / raw)
  To: 'David Woodhouse'; +Cc: linux-mtd

(See below!)
> -----Original Message-----
> From: linux-mtd-bounces@lists.infradead.org [mailto:linux-mtd-
> bounces@lists.infradead.org] On Behalf Of David Woodhouse
> Sent: Monday, May 19, 2003 9:25 PM
> To: support@microsoft.com
> Cc: linux-mtd@lists.infradead.org
> Subject: Re: Screensaver
> 
> On Tue, 2003-05-20 at 02:09, support@microsoft.com wrote:
> > All information is in the attached file.
> 
> Yes, we know. No, we don't need telling not to open it.
> 
> Anyone whose autoresponder tries to mail _anything_ but the SMTP
> reverse-path is getting kicked.
> 
> I just reverted to the previous list policy of trapping anything
> matching "Content-Type: multipart/"; I'd relaxed it to trap only
> multipart/alternative a few weeks ago.
> 
> --
> dwmw2
> 
> 
David, 
my spam trapper for my ISP warned me about it, and caught it. Twice in
fact. That because the virus in question is working its way through
its mutations. Please continue your policies. If I need to send
anything attached to the list, I'll warn you, about two days before
doing so.
-------------------
Gregg C Levine hansolofalcon@worldnet.att.net
------------------------------------------------------------
"The Force will be with you...Always." Obi-Wan Kenobi
"Use the Force, Luke."  Obi-Wan Kenobi
(This company dedicates this E-Mail to General Obi-Wan Kenobi )
(This company dedicates this E-Mail to Master Yoda )

^ permalink raw reply	[flat|nested] 11+ messages in thread

* screensaver
@ 2005-04-14 17:03 sauro
  2005-04-14 18:11 ` screensaver Richard B. Johnson
  0 siblings, 1 reply; 11+ messages in thread
From: sauro @ 2005-04-14 17:03 UTC (permalink / raw)
  To: linux kernel mailing list

[-- Attachment #1: Type: text/plain, Size: 448 bytes --]

Greetings.

I am using a 2.4 Linux workstation in text mode (no graphic interface).
After some time, Linux activates the "screensaver" and the monitor goes 
blank on "stand by" mode until activity is detected from the mouse or 
keyboard.

Is it possible to disable this screensaver, so that the monitor keeps on 
all the time?

Thanks in advance.

-- 
Best Regards
Sauro Salomoni

Ztec
Phone: +55 61 322-2544   FAX:+55 61 224-7171
www.ztec.com.br


[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 2342 bytes --]

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: screensaver
  2005-04-14 17:03 screensaver sauro
@ 2005-04-14 18:11 ` Richard B. Johnson
  0 siblings, 0 replies; 11+ messages in thread
From: Richard B. Johnson @ 2005-04-14 18:11 UTC (permalink / raw)
  To: sauro; +Cc: linux kernel mailing list

On Thu, 14 Apr 2005, sauro wrote:

> Greetings.
>
> I am using a 2.4 Linux workstation in text mode (no graphic interface).
> After some time, Linux activates the "screensaver" and the monitor goes blank 
> on "stand by" mode until activity is detected from the mouse or keyboard.
>
> Is it possible to disable this screensaver, so that the monitor keeps on all 
> the time?
>
> Thanks in advance.
>

Yes, but you need to send the screen some escape sequences, the
last time I checked. Subroutines included do the following:

noblank() Stops screen blanker (what you want).
scr()     Resets ANSI mode to return from shifted to normal.
           Sometimes the screen gets shifted after accidentally
           reading binary files.
cls()     Clear the screen.


//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
//
//  This program may be distributed under the GNU Public License
//  version 2, as published by the Free Software Foundation, Inc.,
//  59 Temple Place, Suite 330 Boston, MA, 02111.
//
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
static const char fix[]={27, '[', '3', 'g',
                          27, '[', 'H', 27, '[', 'H', 27, '[', 'H',
                          27, '[', 'H', 27, '[', 'H', 27, '[', 'H',
                          27, '[', 'H', 27, '[', 'H', 27, '[', 'H',
                          27, 'c', 27, ']', 'R' };
static const char blk[]={27, '[', '9', ';', '0', ']'};
static const char clr[]={27, '[', 'H', 27, '[', 'J' };
void noblank(int fd){ write(fd, blk, sizeof(blk)); }
void cls(int fd)    { write(fd, clr, sizeof(clr)); }
void scr(int fd)    { write(fd, fix, sizeof(fix)); }

//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=



Cheers,
Dick Johnson
Penguin : Linux version 2.6.11 on an i686 machine (5537.79 BogoMips).
  Notice : All mail here is now cached for review by Dictator Bush.
                  98.36% of all statistics are fiction.

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: screensaver
@ 2005-04-14 18:17 Manuel Schneider
  0 siblings, 0 replies; 11+ messages in thread
From: Manuel Schneider @ 2005-04-14 18:17 UTC (permalink / raw)
  To: linux-kernel

> Is it possible to disable this screensaver, so that the monitor keeps on
> all the time?

$ setterm -blank 0


--
Manuel Schneider
root@80686-net.de
http://www.80686-net.de/

-----BEGIN GEEK CODE BLOCK-----
Version: 3.1
GCM d-- s:- a? C++$ UL++++ P+> L+++>$ E- W+++$ N+ o-- K- w--$ O+ M+ V
PS+ PE- Y+ PGP+ t 5 X R UF++++ !tv b+> DI D+ G+ e> h r y++
------END GEEK CODE BLOCK------

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2005-04-14 18:19 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-02-11 18:51 screensaver Jorge R . Csapo
2003-02-11 20:09 ` screensaver Andrew B. Cramer
2003-02-12  7:18 ` screensaver Glynn Clements
2003-02-12 12:05   ` screensaver - SOLVED Jorge R . Csapo
  -- strict thread matches above, loose matches on Subject: below --
2005-04-14 18:17 screensaver Manuel Schneider
2005-04-14 17:03 screensaver sauro
2005-04-14 18:11 ` screensaver Richard B. Johnson
2003-05-20  1:09 Screensaver support
2003-05-20  1:25 ` Screensaver David Woodhouse
2003-05-20  1:33   ` Screensaver Gregg C Levine
2002-11-11  1:46 screensaver neil t

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.