Page 2 of 2 FirstFirst 12
Results 11 to 19 of 19

Thread: A better Matrix Screensaver

  1. #11
    Join Date
    Feb 2009
    Location
    FL / TN
    Beans
    89
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Re: A better Matrix Screensaver

    Quote Originally Posted by Yownanymous View Post
    Dunno about screensavers, but this should work cross-platform: http://dissoluteproductions.com/desktops.php
    cool concept... but 800x600 only support?
    OpenGEU 8.10 Luna Serena 64bit
    AMD Athlon-X2 6000+ / 8gb DDR2-800 RAM / Gigabyte GA-MA78GM-US2H / Nvidia GeForce 9600 GT / 640gb HD
    Acer Aspire 6530 : AMD Athlon X2 / 3gb DDR2-667 RAM / ATI HD3200 / 250gb HD

  2. #12
    Join Date
    Oct 2008
    Beans
    349

    Re: A better Matrix Screensaver

    Quote Originally Posted by racerraul View Post
    I think that's GLMatrix... I have that too.

    Too each its own... I think it sucks. I't be ok if I could get it to stop zooming in. Can only get the tilt to stop.
    If you don't like the 3d aspect of it, there's also a 2d matrix screensaver included?
    Are you a trumpet player?
    'On vacation for the week. In Yosemite National Park. A sign on the road said, “Speeding kills bears.” And all I can think is, “Who let them drive in the first place?"' -Stephan Pastis

  3. #13
    Join Date
    Nov 2006
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: A better Matrix Screensaver

    Quote Originally Posted by racerraul View Post
    I have waves & panning disabled... don't remember which stops the tilt.
    How do you configure the screensaver? I checked Gconf editor and the GNOME Screensaver dialogue and neither seemed to let me configure the screensaver.
    Want a quality CD ripping program for Ubuntu? Check out my how-to: Installing Rubyripper on Ubuntu!

  4. #14
    Join Date
    Aug 2007
    Beans
    226
    Distro
    Lubuntu 12.10 Quantal Quetzal

    Re: A better Matrix Screensaver

    Now......I'm goina eat this chicken-salad sandwich, even though I know it's not real. My brain is telling me that it's juicy and delicious.

  5. #15
    Join Date
    Feb 2009
    Location
    FL / TN
    Beans
    89
    Distro
    Ubuntu 8.10 Intrepid Ibex

    Re: A better Matrix Screensaver

    Quote Originally Posted by CJ Master View Post
    If you don't like the 3d aspect of it, there's also a 2d matrix screensaver included?
    I think I have that too... xMatrix. if you compare that to the one I posted you will the a huge difference. The one I posted is more like the one in the movie and why I think visually is much better.

    Quote Originally Posted by ghindo View Post
    How do you configure the screensaver? I checked Gconf editor and the GNOME Screensaver dialogue and neither seemed to let me configure the screensaver.
    I am using xscreensaver... is that what you are using?
    OpenGEU 8.10 Luna Serena 64bit
    AMD Athlon-X2 6000+ / 8gb DDR2-800 RAM / Gigabyte GA-MA78GM-US2H / Nvidia GeForce 9600 GT / 640gb HD
    Acer Aspire 6530 : AMD Athlon X2 / 3gb DDR2-667 RAM / ATI HD3200 / 250gb HD

  6. #16
    Join Date
    Jun 2010
    Beans
    3
    Distro
    Edubuntu 9.10 Karmic Koala

    Re: A better Matrix Screensaver

    SYSTEM/PREFERENCES/SCREENSAVER.. There is an awesome one out of the box in Ubuntu 10.04 and I think 9+

    Quote Originally Posted by racerraul View Post
    I use this screensaver in my Xp laptop that I use for work (I know I am working on it, unfortunately there is lots ActiveX BS on Co's the intranet, cry me a river!!!)

    Anyways, I tried to use that windows .scr file in Ubuntu and failed miserably as a screensaver...

    Wondering if there is anyone on board looking for a pet project for an xscreensaver equivalent.

    I already have all the Matrix screensavers I could find for xscreensaver... IMO they all pale in comparison to that .scr file... you must see it to understand how much diff it is...

    At the moment I am using xMatrix and it does not compare...

  7. #17
    Join Date
    Mar 2009
    Location
    Buenos Aires, AR
    Beans
    2,325
    Distro
    Ubuntu

    Talking Re: A better Matrix Screensaver

    Here comes Python the to save the day (?):

    Code:
    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)
    Code:
    python matrix.py
    Not too much 3D, but it can say your name or customize it as you want

  8. #18
    Join Date
    Feb 2009
    Location
    Netherlands
    Beans
    784

    Re: A better Matrix Screensaver

    or this one for console.

  9. #19
    Join Date
    Jan 2008
    Location
    North Las Vegas, Nevada
    Beans
    743
    Distro
    Ubuntu

    Re: A better Matrix Screensaver

    Don't just stand there! THE ZOMBIES ARE COMING!

Page 2 of 2 FirstFirst 12

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •