WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: screensaver  (Read 6841 times)

Offline cast-fish

  • Hero Member
  • *****
  • Posts: 1000
  • hi there
screensaver
« on: January 28, 2014, 11:31:12 PM »
hello

Please can you help me to prevent the annoying screensavers or screenblanking of tcl

i typed

xset s off    (in a terminal)

but the machine still seems to blank the screen after maybe 20 mins?

Vince.

Offline malikawan

  • Full Member
  • ***
  • Posts: 243
Re: screensaver
« Reply #1 on: January 29, 2014, 02:24:18 AM »
« Last Edit: January 29, 2014, 02:27:05 AM by malikawan »

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11213
Re: screensaver
« Reply #2 on: January 29, 2014, 06:33:40 AM »
Hi cast-fish
Check your BIOS. Some machines have settings to shut down various peripherals after inactivity.

Offline cast-fish

  • Hero Member
  • *****
  • Posts: 1000
  • hi there
Re: screensaver
« Reply #3 on: January 29, 2014, 07:17:35 AM »
hello

it seems the command listed above here, will come into operation, after you restart X.

this machine does not seem to have -dpms handling or such like.


The bios is 13 years old. (although it may have some power features i don't remember
seeing any

Vince.

Offline tinypoodle

  • Hero Member
  • *****
  • Posts: 3857
Re: screensaver
« Reply #4 on: January 29, 2014, 08:53:36 AM »
xset s off    (in a terminal)

An xterm or a real terminal?
"Software gets slower faster than hardware gets faster." Niklaus Wirth - A Plea for Lean Software (1995)

Offline tinypoodle

  • Hero Member
  • *****
  • Posts: 3857
Re: screensaver
« Reply #5 on: January 29, 2014, 08:56:10 AM »
it seems the command listed above here, will come into operation, after you restart X.

No, 'xset' will only apply to current X11 server.
"Software gets slower faster than hardware gets faster." Niklaus Wirth - A Plea for Lean Software (1995)

Offline cast-fish

  • Hero Member
  • *****
  • Posts: 1000
  • hi there
Re: screensaver
« Reply #6 on: January 29, 2014, 10:21:06 AM »
Hello

so is it true that if we put the command

xset s off

into the .Xsession file   (it should stop the screensaver for every boot of tcl)

The screensaver seems to kick in when i am watching a movie in VLC or MPLAYER.


DO i put that command into that file in a similar fashion to the other comman examples.


many seem to start with a HYPHEN or a square open bracket


thanks

Vince.



Offline tinypoodle

  • Hero Member
  • *****
  • Posts: 3857
Re: screensaver
« Reply #7 on: January 29, 2014, 10:31:42 AM »
There is no sense in adding 'xset' to any file before you have verified it does what you want manually.
"Software gets slower faster than hardware gets faster." Niklaus Wirth - A Plea for Lean Software (1995)

Offline cast-fish

  • Hero Member
  • *****
  • Posts: 1000
  • hi there
Re: screensaver
« Reply #8 on: January 29, 2014, 10:33:40 AM »
Hello

Don't really know.

I have a standard TCL boot from cdrom. I want to stop the screensaver kicking in.

how do i do this?

what is the command?

where do i put the command?

thanks

Vince.

Offline tinypoodle

  • Hero Member
  • *****
  • Posts: 3857
Re: screensaver
« Reply #9 on: January 29, 2014, 10:50:17 AM »
You already said in OP you did, but you never answered if by "terminal" you meant an xterm.
"Software gets slower faster than hardware gets faster." Niklaus Wirth - A Plea for Lean Software (1995)

Offline cast-fish

  • Hero Member
  • *****
  • Posts: 1000
  • hi there
Re: screensaver
« Reply #10 on: January 29, 2014, 05:10:00 PM »
not sure

It is a "terminal" that is selected from the "system tools" menu.

So my question is compounded now.

1) How do i discover if the "screensaver" is active at all?   what is the command and where do i type it to discover this?

2) If the answer to 1) is yes.  How do i dissable this screensaver. What is the command and where do i type it for dissabling.

many thanks.

Vince.

Offline tinypoodle

  • Hero Member
  • *****
  • Posts: 3857
Re: screensaver
« Reply #11 on: January 29, 2014, 05:58:24 PM »
1)
Code: [Select]
xset q

2)
Code: [Select]
xset s off
xset -dpms
"Software gets slower faster than hardware gets faster." Niklaus Wirth - A Plea for Lean Software (1995)

Offline cast-fish

  • Hero Member
  • *****
  • Posts: 1000
  • hi there
Re: screensaver
« Reply #12 on: January 30, 2014, 12:27:33 AM »
thanks a lot

it appears that DPMS was also causing an issue

it was enabled and had

Standby 1200 secs  Suspend 1800   off 2400

i had experienced the laptop completely shutting down where it would not come back
to life at all.....  (it just had a dull screen)

clearly that was dpms causing that....  (switched all the dpms off now aswell as the screensaver)


i could not really find it explained clearly anyplace......i mean about dpms's variuos settings
which still seem to work even on a 14 year old laptop and bios.

all sorted out now

another thing that can go unotticed with TCL is the cpu governor and throttling of the frequency
for saving..... which is applied to your chip.  It would be nice if people knew about that if they needed to and how to enable or disable it.

VInce.



Thanks
Vince.




Offline bmarkus

  • Administrator
  • Hero Member
  • *****
  • Posts: 7183
    • My Community Forum
Re: screensaver
« Reply #13 on: January 30, 2014, 12:37:35 AM »

another thing that can go unotticed with TCL is the cpu governor and throttling of the frequency
for saving..... which is applied to your chip.  It would be nice if people knew about that if they needed to and how to enable or disable it.


http://wiki.tinycorelinux.net/wiki:cpu_frequency_scaling_basics
Béla
Ham Radio callsign: HA5DI

"Amateur Radio: The First Technology-Based Social Network."

Offline tinypoodle

  • Hero Member
  • *****
  • Posts: 3857
Re: screensaver
« Reply #14 on: January 30, 2014, 01:26:09 AM »
it was enabled and had

Standby 1200 secs  Suspend 1800   off 2400

Those seem to be default values as expected.

Quote
i could not really find it explained clearly anyplace......i mean about dpms's variuos settings
which still seem to work even on a 14 year old laptop and bios.

http://www.x.org/releases/X11R7.5/doc/man/man1/xset.1.html
"Software gets slower faster than hardware gets faster." Niklaus Wirth - A Plea for Lean Software (1995)