Your message dated Mon, 20 Feb 2012 02:57:33 +0100
with message-id <[email protected]>
and subject line Re: Bug#646635: wishlist: allowing screensaver for screen / 
Bug#584648: could SCREEN locks the screen after 5 minutes, sort of locking 
screensaver
has caused the Debian Bug report #646635,
regarding wishlist: allowing screensaver for screen
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
646635: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=646635
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: screen
Version: 4.0.3-14
Severity: wishlist

Hi,

After a given idle time it would be nice if screen could launch apps.

Like for instance 

import os, time, random, sys

class message(str):
    def __new__(cls, text, speed):
        self = super(message, cls).__new__(cls, text)
        self.speed = speed
        self.y = -1*len(text)
        self.x = random.randint(0, display().width)
        self.skip = 0
        return self
   
    def move(self):
        if self.speed > self.skip:
            self.skip += 1
        else:
            self.skip = 0
            self.y += 1

class display(list):
    def __init__(self):
        self.height, self.width = [int(x) for x in os.popen('stty size', 
'r').read().split()]
        self[:] = [' ' for y in xrange(self.height) for x in xrange(self.width)]
   
    def set_vertical(self, x, y, string):
        string = string[::-1]
        if x < 0:
            x = 80 + x
        if x >= self.width:
            x = self.width-1
        if y < 0:
            string = string[abs(y):]
            y = 0
        if y + len(string) > self.height:
            string = string[0:self.height - y]
        if y >= self.height:
            return
        start = y*self.width+x
        length = self.width*(y+len(string))
        step = self.width
       
        self[start:length:step] = string
   
    def __str__(self):
        return ''.join(self)

i_message = raw_input("Input a message: ")
messages = [message(i_message, random.randint(1, 5))]
for t in xrange(1000):
    messages.append(message(i_message, random.randint(1, 5)))
    d = display()
    for text in messages:
        d.set_vertical(text.x, text.y, text)
        text.move()
    sys.stdout.write(str(d))
    sys.stdout.flush()
    del d
    time.sleep(0.1)


a matrix screensaver for xterm or other type of cool ideas.

Sincerely,
Y.

-- System Information:
Debian Release: 6.0.2
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686-bigmem (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages screen depends on:
ii  dpkg                      1.15.8.11      Debian package management system
ii  install-info              4.13a.dfsg.1-6 Manage installed documentation in 
ii  libc6                     2.11.2-10      Embedded GNU C Library: Shared lib
ii  libncursesw5              5.7+20100313-5 shared libraries for terminal hand
ii  libpam0g                  1.1.1-6.1      Pluggable Authentication Modules l

screen recommends no packages.

screen suggests no packages.

-- no debconf information



--- End Message ---
--- Begin Message ---
Version: 4.0.3-14

Yellow wrote:
> Package: screen
> Version: 4.0.3-14
> Severity: wishlist
[...]
> After a given idle time it would be nice if screen could launch apps.

Yellow wrote:
> Package: screen
> Version: 4.0.3-14
[...]
> could SCREEN locks the screen after 5 minutes, sort of locking
> screensaver

Please read the man-page. This feature already exists in the version
of screen against which you reported these bugs. Closing them
accordingly.

See the idle, lockscreen, blanker and blankerprg commands of screen.

If you want to have both variants of that feature in the same session
but at different times, see http://bugs.debian.org/488613 and
https://savannah.gnu.org/bugs/index.php?23739

                Regards, Axel
-- 
 ,''`.  |  Axel Beckert <[email protected]>, http://people.debian.org/~abe/
: :' :  |  Debian Developer, ftp.ch.debian.org Admin
`. `'   |  1024D: F067 EA27 26B9 C3FC 1486  202E C09E 1D89 9593 0EDE
  `-    |  4096R: 2517 B724 C5F6 CA99 5329  6E61 2FF9 CD59 6126 16B5


--- End Message ---

Reply via email to