What does your desktop look like?

Everything about it! Heard the news? What! is Ubuntu bankrupt? Has Mandriva started marketing? Have you taken a sky diving course?
We just need to know! No flaming! And we hate spammers -Get it?

Moderators: b1o, jkerr82508

User avatar
viking60
Über-Berserk
Posts: 9351
Joined: 14 Mar 2010, 16:34

Re: What does your desktop look like?

Postby viking60 » 15 Jun 2010, 17:44

Yes I like that one. Here is my Mandriva desktop with the Atlantis cube activated. I use a pic. of me and my wife in the Jacuzzi here and the fishes are swimming around in that. The Atlantis cube is nice for water themes.
Image
The background is a Dolphin picture.
Manjaro 64bit on the main box -Intel(R) Core(TM) i7 CPU 920 @ 2.67GHz and nVidia Corporation GT200b [GeForce GTX 275] (rev a1. + Centos on the server - Arch on the laptop.
"There are no stupid questions - Only stupid answers!"

User avatar
dedanna1029
Sound-Berserk
Posts: 8780
Joined: 14 Mar 2010, 20:29
Contact:

Re: What does your desktop look like?

Postby dedanna1029 » 15 Jun 2010, 18:55

Very very nice! :)
I'd rather be a free person who fears terrorists, than be a "safe" person who fears the government.
No gods, no masters.
"A druid is by nature anarchistic, that is, submits to no one."
http://uk.druidcollege.org/faqs.html

rvause
Viking
Posts: 42
Joined: 16 Jun 2010, 20:17
Contact:

Re: What does your desktop look like?

Postby rvause » 16 Jun 2010, 23:54

Wow, some of those are really great. I never have time to tweak things up really, I even have a python script that chooses my wallpaper for me.

http://rickvause.com/images/Screenshot-2.png

User avatar
dedanna1029
Sound-Berserk
Posts: 8780
Joined: 14 Mar 2010, 20:29
Contact:

Re: What does your desktop look like?

Postby dedanna1029 » 17 Jun 2010, 08:03

Ooo, I like that! :) Nice!
I'd rather be a free person who fears terrorists, than be a "safe" person who fears the government.
No gods, no masters.
"A druid is by nature anarchistic, that is, submits to no one."
http://uk.druidcollege.org/faqs.html

User avatar
viking60
Über-Berserk
Posts: 9351
Joined: 14 Mar 2010, 16:34

Re: What does your desktop look like?

Postby viking60 » 17 Jun 2010, 09:57

Yes that is a nice one!
Manjaro 64bit on the main box -Intel(R) Core(TM) i7 CPU 920 @ 2.67GHz and nVidia Corporation GT200b [GeForce GTX 275] (rev a1. + Centos on the server - Arch on the laptop.
"There are no stupid questions - Only stupid answers!"

User avatar
dedanna1029
Sound-Berserk
Posts: 8780
Joined: 14 Mar 2010, 20:29
Contact:

Re: What does your desktop look like?

Postby dedanna1029 » 20 Jul 2010, 01:17

A first look from the new Fedora 13 box. I still have to do up compiz; will post those screens when I do.

Image
I'd rather be a free person who fears terrorists, than be a "safe" person who fears the government.
No gods, no masters.
"A druid is by nature anarchistic, that is, submits to no one."
http://uk.druidcollege.org/faqs.html

User avatar
viking60
Über-Berserk
Posts: 9351
Joined: 14 Mar 2010, 16:34

Re: What does your desktop look like?

Postby viking60 » 20 Jul 2010, 12:27

You always find such nice wallpapers! I kind of fell for this one in my Arch:
Image

It still is an Arch side of the moon theme -sort of.
Manjaro 64bit on the main box -Intel(R) Core(TM) i7 CPU 920 @ 2.67GHz and nVidia Corporation GT200b [GeForce GTX 275] (rev a1. + Centos on the server - Arch on the laptop.
"There are no stupid questions - Only stupid answers!"

User avatar
viking60
Über-Berserk
Posts: 9351
Joined: 14 Mar 2010, 16:34

Re: What does your desktop look like?

Postby viking60 » 20 Jul 2010, 12:31

rvause wrote:Wow, some of those are really great. I never have time to tweak things up really, I even have a python script that chooses my wallpaper for me.

http://rickvause.com/images/Screenshot-2.png


Like in "picks some wallpaper from a folder every 30 seconds"? I am looking for that for Gnome (like you can do in KDE).
Manjaro 64bit on the main box -Intel(R) Core(TM) i7 CPU 920 @ 2.67GHz and nVidia Corporation GT200b [GeForce GTX 275] (rev a1. + Centos on the server - Arch on the laptop.
"There are no stupid questions - Only stupid answers!"

rvause
Viking
Posts: 42
Joined: 16 Jun 2010, 20:17
Contact:

Re: What does your desktop look like?

Postby rvause » 20 Jul 2010, 13:27

There is desktop drapes but it is too OTT for me so I wrote my own python script.

I wrote a blog post on it: http://www.rickvause.com/2010/06/random ... for-gnome/

User avatar
R_Head
Berserk
Posts: 2819
Joined: 17 Mar 2010, 15:40

Re: What does your desktop look like?

Postby R_Head » 20 Jul 2010, 15:33

Mine is simple, is all out of the box defaults.
I am pretty vanilla when it comes to eye candy.
Spend more time working on cars and airplanes.

Our latest creation 1994 Geo Tracker 4x4 Is my son's 1st car. Told him, if he fix it, is his. Of course, coach him along the way. It was in such a nasty shape that we ripped all out and redid it. Was a cheap-do-yourself-project. I paid $1,200 for it, and added about $2,200 on parts.

The grandbaby is a little tomboy :)
Last edited by R_Head on 20 Jul 2010, 15:47, edited 1 time in total.

User avatar
b1o
IT and IS Guru-Berserk
Posts: 198
Joined: 15 Mar 2010, 03:16

Re: What does your desktop look like?

Postby b1o » 20 Jul 2010, 15:39

nice piece of code there, although if you just want a script that runs at startup that changes your background pictures automatically every 30. second, you could extend your script a bit further:

Code: Select all

import os, random, time
 
WALLPAPER_DIR = '/path/to/wallpapers'
walls = os.listdir(WALLPAPER_DIR)
while(1):
  wallpaper = os.path.join(WALLPAPER_DIR, walls[random.randint(0, len(walls)-1)])
  if os.path.exists(wallpaper):
     os.system('gconftool-2 -s -t string /desktop/gnome/background/picture_filename "%s"' % wallpaper)
     time.sleep(30)

then you save this as wp.py and run it by running:

Code: Select all

python wp.py &
CPU: i7 950 3.1 ghz |RAM: 12 GB DDR3 |Graphics: Nvidia Geforce gtx 280 |motherboard: Rampage II Extreme |OS: Arch + windows7

Just remember, there is no such thing as a stupid question, until you ask it

User avatar
viking60
Über-Berserk
Posts: 9351
Joined: 14 Mar 2010, 16:34

Re: What does your desktop look like?

Postby viking60 » 20 Jul 2010, 15:44

That one works nicely b1o. Does it affect the CPU load?
Manjaro 64bit on the main box -Intel(R) Core(TM) i7 CPU 920 @ 2.67GHz and nVidia Corporation GT200b [GeForce GTX 275] (rev a1. + Centos on the server - Arch on the laptop.
"There are no stupid questions - Only stupid answers!"


Return to “The Lounge”