Screensaver on, CPU goes quiet.
https://people-mozilla.org/~jmuizelaar/fishbowl/fishbowl-gl.html
# man xscreensaver-command
---------------
#!/usr/bin/perl
my $blanked = 0;
open (IN, "xscreensaver-command -watch |");
while (<IN>) {
if (m/^(BLANK|LOCK)/) {
if (!$blanked) {
# que hacer
#system "sound-off";
system "killall -s STOP iceweasel chromium firefox";
#system "echo 'stopped all' >> /home/xx/tmp/sss";
#system "date >> /home/xx/tmp/sss";
$blanked = 1;
}
} elsif (m/^UNBLANK/) {
# que hacer
#system "sound-on";
system "killall -s CONT iceweasel chromium firefox";
#system "echo 'started all' >> /home/xx/tmp/sss";
#system "date >> /home/xx/tmp/sss";
$blanked = 0;
}
}
---------------