LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > General
User Name
Password
General This forum is for non-technical general discussion which can include both Linux and non-Linux topics. Have fun!

Notices


Closed Thread
  Search this Thread
Old 10-02-2004, 10:16 PM   #2791
joehill
Member
 
Registered: Mar 2003
Location: Toronto, Canada
Distribution: Mandrake 9.2, Debian Testing
Posts: 80

Rep: Reputation: 15

...thought this thread was dead.

New theme, new font, new wallpaper (thanks to cb_linus for the link to pixelgirl) and like a lot of people here it seems, lovin' PyPanel!

http://www.freeyourmachine.org/desktop.png

Last edited by joehill; 10-02-2004 at 10:18 PM.
 
Old 10-03-2004, 03:13 AM   #2792
kersten78
Member
 
Registered: Nov 2003
Location: Minneapolis, MN
Distribution: Slackware, Debian, Gentoo, openSuSE
Posts: 358

Rep: Reputation: 33
Quote:
Originally posted by joehill
...thought this thread was dead.
Ha. That would be about like a "Problems with windows" thread reaching its end. Unlikely.
 
Old 10-03-2004, 03:42 AM   #2793
hari_seldon99
Member
 
Registered: Jun 2003
Location: Front of PC
Distribution: Linux Mandrake
Posts: 212

Rep: Reputation: 30
Here's mine

screenshot of KDE
 
Old 10-03-2004, 04:16 AM   #2794
vasudevadas
Member
 
Registered: Jul 2003
Location: Bedford, UK
Distribution: Slackware 11.0, LFS 6.1
Posts: 519

Rep: Reputation: 30
Quote:
Originally posted by joehill
...thought this thread was dead.
I wish. This is the Thread That Would Not Die.
 
Old 10-03-2004, 07:09 AM   #2795
redgore
Member
 
Registered: Dec 2001
Location: England
Distribution: Various,currently Slackware.
Posts: 156

Rep: Reputation: 30
To add to the thread my desktop is at http://dev.martlev.com/~redgore/ScreenshotLinux.png

Still flux but with a new background and other stuff
 
Old 10-03-2004, 08:18 AM   #2796
vectordrake
Senior Member
 
Registered: Nov 2003
Location: NB,Canada
Distribution: Something alpha or beta, binary or source...
Posts: 2,280
Blog Entries: 4

Rep: Reputation: 47
Quote:
Originally posted by vasudevadas
I wish. This is the Thread That Would Not Die.
Screenshots are fun. And, I'm just glad that most of them get put here instead of all over the site.
 
Old 10-05-2004, 02:13 AM   #2797
FunkyRes
Member
 
Registered: Mar 2004
Distribution: CentOS
Posts: 174

Rep: Reputation: 30
Here's my current shot -

http://homepage.mac.com/mpeters/misc...004-10-05.jpeg

Fedora Core 2
 
Old 10-07-2004, 04:40 AM   #2798
joesbox
Member
 
Registered: Feb 2003
Location: hampton va
Distribution: ubuntu
Posts: 502

Rep: Reputation: 30
people have told me that they have the ability to make linux look just like windows to the point of fooling a regular windows user. well i have never seen one to fool me before until i found this theme in kde-look.org.
now before i get flamed and asked why i did this here is the explanation. my wifes computer is in the shop and she needs to get onto mine for some simple things like chat, web browsing, game play. so i let her use mine. she knows that it is linux but this is slowly helping her move over.
hey at least she is using it..... before she wouldn't even touch it.... lol
http://www.deviantart.com/deviation/11218299/
 
Old 10-07-2004, 01:01 PM   #2799
melinda_sayang
Member
 
Registered: Dec 2003
Location: Petaling Jaya
Distribution: Ubuntu
Posts: 475

Rep: Reputation: 31
http://www.akbarhome.com/screenshot
 
Old 10-07-2004, 03:01 PM   #2800
zLinuxz
Senior Member
 
Registered: Feb 2002
Location: Shanghai, CHINA
Distribution: RH 5.0,5.1 6.0,6.1 7.0,7.1,7.2,7.3.,8.0,9.0, RH Enterprise, Fedora C1, C2
Posts: 1,216

Rep: Reputation: 45
melinda_sayang, your shot is very nice....

Nevertheless, the thing that I most liked and was amused by when I read it on the page where you are hosting your shot...was the following text on the bottom of the page:

"This website will not displayed correctly with Internet Explorer browser because png files do not show transparency in Internet Explorer by default. Make sure you have png supported browser like Mozilla, Firefox, Opera, Konqueror, or Netscape."

Because I am so sick of going to site where it says that the page won't disply correctly if you are not using Internet Explorer...yooohooo to this website!!

zLinuxz
 
Old 10-07-2004, 05:26 PM   #2801
breakerfall
Member
 
Registered: Jun 2003
Location: Manchester, UK
Distribution: Gentoo
Posts: 306

Rep: Reputation: 30
I know it's slightly off-topic, but if you want to be kind on IE users, there is a js hack that will display PNG files correctly. It's strange how such a simple js hack can fix this, yet MS haven't corrected this issue. Pretty rediculous really. :|

But if you do care about them, you can use this little bit of code:

Code:
<!--[if gte IE 5.5000]>
<script language="JavaScript">
function correctPNG() // correctly handle PNG transparency in Win IE 5.5 or higher.
   {
   for(var i=0; i<document.images.length; i++)
      {
	  var img = document.images[i]
	  var imgName = img.src.toUpperCase()
	  if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
	     {
		 var imgID = (img.id) ? "id='" + img.id + "' " : ""
		 var imgClass = (img.className) ? "class='" + img.className + "' " : ""
		 var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "
		 var imgStyle = "display:inline-block;" + img.style.cssText 
		 if (img.align == "left") imgStyle = "float:left;" + imgStyle
		 if (img.align == "right") imgStyle = "float:right;" + imgStyle
		 if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle		
		 var strNewHTML = "<span " + imgID + imgClass + imgTitle
		 + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
	     + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
		 + "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>" 
		 img.outerHTML = strNewHTML
		 i = i-1
	     }
      }
   }
window.attachEvent("onload", correctPNG);
</script>
<![endif]-->
Found with explanation here: http://homepage.ntlworld.com/bobosola/
 
Old 10-08-2004, 12:43 AM   #2802
melinda_sayang
Member
 
Registered: Dec 2003
Location: Petaling Jaya
Distribution: Ubuntu
Posts: 475

Rep: Reputation: 31
breakerfall, I know that already. But I am not a good web developer. I build my website with Mozilla Composer. I knew a little bit about javascript. Just a little bit. So I don't know where I should put the code above into my html page. I can do it for sure. But it take a long time. So make the png file display correctly in Internet Explorer is in my to do list. I m not sure when I will do it. But not now. If you can tell me where I should put the code above, that would be nice....

Thank you.
 
Old 10-08-2004, 01:04 AM   #2803
Dswissmiss
Member
 
Registered: Mar 2004
Location: New York
Distribution: Fedora
Posts: 92

Rep: Reputation: 16
http://community.webshots.com/photo/...97406000SMUfSs

Gentoo, Fluxbox, Aterm and rox
 
Old 10-08-2004, 01:50 AM   #2804
Crashed_Again
Senior Member
 
Registered: Dec 2002
Location: Atlantic City, NJ
Distribution: Ubuntu & Arch
Posts: 3,503

Rep: Reputation: 57
Quote:
Originally posted by Dswissmiss
http://community.webshots.com/photo/...97406000SMUfSs

Gentoo, Fluxbox, Aterm and rox
Yeah I like this one. Clean and simple. Where did you get that wallpaper?
 
Old 10-08-2004, 02:37 AM   #2805
breakerfall
Member
 
Registered: Jun 2003
Location: Manchester, UK
Distribution: Gentoo
Posts: 306

Rep: Reputation: 30
Quote:
Originally posted by melinda_sayang
breakerfall, I know that already. But I am not a good web developer. I build my website with Mozilla Composer. I knew a little bit about javascript. Just a little bit. So I don't know where I should put the code above into my html page. I can do it for sure. But it take a long time. So make the png file display correctly in Internet Explorer is in my to do list. I m not sure when I will do it. But not now. If you can tell me where I should put the code above, that would be nice....

Thank you.
I'll be honest, I too haven't had the time to study Java script yet - but the segment of code goes between the <head> tags at the beginning of your html. It's fully explained on the link I supplied. For example:

Code:
<html>

<head>
<title></title>
<!--[if gte IE 5.5000]>
<script language="JavaScript">
function correctPNG() // correctly handle PNG transparency in Win IE 5.5 or higher.
   {
   for(var i=0; i<document.images.length; i++)
      {
	  var img = document.images[i]
	  var imgName = img.src.toUpperCase()
	  if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
	     {
		 var imgID = (img.id) ? "id='" + img.id + "' " : ""
		 var imgClass = (img.className) ? "class='" + img.className + "' " : ""
		 var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "
		 var imgStyle = "display:inline-block;" + img.style.cssText 
		 if (img.align == "left") imgStyle = "float:left;" + imgStyle
		 if (img.align == "right") imgStyle = "float:right;" + imgStyle
		 if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle		
		 var strNewHTML = "<span " + imgID + imgClass + imgTitle
		 + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
	     + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
		 + "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>" 
		 img.outerHTML = strNewHTML
		 i = i-1
	     }
      }
   }
window.attachEvent("onload", correctPNG);
</script>
<![endif]-->
</head>

Also, nice screenie Dswissmiss. :-)
 
  


Closed Thread

Tags
apt, beryl, compiz, gentoo, repository, screenshot, xgl, yum



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
plz post a link to get cedega Rangerboy567 Linux - Games 6 04-25-2005 04:29 PM
What is this system monitor program (link to screenshot included) enigma Z Linux - Software 3 09-06-2004 06:08 PM
Post a link to your pic Joey.Dale General 7 09-03-2004 05:06 PM
Post your screenshot bpk General 6 01-25-2004 08:01 AM
Can you post a screenshot of this? ICO General 1 01-18-2004 02:48 AM

LinuxQuestions.org > Forums > Non-*NIX Forums > General

All times are GMT -5. The time now is 01:30 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration