<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
> <channel><title>gHacks Technology News &#124; Latest Tech News, Software And Tutorials &#187; background</title> <atom:link href="http://www.ghacks.net/tag/background/feed/" rel="self" type="application/rss+xml" /><link>http://www.ghacks.net</link> <description>A technology news blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description> <lastBuildDate>Fri, 10 Feb 2012 20:51:26 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/> <item><title>Changing Your Linux Background Automatically</title><link>http://www.ghacks.net/2011/06/05/changing-your-linux-background/</link> <comments>http://www.ghacks.net/2011/06/05/changing-your-linux-background/#comments</comments> <pubDate>Sun, 05 Jun 2011 14:49:45 +0000</pubDate> <dc:creator>Melanie Gross</dc:creator> <category><![CDATA[Linux]]></category> <category><![CDATA[Operating Systems]]></category> <category><![CDATA[Uncategorized]]></category> <category><![CDATA[background]]></category> <category><![CDATA[linux background]]></category> <category><![CDATA[linux tips]]></category> <category><![CDATA[wallpaper]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=46081</guid> <description><![CDATA[Compared to Windows and Apple, some people consider Linux distributions to be the most user-friendly, personally customizable operating systems available. They enable you to adjust and tweak pretty much anything you want to. All they require is a basic understanding of the dynamic of Linux. One fun change you can make is customizing your desktop [...]]]></description> <content:encoded><![CDATA[<p>Compared to Windows and Apple, some people consider Linux distributions to be the most user-friendly, personally customizable operating systems available.  They enable you to adjust and tweak pretty much anything you want to.  All they require is a basic understanding of the dynamic of Linux.</p><p>One fun change you can make is customizing your desktop in a pretty unique way – by changing the background image every so often automatically.  While some programs exist to help you with this task, there is absolutely no reason why you cannot do it yourself with a few simple commands.  Before long you can have your entire vacation album scrolling behind your open windows, changing photos every five, ten, or thirty minutes – it&#8217;s entirely up to you.</p><p>To begin, open a terminal window and open a new text file:</p><p><strong>gksu gedit</strong></p><p>You are going to insert a line of commands into this file, which you will later turn into a shell script.  The function of each line is outlined below; you only need to copy and paste the big block of text further down.  The individual explanations are so you can customize the code to fit your needs.</p><p><strong>picsfolder=”/media/documents/photosfordesktop”</strong></p><p>This line points to whatever folder holds the photos you want scrolling in the background.  Be sure to change it to whatever folder holds yours.</p><p><strong>cd $picsfolder</strong></p><p>This changes the current directory to the new folder full of pictures.</p><p><strong>files=(././.jpg)</strong></p><p>This creates an array out of all your photos, allowing them to be mixed up for display later.</p><p><strong>N=${#files[@]}</strong></p><p>This simply identifies the number of pictures in the new array.</p><p><strong>((N=RANDOM%N))</strong></p><p>This chooses a random photo from those you made available.</p><p><strong>randomfile=`echo ${files[$N]} | cut &#8211;characters=”1 2” &#8211;complement`</strong></p><p>This identifies the name of the specific photo chosen.</p><p><strong>Gconfigtool-2 -t str –set /desktop/gnome/background/picture_filename “$picsfolder$randomfile”</strong></p><p>This sets the desktop with your new (temporary) photo as the background.</p><p>Now, take all those commands, put together below, and copy and paste them into the text editor you opened earlier:</p><p><strong>picsfolder=”/media/documents/photosfordesktop”<br
/> cd $picsfolder<br
/> files=(././.jpg)<br
/> N=${#files[@]}<br
/> ((N=RANDOM%N))<br
/> randomfile=`echo ${files[$N]} | cut &#8211;characters=”1 2” &#8211;compliment`<br
/> Gconfigtool-2 -t str –set /desktop/gnome/background/picture_filename “$picsfolder$randomfile”</strong></p><p>Save your text document as /bin/timedwallpaper.sh and exit the text editor.  Everything is ready – now you just need to tell your computer to do it.  For this next part your distribution needs to have “cron” installed, a program which typically comes pre-packaged.  To make sure you have it, type</p><p><strong>sudo apt-get install cron</strong></p><p>Once you have ensured it is installed, type</p><p><strong>crontab -e</strong></p><p>At the bottom start a new line and type</p><p><strong> */5 * * * * timedwallpaper.sh</strong></p><p>This sets the time between pictures at five minutes.  Change the number to whatever you see fit.  Arrow down to the next blank line, and then type</p><p><strong>@reboot timedwallpaper.sh</strong></p><p>After that, press Control+x, then y, and finally enter.  Exit the terminal and you are good to go.  Not only will your script run however often you program it to, it will now reset each time you start your computer as well.  Enjoy the scenery!</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2011/06/05/changing-your-linux-background/feed/</wfw:commentRss> <slash:comments>10</slash:comments> </item> <item><title>Custom wallpaper placement with anyPaper</title><link>http://www.ghacks.net/2010/05/10/custom-wallpaper-placement-with-anypaper/</link> <comments>http://www.ghacks.net/2010/05/10/custom-wallpaper-placement-with-anypaper/#comments</comments> <pubDate>Mon, 10 May 2010 11:13:53 +0000</pubDate> <dc:creator>Jack Wallen</dc:creator> <category><![CDATA[Desktop Manager]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Open Source]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[Tutorials Basic]]></category> <category><![CDATA[background]]></category> <category><![CDATA[desktop]]></category> <category><![CDATA[GNOME]]></category> <category><![CDATA[wallpaper]]></category> <category><![CDATA[wallpapersetter]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=25313</guid> <description><![CDATA[Today we continue on with our Wallpaper theme! You&#8217;ve already seen how to Manage your wallpaper in GNOME as well as how to set up a changing rotation of wallpapers with Wallpaper Drapes (see &#8220;Desktop Drapes for GNOME&#8220;). Now it&#8217;s time for something a bit different. Most wallpaper applets pretty much do the same thing: They [...]]]></description> <content:encoded><![CDATA[<p>Today we continue on with our Wallpaper theme! You&#8217;ve already seen how to <a
title="Managing your wallpaper in GNOME" href="http://www.ghacks.net/2010/05/08/managing-wallpaper-in-gnome/" target="_blank">Manage your wallpaper in GNOME</a> as well as how to set up a changing rotation of wallpapers with Wallpaper Drapes (see &#8220;<a
title="Desktop Drapes for GNOME" href="http://www.ghacks.net/2010/05/09/desktop-drapes-for-gnome/" target="_blank">Desktop Drapes for GNOME</a>&#8220;). Now it&#8217;s time for something a bit different. Most wallpaper applets pretty much do the same thing: They will either place a picture on your desktop or manage multiple pictures that will change at a set interval. For the most part there is little variation in these tools. But one such tool offers a single addition to the standard wallpaper manager that sets it apart. That tool is anyPaper. And that feature allows you to place your image anywhere on your desktop you like. For those that use icons on their desktop, this is actually a most welcome feature (you&#8217;ll understand in a bit). And, unlike most tools, AnyPaper actually offers you a preview of what your desktop will look like.</p><p>anyPaper is a front end for the wallpapersetter command. And in this article I will show you how to install and use the handy desktop wallpaper tool <a
title="anyPaper" href="http://anypaper.sourceforge.net/" target="_blank">anyPaper</a>.</p><p><span
id="more-25313"></span><strong>Features</strong></p><p>anyPaper doesn&#8217;t boast a huge set of features. But what it does do is handy. Here is the feature set:</p><ul><li>Preview of selected image</li><li>Six wallpaper modes (fullscreen, normal, tiled, adjusted, scaled and custom scale)</li><li>Customize background color, image position, wallpapersetter and screen size</li><li>Preview of background before setting</li><li>no-set option for only handling images (command line)</li></ul><p><strong>Installation</strong></p><p>Installation of anyPaper is quite simple. You will find this application in your distribution&#8217;s standard repositories. Because of that, all you need to do for installation is follow these steps:</p><ol><li>Open up your Add/Remove Software utility.</li><li>Search for &#8220;anypaper&#8221; (no quotes).</li><li>Select anypaper for installation.</li><li>Click Apply to install.</li></ol><p>That&#8217;s it. If you do not already have the wallpapersetter command installed, anypaper should pick this up as a dependency. You are now ready to go.</p><p><strong>Usage</strong></p><div
id="attachment_25316" class="wp-caption alignleft" style="width: 310px"><a
href="http://www.ghacks.net/wp-content/uploads/2010/05/anypaper.png"><img
class="size-medium wp-image-25316 " src="http://www.ghacks.net/wp-content/uploads/2010/05/anypaper-500x410.png" alt="" width="300" height="246" /></a><p
class="wp-caption-text">Figure 1</p></div><p>When you fire up anyPaper you will be surprised at how small the tool is. Remember, this is a front end for a fairly basic command, so it doesn&#8217;t require much. The main (and only) window has two tabs (see Figure 1). The first tab is where you configure your wallpaper. In this tab you can set the following:</p><p><strong>File</strong>: The image you want to use as your wallpaper.</p><p><strong>Style</strong>: Adjusted, Fullscreen, Tiled, Normal, Scaled, Custom Scaled. If you want to move an image to a specific spot on your desktop you must use Adjusted (and the image must be smaller than your actual desktop).</p><p><strong>Background</strong>: Color to fill empty spaces.</p><p><strong>Position x</strong>: The horizontal placement of your image.</p><p><strong>Position y</strong>: The vertical placement of your image.</p><p><strong>Width</strong>: Custom width.</p><p><strong>Height</strong>: Custom height.Finally, on this tab, you can preview what your wallpaper will look like by hitting the Preview button. This only opens your wallpaper in a viewer window.</p><p>The second tab, Configuration, allows you to customize the wallpapersetter command line options. Here you can customize:</p><p><strong>Default output file</strong>: This will be the file wallpapersetter uses as the actual wallpaper.</p><p><strong>Command</strong>: Any command line options you want to use (see <em>man wallpapersetter</em> for a list of options).</p><p><strong>Style</strong>: This is a list of four possible scaling options used in GTK from the gdk_pixbuf library.</p><p>Once you have made all the necessary adjustments click the Save As button (to save your options) and then click Apply. The Apply button will actually apply the wallpaper to your desktop.</p><p><strong>Final thoughts</strong></p><p>It&#8217;s not filled with tons of tools and it won&#8217;t rotate a directory full of wallpapers on your desktop. What anyPaper does, however, is place your wallpaper exactly where you want it on your desktop.  If you&#8217;re very picky about how your desktop looks, you might give anyPaper a try.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2010/05/10/custom-wallpaper-placement-with-anypaper/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Managing wallpaper in GNOME</title><link>http://www.ghacks.net/2010/05/08/managing-wallpaper-in-gnome/</link> <comments>http://www.ghacks.net/2010/05/08/managing-wallpaper-in-gnome/#comments</comments> <pubDate>Sat, 08 May 2010 15:09:59 +0000</pubDate> <dc:creator>Jack Wallen</dc:creator> <category><![CDATA[Advice]]></category> <category><![CDATA[Desktop Manager]]></category> <category><![CDATA[Entertainment]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Open Source]]></category> <category><![CDATA[Tutorials Basic]]></category> <category><![CDATA[background]]></category> <category><![CDATA[GNOME]]></category> <category><![CDATA[KDE]]></category> <category><![CDATA[wallpaper]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=25267</guid> <description><![CDATA[There have been numerous articles on Ghacks covering the topic of Wallpaper. So I thought I would chime in with a short series on the subject. A lot of users think focusing on wallpaper is pointless. I disagree. Not only is the idea of personalizing your PC important, but it also allows for companies to [...]]]></description> <content:encoded><![CDATA[<p>There have been numerous articles on Ghacks covering the topic of Wallpaper. So I thought I would chime in with a short series on the subject. A lot of users think focusing on wallpaper is pointless. I disagree. Not only is the idea of personalizing your PC important, but it also allows for companies to brand their machines with logos and such. But regardless of why, if the idea of managing or changing wallpapers on a PC desktop wasn&#8217;t so important, there wouldn&#8217;t be so many sites dedicated to the subject.</p><p>So, in this series I am going to introduce you to a few tools that will help you manage your desktop wallpaper on the Linux desktop. In this first article I am going to focus on a couple of aspects of GNOME wallpaper: Specifically, installing extra wallpaper and how to change your wallpaper directly from the Nautilus file browser.</p><p><span
id="more-25267"></span></p><p><strong>Adding extra wallpaper</strong></p><p>The stock GNOME installation comes with a few nice wallpapers. Most of them are fairly innocuous, and some can be considered artsy. But did you know you didn&#8217;t have to scour the web to add more wallpaper to your GNOME desktop? You can find more in good old Synaptic. That&#8217;s right. If you fire up Synaptic and do a search for &#8220;wallpaper&#8221; (no quotes), you will find plenty of extras to load up. For example:</p><ul><li>ubuntu-wallpapers-extra</li><li>edgy-community-wallpapers</li><li>edgy-wallpapers</li><li>tropic-wallpapers</li><li>gnome-backgrounds</li></ul><div
id="attachment_25270" class="wp-caption alignleft" style="width: 310px"><a
href="http://www.ghacks.net/wp-content/uploads/2010/05/gnome_background.png"><img
class="size-medium wp-image-25270 " src="http://www.ghacks.net/wp-content/uploads/2010/05/gnome_background-500x462.png" alt="" width="300" height="277" /></a><p
class="wp-caption-text">Figure 1</p></div><p>You will also find wallpapers that install with specific themes as well. Once you have selected those packages for installation, click Apply to install. Now you can open up the Wallpaper manager (right click the desktop and select Change Desktop Background). Now, when you open up the background tab in the Appearances window (see Figure 1).</p><p>You will also notice a link in this tab labeled &#8220;Get more backgrounds online&#8221;. This is a great way to find new Linux-themed wallpaper. When you click that link it will open up your web browser to the <a
href="http://art.gnome.org/backgrounds/">http://art.gnome.org/backgrounds/</a> website where you can find plenty of outstanding wallpapers.</p><p><strong>nautilus-wallpaper</strong></p><p>There is, of course, a much easier way to set your desktop wallpaper in GNOME. Instead of having to open up the Appearance Properties window, you can install a simple Nautilus extension that will allow you to right click an image (within the Nautilus file manager) and select &#8220;Set As Wallpaper&#8230;&#8221;. To install this handy extension follow these steps:</p><p>1. Open up Synaptic.</p><p>2. Search for &#8220;wallpaper&#8221; (no quotes).</p><p>3. Find nautilus-wallpaper and mark for installation.</p><p>4. Click Apply to install.</p><p>5. Log out of GNOME.</p><p>6. Log back into GNOME.</p><p>You can now open up Nautilus and right-click any image and set it as your desktop background. You won&#8217;t be able to manipulate the image (like stretch, center, or tile), but you can set it as your background quickly.</p><p><strong>Final thoughts</strong></p><p>Of course there are plenty more wallpaper management tools out there. There are more tools that work with GNOME, some for KDE, and more. But no matter the tool (or desktop), you will have your Linux desktop personalized to suit your (or your company&#8217;s) needs.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2010/05/08/managing-wallpaper-in-gnome/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>Flickr Wallpaper Slideshow</title><link>http://www.ghacks.net/2008/04/01/flickr-wallpaper-slideshow/</link> <comments>http://www.ghacks.net/2008/04/01/flickr-wallpaper-slideshow/#comments</comments> <pubDate>Tue, 01 Apr 2008 19:50:31 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Cool]]></category> <category><![CDATA[Entertainment]]></category> <category><![CDATA[background]]></category> <category><![CDATA[flickr]]></category> <category><![CDATA[images]]></category> <category><![CDATA[photos]]></category> <category><![CDATA[wallpaper]]></category> <guid
isPermaLink="false">http://www.ghacks.net/?p=3688</guid> <description><![CDATA[You all know that I like to search for new wallpaper repositories and one that I found recently is hosted at Flickr. What&#8217;s even more interesting is the fact that you can view all 25581 photos in a slideshow with the option to load a photo page if you spot a wallpaper that you like [...]]]></description> <content:encoded><![CDATA[<p>You all know that I like to search for new wallpaper repositories and one that I found recently is hosted at Flickr. What&#8217;s even more interesting is the fact that you can view all 25581 photos in a slideshow with the option to load a photo page if you spot a wallpaper that you like to download.</p><p>The Photo Pools name is  Wallpapers (1024&#215;768 minimum) which should give you a good understanding of what you can expect. The minimum size of every picture of the group is 1024&#215;768 although photos with a size of 1600&#215;1200 are preferred.</p><p>You can start the wallpaper slideshow right <a
href="http://www.flickr.com/groups/wallpapers/pool/show/">here</a> which loads a new tab in your browser starting with the first picture. Some options are available that influence the speed of the slideshow and the information that are shown on screen.</p><p><span
id="more-3688"></span><a
href='http://www.ghacks.net/wp-content/uploads/2008/04/flickr_wallpapers.jpg'><img
src="http://www.ghacks.net/wp-content/uploads/2008/04/flickr_wallpapers.jpg" alt="flickr wallpapers" title="flickr wallpapers" width="500" height="334" class="alignnone size-full wp-image-3689" /></a></p><p>The tiny thumbnails at the bottom let you skip images. Remember you find more than 25000 images in the photo pool, this could take a while to see them all even on the fastest slideshow speed.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2008/04/01/flickr-wallpaper-slideshow/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>1000 Wallpapers on a single page</title><link>http://www.ghacks.net/2007/02/24/1000-wallpapers-on-a-single-page/</link> <comments>http://www.ghacks.net/2007/02/24/1000-wallpapers-on-a-single-page/#comments</comments> <pubDate>Sat, 24 Feb 2007 13:12:38 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Cool]]></category> <category><![CDATA[Entertainment]]></category> <category><![CDATA[abstract-wallpaper]]></category> <category><![CDATA[background]]></category> <category><![CDATA[background-image]]></category> <category><![CDATA[free-image]]></category> <category><![CDATA[free-wallpaper]]></category> <category><![CDATA[wallpapers]]></category> <guid
isPermaLink="false">http://www.ghacks.net/2007/02/24/1000-wallpapers-on-a-single-page/</guid> <description><![CDATA[Many wallpaper websites can be classified as spammy. They have to many ads, some use popups and other means of making a quick buck. Good wallpaper sites are therefor rare and deserve to be mentioned in an article. The over 1000 abstract wallpaper on a single page website offers what its page title suggests, a good way of viewing and downloading some or even all of the wallpapers offered on that page.]]></description> <content:encoded><![CDATA[<p>Many wallpaper websites can be classified as spammy. They have to many ads, some use popups and other means of making a quick buck. Good wallpaper sites are therefor rare and deserve to be mentioned in an article. The over <a
href="http://www.freephotosandvideos.com/photos/artwork/abstract_wallpapers.php" title="abstract wallpapers" target="_blank">1000 abstract wallpapers</a> on a single page website offers what its page title suggests, a good way of viewing and downloading some or even all of the wallpapers offered on that page.</p><p><img
src="http://www.ghacks.net/files/screens/2007/02/wallpaper1.jpg" title="abstract wallpaper" alt="abstract wallpaper" height="188" width="250" /> <img
src="http://www.ghacks.net/files/screens/2007/02/wallpaper2.jpg" title="free wallpapers" alt="free wallpapers" height="200" width="250" /></p><p><span
id="more-1234"></span> Width and height of the images vary between 1280*1024 and 1600*1200, there is however no way to find out about the original image size without clicking on the thumbnail which loads the full sized image.</p><p>The page could take some time to load if you are using a low speed connection, all thumbnails on that single page are about 2K which means that you will have to download about 2 megabytes before all thumbnails are displayed.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2007/02/24/1000-wallpapers-on-a-single-page/feed/</wfw:commentRss> <slash:comments>7</slash:comments> </item> <item><title>Beautify your desktop icons</title><link>http://www.ghacks.net/2007/01/16/beautify-your-desktop-icons/</link> <comments>http://www.ghacks.net/2007/01/16/beautify-your-desktop-icons/#comments</comments> <pubDate>Tue, 16 Jan 2007 13:15:57 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Operating Systems]]></category> <category><![CDATA[Tools]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[arrow]]></category> <category><![CDATA[background]]></category> <category><![CDATA[desktop]]></category> <category><![CDATA[freeware]]></category> <category><![CDATA[iconoid]]></category> <category><![CDATA[image]]></category> <category><![CDATA[shortcuts]]></category> <category><![CDATA[transparent]]></category> <guid
isPermaLink="false">http://www.ghacks.net/2007/01/16/beautify-your-desktop-icons/</guid> <description><![CDATA[It does not make much sense to have the prettiest background image if it is cluttered with shortcuts and other icons, especially the way windows handles them. Shortcuts come with an arrow in the icons and the background text that is displayed beneath the icons is not transparent. We are going to change this with a few short fixes.]]></description> <content:encoded><![CDATA[<p>It does not make much sense to have the prettiest background image if it is cluttered with shortcuts and other icons, especially the way windows handles them. Shortcuts come with an arrow in the icons and the background text that is displayed beneath the icons is not transparent. We are going to change this with a few short fixes.</p><p>We are going to remove the arrow of the shortcuts icons first. Hit Windows + R and type regedit. Navigate to HKEY_CLASSES_ROOT\LNKFILE and delete the entry IsShortcut in the left pane. Next do the same at HKEY_CLASSES_ROOT\PIFFILE, et voila the arrow is gone.</p><p><span
id="more-1106"></span>Making the desktop icons transparent is far easier. We are going to use the freeware <a
title="iconoid" target="_blank" href="http://www.sillysot.com/download.htm">Iconoid</a> to do this. Start Iconoid after installation and click on disable drop shadows in the color tab if that button is available. The default setting is that the icon background is transparent which is exactly what we want. You might need to change the default text color as well if you are using backgrounds that have a similar color than the default font color.</p> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2007/01/16/beautify-your-desktop-icons/feed/</wfw:commentRss> <slash:comments>10</slash:comments> </item> <item><title>Transparent Backgrounds with Chaos Crystal</title><link>http://www.ghacks.net/2006/08/28/transparent-backgrounds-with-chaos-crystal/</link> <comments>http://www.ghacks.net/2006/08/28/transparent-backgrounds-with-chaos-crystal/#comments</comments> <pubDate>Mon, 28 Aug 2006 11:51:01 +0000</pubDate> <dc:creator>Martin Brinkmann</dc:creator> <category><![CDATA[Tools]]></category> <category><![CDATA[background]]></category> <category><![CDATA[chaos crystal]]></category> <category><![CDATA[Software]]></category> <category><![CDATA[transparent backgrounds]]></category> <category><![CDATA[Windows]]></category> <guid
isPermaLink="false">http://www.ghacks.net/2006/08/28/transparent-backgrounds-with-chaos-crystal/</guid> <description><![CDATA[Chaos Crystal, strange name for a freeware that makes it possible to set a transparency level of every window that is open on your windows system - to be preciser, on your windows 2000 or xp system. Chaos Crystal can be run from everywhere without problems because it does not install itself but simply becomes active when executed.]]></description> <content:encoded><![CDATA[<p><a
title="chaos crystal transparent background" href="http://www.elgorithms.com/downloads/chaoscrystal.php" target="_blank">Chaos Crystal</a>, strange name for a freeware that makes it possible to set a transparency level of every window that is open on your windows system &#8211; to be preciser, on your windows 2000 or xp system. Chaos Crystal can be run from everywhere without problems because it does not install itself but simply becomes active when executed.</p><p><img
title="chaos crystal transparent windows" alt="chaos crystal transparent windows" src="http://www.elgorithms.com/img/crs1.jpg" /><img
title="transparent windows chaos crystal" alt="transparent windows chaos crystal" src="http://www.elgorithms.com/img/crs2.jpg" /></p><p><span
id="more-752"></span></p><blockquote><p><em>Apply transparency by pressing and dragging the target (Dot next to Window Title field) crosshairs over the target window. You can also apply transparency by selecting the application from the dropdown menu.&#8221;</em></p></blockquote> ]]></content:encoded> <wfw:commentRss>http://www.ghacks.net/2006/08/28/transparent-backgrounds-with-chaos-crystal/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> </channel> </rss>
