<?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 &#187; icons</title>
	<atom:link href="http://www.ghacks.net/tag/icons/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Mon, 09 Nov 2009 10:11:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The different ways to execute a Linux application</title>
		<link>http://www.ghacks.net/2009/06/22/the-different-ways-to-execute-a-linux-application/</link>
		<comments>http://www.ghacks.net/2009/06/22/the-different-ways-to-execute-a-linux-application/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 20:37:21 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Desktop Manager]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[executables]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[menus]]></category>
		<category><![CDATA[run dialog]]></category>
		<category><![CDATA[starting applications]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=13783</guid>
		<description><![CDATA[I remember, way back, when I first started using Linux either was either in full-on command line only Linux or I was using Fvwm95. Executing commands in command line meant I had to know the name of the command. And when I was in the Fvwm95 desktop, if there wasn&#8217;t a menu entry for an [...]]]></description>
			<content:encoded><![CDATA[<p>I remember, way back, when I first started using Linux either was either in full-on command line only Linux or I was using Fvwm95. Executing commands in command line meant I had to know the name of the command. And when I was in the Fvwm95 desktop, if there wasn&#8217;t a menu entry for an application the only other way I could start up an application was to open up the command line and hope I could find the exact command to run. Typically this meant scrolling through the contents of <strong>/usr/bin</strong> with the command <em>ls -l | less</em>. And in today&#8217;s Linux (or at least in my main machine) there are approximately 2004 commands within <strong>/usr/bin</strong>. That could mean a lot of searching.</p>
<p>Fortunately Linux has grown up quite a bit so it&#8217;s not that difficult to start an application. In fact, I would argue that starting an application in Linux is easier than it is in Windows. How can I say that? Well, why don&#8217;t we examine the various ways you can start an application within Linux and you can make the judgment yourself.</p>
<p><span id="more-13783"></span><strong>Command line</strong></p>
<p>We&#8217;ll start with the more challenging first. Not that the command line is difficult, but it&#8217;s not nearly as easy as finding a menu entry and selecting it.</p>
<p>If you&#8217;ve been following me enough you probably have read an instance where I have mentioned global commands. A global command is a command that is located within your users&#8217; $PATH. NOTE: You can learn more about this in my article  &#8220;<a title="Adding directories to your $PATH" href="http://www.ghacks.net/2009/06/03/adding-a-directory-to-your-path/" target="_blank">Adding directories to your $PATH</a>&#8220;. To find out what directories are in your $PATH issue the command <em>echo $PATH</em>. What you see printed out at your prompt are all of the directories which contain commands you can run from anywhere on your system. There may be times when you do not install an application within your path. For those applications you have to enter the <strong>explicit</strong> path to the executable command. Let me explain&#8230;</p>
<p>Say you install the beta version of <a href="http://www.ghacks.net/tag/firefox/">Firefox</a> (for testing purposes) in the <strong>/opt</strong> directory. So now you will have a directory <strong>/opt/firefox</strong> and within that directory is the executable command <em>firefox</em>. Since <strong>/opt</strong> isn&#8217;t in your $PATH, if you execute only <em>firefox</em> what will start up is the default firefox on your system. In order to start up Firefox installed in <strong>/opt</strong> you will have to execute the command <em>/opt/firefox/firefox</em>.</p>
<p>Now let&#8217;s say you are looking for the apt command to add a gpg key<strong></strong> but you&#8217;re not sure of the name. You <strong>are</strong> sure, however, of two things: It is in <strong>/usr/bin</strong> and it has the string &#8220;key&#8221; in the command. You could issue this command to find all matching commands:</p>
<p><em>ls /usr/bin/*key* </em></p>
<p>which will list all commands in <strong>/usr/bin<em> </em></strong>that contain the word &#8220;key&#8221;. In that listing you will see <em>apt-key</em>. You now know the name of the command.</p>
<p><strong>GUI</strong></p>
<p>There are two main (and universal) ways to start up an application in Linux. The first, and easiest, is to look through your main menu for that command&#8217;s entry. Once you find that command you simply select it to open up the application. One of the issues that is not a universal truth in Linux is menu layout. All Linux desktops lay out their menus differently. But for the most part they hold true to some similarities (Primarily the grouping of applications into submenus like &#8220;Office&#8221;, &#8220;Networking&#8221;, &#8220;Graphics&#8221;, &#8220;Games&#8221;, etc.)</p>
<p>The next universal method of starting up an application is to open up your desktops&#8217; file manager, navigate to the directory that contains the executable, and double click on the executable. This is much like it is in Windows. Most often you will be navigating to <strong>/usr/bin</strong> to find these executables.</p>
<p>NOTE: If a command requires a terminal to run you can not run it in this method. The only commands you can start up this way are graphical commands.</p>
<p><strong>Run prompt</strong></p>
<div id="attachment_13784" class="wp-caption alignleft" style="width: 268px"><a href="http://www.ghacks.net/wp-content/uploads/2009/06/run_dialog.png"><img class="size-full wp-image-13784" src="http://www.ghacks.net/wp-content/uploads/2009/06/run_dialog.png" alt="Figure 1" width="258" height="167" /></a><p class="wp-caption-text">Figure 1</p></div>
<p>In some desktops you will have a &#8220;Run prompt&#8221; within your Start menu. In GNOME and KDE you can open up this dialog by pressing Alt-F2. In my favorite distribution, Elive Compiz, I set this to the Windows Key+F1. Figure 1 shows the Run Dialog in Elive. As you can see I want to start the game Torus Trooper. I start to type &#8220;torus&#8221; and the first matching entry pops up which I can click on to start up the application.</p>
<p><strong>Final thoughts</strong></p>
<p>Of course this is Linux so there are many more ways you can find to start up an application. You can create keyboard shortcuts for just about anything or, in some desktops, you can create desktop Icons. In some desktops you can create specific shelves for applications or add mini launchers. But, in general, the methods outlined above will get you through the day in Linux.</p>

	Tags: <a href="http://www.ghacks.net/tag/executables/" title="executables" rel="tag">executables</a>, <a href="http://www.ghacks.net/tag/icons/" title="icons" rel="tag">icons</a>, <a href="http://www.ghacks.net/tag/linux/" title="Linux" rel="tag">Linux</a>, <a href="http://www.ghacks.net/tag/menus/" title="menus" rel="tag">menus</a>, <a href="http://www.ghacks.net/tag/run-dialog/" title="run dialog" rel="tag">run dialog</a>, <a href="http://www.ghacks.net/tag/starting-applications/" title="starting applications" rel="tag">starting applications</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/02/07/yoggie-pico-personal-mobile-security-computer/" title="Yoggie PICO Personal Mobile Security Computer (February 7, 2008)">Yoggie PICO Personal Mobile Security Computer</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/10/30/with-ubuntu-9-10-arrives-wubi-9-10/" title="With Ubuntu 9.10 Arrives Wubi 9.10 (October 30, 2009)">With Ubuntu 9.10 Arrives Wubi 9.10</a> (1)</li>
	<li><a href="http://www.ghacks.net/2006/12/07/widgets-for-linux-superkaramba/" title="Widgets for Linux: SuperKaramba (December 7, 2006)">Widgets for Linux: SuperKaramba</a> (6)</li>
	<li><a href="http://www.ghacks.net/2006/12/06/widgets-for-linux-gdesklets/" title="Widgets for Linux: gDesklets (December 6, 2006)">Widgets for Linux: gDesklets</a> (3)</li>
	<li><a href="http://www.ghacks.net/2006/12/20/why-you-should-switch-your-parents-pc-to-ubuntu/" title="Why you should switch your parents pc to ubuntu (December 20, 2006)">Why you should switch your parents pc to ubuntu</a> (19)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/06/22/the-different-ways-to-execute-a-linux-application/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Find perfect icons with Iconfinder</title>
		<link>http://www.ghacks.net/2008/11/14/find-perfect-icons-with-iconfinder/</link>
		<comments>http://www.ghacks.net/2008/11/14/find-perfect-icons-with-iconfinder/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 10:22:07 +0000</pubDate>
		<dc:creator>Daniel Pataki</dc:creator>
				<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[desktop icon]]></category>
		<category><![CDATA[desktop icons]]></category>
		<category><![CDATA[icon search]]></category>
		<category><![CDATA[icon search engine]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=8262</guid>
		<description><![CDATA[Martin wrote an article in May about IconLook, a website where you can search for icons. I recently found another one, simply called Iconfinder, and as you would expect it enables you to find icons as well. During my testing I found that Iconfinder has more large icons in the 128&#215;128 range. It also seems [...]]]></description>
			<content:encoded><![CDATA[<p>Martin wrote an article in May about <a title="Iconlook" href="http://www.ghacks.net/2008/05/23/icon-search-engine/" target="_blank">IconLook</a>, a website where you can search for icons. I recently found another one, simply called <a title="Iconlook" href="http://www.iconfinder.net" target="_blank">Iconfinder</a>, and as you would expect it enables you to find icons as well. During my testing I found that Iconfinder has more large icons in the 128&#215;128 range. It also seems that IconFinder has less numbers by number, but what they do have extremely relevant and high quality.</p>
<p>Iconfinder is easier to use because it let&#8217;s you view License details and tags without going to a new page, and lets you download the icon as well without switching pages (this is rare). IconLook also has some good options, for example you can select sizes before performing the search, narrowing your search instantly. Iconfinder has the same functionality, but you can narrow only after your initial search.</p>
<p>Overall I like both sites, perhaps the best practice is to use both. Since neither will provide pages and pages of results, you can easily scan through both sites and find the best icon for you. If you know any other icon finding sites I&#8217;d appreciate you sharing, I&#8217;m always in need of some good icons!</p>
<p><span id="more-8262"></span></p>

	Tags: <a href="http://www.ghacks.net/tag/desktop-icon/" title="desktop icon" rel="tag">desktop icon</a>, <a href="http://www.ghacks.net/tag/desktop-icons/" title="desktop icons" rel="tag">desktop icons</a>, <a href="http://www.ghacks.net/tag/icon-search/" title="icon search" rel="tag">icon search</a>, <a href="http://www.ghacks.net/tag/icon-search-engine/" title="icon search engine" rel="tag">icon search engine</a>, <a href="http://www.ghacks.net/tag/icons/" title="icons" rel="tag">icons</a>, <a href="http://www.ghacks.net/tag/search/" title="search" rel="tag">search</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/04/26/worio-combines-bookmarking-and-web-search/" title="Worio Combines Bookmarking And Web Search (April 26, 2009)">Worio Combines Bookmarking And Web Search</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/06/09/wolfram-alpha-gets-its-first-core-update-after-launch/" title="Wolfram Alpha Gets Its First Core Update After Launch (June 9, 2009)">Wolfram Alpha Gets Its First Core Update After Launch</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/09/02/winfs-was-it-really-so-good/" title="WinFS, Was it Really so Good? (September 2, 2008)">WinFS, Was it Really so Good?</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/04/27/windows-search-replacement-fileseek/" title="Windows Search Replacement Fileseek (April 27, 2008)">Windows Search Replacement Fileseek</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/07/23/windows-search-40/" title="Windows Search 4.0 (July 23, 2008)">Windows Search 4.0</a> (12)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/11/14/find-perfect-icons-with-iconfinder/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Automatic Windows Thumbnail Image Generator</title>
		<link>http://www.ghacks.net/2008/08/27/automatic-windows-thumbnail-image-generator/</link>
		<comments>http://www.ghacks.net/2008/08/27/automatic-windows-thumbnail-image-generator/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 19:38:23 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[image icons]]></category>
		<category><![CDATA[thumbnail image]]></category>
		<category><![CDATA[thumbnail software]]></category>
		<category><![CDATA[thumbnails]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=6528</guid>
		<description><![CDATA[Image icons in Windows look all the same and the only way to distinguish or sort them is by using folders or file names. Xentient Thumbnails introduces a third possibility by providing an automatic windows thumbnail image generator for all images on the system. 
The system works by assigning thumbnail icons to every image in [...]]]></description>
			<content:encoded><![CDATA[<p>Image icons in Windows look all the same and the only way to distinguish or sort them is by using folders or file names. <a href="http://www.xentient.com/products/thumbnails/">Xentient Thumbnails</a> introduces a third possibility by providing an automatic windows thumbnail image generator for all images on the system. </p>
<p>The system works by assigning thumbnail icons to every image in the active folder which are then available independently of the view mode that the user has selected for the folder. When I <a href="http://www.freedownloadaday.com/2008/08/27/create-thumbnail-icons-for-your-image-files/">read</a> about the thumbnail image generator I had fears that it would slow down the system but this is apparently not the case since the application only becomes active when a user opens a folder that contains images.</p>
<p>Image icons are stored in a thumbnail cache that is set to keep 2000 thumbnail images with a size of 31 Megabytes. The size of the image icons cache can be changed, the maximum is 10000 thumbnails with a size of 156 Megabytes.</p>
<p><span id="more-6528"></span><img src="http://www.ghacks.net/wp-content/uploads/2008/08/thumbnail_image-500x367.png" alt="thumbnail image" title="thumbnail image" width="500" height="367" class="alignnone size-medium wp-image-6529" /></p>
<p>The cache can be cleared or disabled in the settings as well. They also contain the option to disable thumbnail generation. The settings can be accessed from the Windows Control Panel which is a bit unusual.</p>
<p>The program can be uninstalled easily which will also clear the icon cache leaving no traces of the application on the system. The application is compatible with Windows 98, ME, 2000 and Windows XP and supports the most popular image formats (JPG, JPE, JPEG, JP2, J2K, GIF, PNG, BMP, WBMP, EMF, WMF, PCX, PBM, PGM, PNM, PPM, RAS, TIF, TIFF, and TGA.)</p>

	Tags: <a href="http://www.ghacks.net/tag/icons/" title="icons" rel="tag">icons</a>, <a href="http://www.ghacks.net/tag/image-icons/" title="image icons" rel="tag">image icons</a>, <a href="http://www.ghacks.net/tag/thumbnail-image/" title="thumbnail image" rel="tag">thumbnail image</a>, <a href="http://www.ghacks.net/tag/thumbnail-software/" title="thumbnail software" rel="tag">thumbnail software</a>, <a href="http://www.ghacks.net/tag/thumbnails/" title="thumbnails" rel="tag">thumbnails</a>, <a href="http://www.ghacks.net/tag/windows/" title="Windows" rel="tag">Windows</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/06/08/thumbsdb-extractor/" title="Thumbs.db Extractor (June 8, 2008)">Thumbs.db Extractor</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/03/28/quality-icons-from-vistaico/" title="Quality icons from VistaICO (March 28, 2008)">Quality icons from VistaICO</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/04/20/pixelformer-advanced-icon-editor/" title="Pixelformer Advanced Icon Editor (April 20, 2008)">Pixelformer Advanced Icon Editor</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/05/17/icofx-icon-editor/" title="IcoFx Icon Editor (May 17, 2008)">IcoFx Icon Editor</a> (9)</li>
	<li><a href="http://www.ghacks.net/2006/12/10/hide-all-icons-on-your-desktop/" title="Hide all icons on your desktop (December 10, 2006)">Hide all icons on your desktop</a> (8)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/08/27/automatic-windows-thumbnail-image-generator/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Change All Windows System Icons At Once</title>
		<link>http://www.ghacks.net/2008/08/15/change-all-windows-system-icons-at-once/</link>
		<comments>http://www.ghacks.net/2008/08/15/change-all-windows-system-icons-at-once/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 19:45:22 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[computer icons]]></category>
		<category><![CDATA[icon sets]]></category>
		<category><![CDATA[icon tweaker]]></category>
		<category><![CDATA[icons]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=6191</guid>
		<description><![CDATA[Are you bored of the system icons that Windows ships with? If you like to change the default Windows theme to a custom one you also might like to change the icons that ship with Windows with different icon sets that look more professional or match the theme that you have selected.
Icon Tweaker can change [...]]]></description>
			<content:encoded><![CDATA[<p>Are you bored of the system icons that Windows ships with? If you like to change the default Windows theme to a custom one you also might like to change the icons that ship with Windows with different icon sets that look more professional or match the theme that you have selected.</p>
<p><a href="http://www.snapfiles.com/get/IconTweaker.html">Icon Tweaker</a> can change all Windows system icons at once. It ships with several icon sets that change most (if not all) of the default Windows system icons from My Computer to Printers and Folders. The default installation of Icon Tweaker comes with 11 icon sets that can be applied instantly to Windows. Changes do take effect immediately after hitting the apply button.</p>
<p>But don&#8217;t worry, there is always the chance to revert the changes back to the original settings in case that new icon theme did not fit perfectly after all.</p>
<p><span id="more-6191"></span><img src="http://www.ghacks.net/wp-content/uploads/2008/08/icon_sets-500x380.jpg" alt="icon sets" title="icon sets" width="500" height="380" class="alignnone size-medium wp-image-6192" /></p>
<p>New icon sets can be loaded into the application, a search on the Internet reveals several locations that contain icon sets that can be downloaded, for example the selection at <a href="http://www.skinbase.org/Skins/IconTweaker/166">Skinbase</a> or <a href="http://www.crystalxp.net/galerie/en.scat.5.html">Crystal XP</a>. I&#8217;m not that sure about system compatibility though. Icon Tweaker runs fine on Windows XP Service Pack 3 but it&#8217;s difficulty to tell because the author&#8217;s homepage is not available currently.</p>

	Tags: <a href="http://www.ghacks.net/tag/computer-icons/" title="computer icons" rel="tag">computer icons</a>, <a href="http://www.ghacks.net/tag/icon-sets/" title="icon sets" rel="tag">icon sets</a>, <a href="http://www.ghacks.net/tag/icon-tweaker/" title="icon tweaker" rel="tag">icon tweaker</a>, <a href="http://www.ghacks.net/tag/icons/" title="icons" rel="tag">icons</a>, <a href="http://www.ghacks.net/tag/software/" title="software" rel="tag">software</a>, <a href="http://www.ghacks.net/tag/windows/" title="Windows" rel="tag">Windows</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/04/20/pixelformer-advanced-icon-editor/" title="Pixelformer Advanced Icon Editor (April 20, 2008)">Pixelformer Advanced Icon Editor</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/05/17/icofx-icon-editor/" title="IcoFx Icon Editor (May 17, 2008)">IcoFx Icon Editor</a> (9)</li>
	<li><a href="http://www.ghacks.net/2008/03/29/create-textless-desktop-icons-and-shortcuts-with-enhanced-context-menu/" title="Create Textless Desktop Icons and Shortcuts with Enhanced Context Menu (March 29, 2008)">Create Textless Desktop Icons and Shortcuts with Enhanced Context Menu</a> (1)</li>
	<li><a href="http://www.ghacks.net/2007/10/30/change-folder-icons-with-ease/" title="Change Folder Icons with ease (October 30, 2007)">Change Folder Icons with ease</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/06/08/zip-repair/" title="Zip Repair (June 8, 2008)">Zip Repair</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/08/15/change-all-windows-system-icons-at-once/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Pimp your MSN Messenger with HiYo</title>
		<link>http://www.ghacks.net/2008/06/27/pimp-your-msn-messenger-with-hiyo/</link>
		<comments>http://www.ghacks.net/2008/06/27/pimp-your-msn-messenger-with-hiyo/#comments</comments>
		<pubDate>Fri, 27 Jun 2008 19:06:24 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Online Services]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[emoticons]]></category>
		<category><![CDATA[hiyo]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[instant messenger]]></category>
		<category><![CDATA[msn]]></category>
		<category><![CDATA[msn messenger]]></category>
		<category><![CDATA[smileys]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=5128</guid>
		<description><![CDATA[I&#8217;m not using Instant Messengers and also do not use the Web 2.0 equivalent in the form of Twitter and comparable services. That&#8217;s something that stuck with me since I began using the Internet in the early 90&#8217;s and I never changed my stance on the subject. Instant Messengers are nevertheless highly popular and Everton [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not using Instant Messengers and also do not use the Web 2.0 equivalent in the form of Twitter and comparable services. That&#8217;s something that stuck with me since I began using the Internet in the early 90&#8217;s and I never changed my stance on the subject. Instant Messengers are nevertheless highly popular and Everton came up with a nice addition for <a href="http://www.connectedinternet.co.uk/2008/06/27/hiyo-instant-messenger-addon/">MSN Messenger</a>.</p>
<p>One of the reasons why I never bothered to use Instant Messengers was the &#8220;spammy&#8221; connotation of them. There have been many services on the Internet that offered add-ons, smileys and other gimmicks for Instant Messengers that turned out to infect the user&#8217;s computer with malicious software or use the information entered by the user to spam him into oblivion.</p>
<p><a href="http://hiyo.com/Home.aspx">HiYo</a> seems to be different. The add-on for MSN Messenger comes without adware, spyware and other malicious software. It adds a new toolbar to the compose window that provides access to new content that can be added to posts like images and animations.</p>
<p><span id="more-5128"></span><img src="http://www.ghacks.net/wp-content/uploads/2008/06/messenger_windows-500x378.jpg" alt="messenger windows" title="messenger windows" width="500" height="378" class="alignnone size-medium wp-image-5130" /></p>
<ul>
<li>HiYo is loaded with tons of free animated Emoticons</li>
<li>Send the most hilarious Audibles to your friends on MSN Messenger</li>
<li>Find any Emoticon, Wink, Animation, Sound Effect, Audible or Nudge easily</li>
<li>Send HiYo’s crazy Winks to move and shake your buddy’s conversation window</li>
<li>Replace your old Display Pictures with cool animated slideshows</li>
</ul>
<p>One interesting aspect is that content gets suggested by HiYo which is great for the flow of conversation because it does not usually take ages to find the right image for the current situation.</p>

	Tags: <a href="http://www.ghacks.net/tag/emoticons/" title="emoticons" rel="tag">emoticons</a>, <a href="http://www.ghacks.net/tag/hiyo/" title="hiyo" rel="tag">hiyo</a>, <a href="http://www.ghacks.net/tag/icons/" title="icons" rel="tag">icons</a>, <a href="http://www.ghacks.net/tag/instant-messenger/" title="instant messenger" rel="tag">instant messenger</a>, <a href="http://www.ghacks.net/tag/msn/" title="msn" rel="tag">msn</a>, <a href="http://www.ghacks.net/tag/msn-messenger/" title="msn messenger" rel="tag">msn messenger</a>, <a href="http://www.ghacks.net/tag/smileys/" title="smileys" rel="tag">smileys</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/04/14/msn-repair/" title="MSN Repair (April 14, 2008)">MSN Repair</a> (15)</li>
	<li><a href="http://www.ghacks.net/2008/11/29/completely-uninstall-microsoft-messenger-variants/" title="Completely Uninstall Microsoft Messenger Variants (November 29, 2008)">Completely Uninstall Microsoft Messenger Variants</a> (6)</li>
	<li><a href="http://www.ghacks.net/2008/09/24/windows-live-messenger-9-ad-removal/" title="Windows Live Messenger 9 Ad Removal (September 24, 2008)">Windows Live Messenger 9 Ad Removal</a> (14)</li>
	<li><a href="http://www.ghacks.net/2007/09/10/windows-live-messenger-85-beta-2/" title="Windows Live Messenger 8.5 beta 2 (September 10, 2007)">Windows Live Messenger 8.5 beta 2</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/10/17/run-multiple-msn-messenger-instances/" title="Run Multiple MSN Messenger Instances (October 17, 2008)">Run Multiple MSN Messenger Instances</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/06/27/pimp-your-msn-messenger-with-hiyo/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Create Icons from Images</title>
		<link>http://www.ghacks.net/2008/06/10/create-icons-from-images/</link>
		<comments>http://www.ghacks.net/2008/06/10/create-icons-from-images/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 07:55:28 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[The Web]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[create icons]]></category>
		<category><![CDATA[icon editor]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[image to icon]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=4929</guid>
		<description><![CDATA[I reviewed the icon editor IcoFx about a month ago which offered the function to create an icon from an image that would be loaded into the software. It offered some benefits like different sizes and a configurable color range which made it one of the best tools for that purpose.
Shell City mentioned the online [...]]]></description>
			<content:encoded><![CDATA[<p>I reviewed the <a href="http://www.ghacks.net/2008/05/17/icofx-icon-editor/">icon editor</a> IcoFx about a month ago which offered the function to create an icon from an image that would be loaded into the software. It offered some benefits like different sizes and a configurable color range which made it one of the best tools for that purpose.</p>
<p><a href="http://shellcity.net/">Shell City</a> mentioned the online script <a href="http://ico.bradleygill.com/simple.php">Bradicon</a> today which is a stripped down version of the function in IcoFx. If IcoFx would be a commercial product then Bradicon could be its free version. It basically accepts an image and creates an icon from that image.</p>
<p>The icon will be provided in ico format as a download after the creation has finished. The icons that I tested were provided in 48&#215;48 format only but it should not be a problem to resize them manually. The website contains no information about the supported image formats, I was able to upload png and jpg images without difficulties.</p>
<p><span id="more-4929"></span>Bradicon is a nice alternative to IcoFx or similar products especially if you have to work in an environment where you are not allowed to download and install any additional software.</p>

	Tags: <a href="http://www.ghacks.net/tag/create-icons/" title="create icons" rel="tag">create icons</a>, <a href="http://www.ghacks.net/tag/icon-editor/" title="icon editor" rel="tag">icon editor</a>, <a href="http://www.ghacks.net/tag/icons/" title="icons" rel="tag">icons</a>, <a href="http://www.ghacks.net/tag/image-to-icon/" title="image to icon" rel="tag">image to icon</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/04/20/pixelformer-advanced-icon-editor/" title="Pixelformer Advanced Icon Editor (April 20, 2008)">Pixelformer Advanced Icon Editor</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/05/23/icon-search-engine/" title="Icon Search Engine (May 23, 2008)">Icon Search Engine</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/05/17/icofx-icon-editor/" title="IcoFx Icon Editor (May 17, 2008)">IcoFx Icon Editor</a> (9)</li>
	<li><a href="http://www.ghacks.net/2009/06/22/the-different-ways-to-execute-a-linux-application/" title="The different ways to execute a Linux application (June 22, 2009)">The different ways to execute a Linux application</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/03/28/quality-icons-from-vistaico/" title="Quality icons from VistaICO (March 28, 2008)">Quality icons from VistaICO</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/06/10/create-icons-from-images/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Customize your Vista Desktop</title>
		<link>http://www.ghacks.net/2008/06/01/customize-your-vista-desktop/</link>
		<comments>http://www.ghacks.net/2008/06/01/customize-your-vista-desktop/#comments</comments>
		<pubDate>Sun, 01 Jun 2008 16:10:26 +0000</pubDate>
		<dc:creator>joshua</dc:creator>
				<category><![CDATA[The Web]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[skins]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[vista]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=4593</guid>
		<description><![CDATA[You can do a lot more the simply changing your background and Screensaver in Windows Vista. Unfortunately you&#8217;ll need some 3rd party applications to do it. Microsoft decided nearly a decade ago that to protect their brand&#8217;s image all Windows themes must be signed by Microsoft.
Since then all of 9 themes have been given the [...]]]></description>
			<content:encoded><![CDATA[<p>You can do a lot more the simply changing your background and Screensaver in Windows Vista. Unfortunately you&#8217;ll need some 3rd party applications to do it. Microsoft decided nearly a decade ago that to protect their brand&#8217;s image all Windows themes must be signed by Microsoft.</p>
<p>Since then all of 9 themes have been given the official signature; Luna, Silver, Olive, Classic XP, <a href="http://royale-theme-for-win-xp.en.softonic.com/">Royale</a>, <a href="http://www.istartedsomething.com/20061029/royale-noir/">Royale Noir</a> , <a href="http://fileforum.betanews.com/detail/Microsoft_Zune_Theme_for_Windows_XP/1162510646/1">Zune</a> (modified Royale Noir), Aero and Classic Vista.</p>
<p>It&#8217;s not really a great selection and probably more the once you&#8217;ve wished you could give your desktop a nice new look. Luckily there is a way to get free 3rd party themes in Vista (and XP), although you&#8217;ll need to patch your system using a free tool called <a href="http://www.codegazer.com/vistaglazz/downloads/">Vista Glazz</a>. Once you&#8217;ve downloaded it&#8217;s as simple starting it up and pushing a button. You&#8217;ll need a reboot and then you should be able to install new themes.</p>
<p><span id="more-4593"></span>
<p>For other changes you can use <a href="http://www.tucows.com/preview/518729">Vista Visual Master</a> which is a great little application and can change icons, the boot screen and a number of other elements.</p>
<p>The best place to find Vista skins is of course on <a href="http://browse.deviantart.com/customization/skins/">Deviant Art</a> where you&#8217;ll find just about everything graphic related, although it may take you some time to sift through it all to find something you like. Icons, themes, Screensavers, wallpapers, screenshots&#8230; it&#8217;s all here.</p>
<p>For wallpaper images I suggest <a href="http://www.socwall.com/">Social Wallpapering</a> as maybe the best online resource for high resolution desktop images. It also has a voting system which is a good way to keep the standard of images high. <a href="http://www.desktopography.net/">Desktopography</a> is a showcase of some of the greatest Photoshop artists and has an annual gallery, some of the images here are amazing, well worth checking out. You can find a few more at&nbsp; <a href="http://customize.org/wallpapers">Customize.org</a> which also has some good archives of images.</p>
<p>For icons I would again recommend <a href="http://search.deviantart.com/?section=browse&amp;qh=boost%3Apopular+age_sigma%3A24h+age_scale%3A5&amp;q=vista+icons">Deviant Art</a> although you can get plenty more at <a href="http://www.vistaicons.com/">VistaIcons</a>, <a href="http://www.jm-artstudio.com/icons.html">Jm Art Studio</a> and this list of <a href="http://www.designvitality.com/blog/2007/11/free-icons/">50 places to get free icons</a>.</p>
<p>If you know of any other good resources sound off in the comments below.</p>

	Tags: <a href="http://www.ghacks.net/tag/desktop/" title="desktop" rel="tag">desktop</a>, <a href="http://www.ghacks.net/tag/icons/" title="icons" rel="tag">icons</a>, <a href="http://www.ghacks.net/tag/skins/" title="skins" rel="tag">skins</a>, <a href="http://www.ghacks.net/tag/themes/" title="themes" rel="tag">themes</a>, <a href="http://www.ghacks.net/tag/vista/" title="vista" rel="tag">vista</a>, <a href="http://www.ghacks.net/tag/windows/" title="Windows" rel="tag">Windows</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/03/28/quality-icons-from-vistaico/" title="Quality icons from VistaICO (March 28, 2008)">Quality icons from VistaICO</a> (5)</li>
	<li><a href="http://www.ghacks.net/2006/12/10/hide-all-icons-on-your-desktop/" title="Hide all icons on your desktop (December 10, 2006)">Hide all icons on your desktop</a> (8)</li>
	<li><a href="http://www.ghacks.net/2008/07/15/zen-key-an-all-purpose-application-manager/" title="Zen Key An All Purpose Application Manager (July 15, 2008)">Zen Key An All Purpose Application Manager</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/01/06/work-in-style-with-the-enigma-desktop-package/" title="Work in style with the Enigma desktop package (January 6, 2009)">Work in style with the Enigma desktop package</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/09/02/winfs-was-it-really-so-good/" title="WinFS, Was it Really so Good? (September 2, 2008)">WinFS, Was it Really so Good?</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/06/01/customize-your-vista-desktop/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Icon Search Engine</title>
		<link>http://www.ghacks.net/2008/05/23/icon-search-engine/</link>
		<comments>http://www.ghacks.net/2008/05/23/icon-search-engine/#comments</comments>
		<pubDate>Fri, 23 May 2008 15:48:37 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Online Services]]></category>
		<category><![CDATA[The Web]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[create icons]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[system]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=4241</guid>
		<description><![CDATA[If you do not like to create your own icons with a program like IcoFX Icon Editor you can use the Icon Look search engine instead which provides an easy to use interface and search. The main interface consists of a search form and three links in the footer. The search results are quickly displayed [...]]]></description>
			<content:encoded><![CDATA[<p>If you do not like to create your own icons with a program like IcoFX <a href="http://www.ghacks.net/2008/05/17/icofx-icon-editor/">Icon Editor</a> you can use the <a href="http://www.iconlook.com/">Icon Look</a> search engine instead which provides an easy to use interface and search. The main interface consists of a search form and three links in the footer. The search results are quickly displayed after entering a search term and hitting enter or clicking on the Look button.</p>
<p>By default icons of all supported sizes (12&#215;12 16&#215;16 22&#215;22 32&#215;32 48&#215;48 64&#215;64 128&#215;128) are selected and displayed in the search results. Each size can be unchecked so that only those icons are displayed that have the desired size. Many icons are available in several sizes.</p>
<p>A click on an icon loads a detailed profile page of that icon displaying it in all available sizes. The license and the website of the developer is listed on that page as well.</p>
<p><span id="more-4241"></span><img src="http://www.ghacks.net/wp-content/uploads/2008/05/iconlook-500x344.jpg" alt="iconlook" title="iconlook" width="500" height="344" class="alignnone size-medium wp-image-4242" /></p>
<p>Iconlook offers two additional search options. The first is the random search which displays random icons on the result page. The second is a tag cloud which is huge and kinda confusing. </p>
<p>Still if you are looking for icons you will definitely find a great selection at Iconlook.</p>

	Tags: <a href="http://www.ghacks.net/tag/create-icons/" title="create icons" rel="tag">create icons</a>, <a href="http://www.ghacks.net/tag/graphics/" title="graphics" rel="tag">graphics</a>, <a href="http://www.ghacks.net/tag/icons/" title="icons" rel="tag">icons</a>, <a href="http://www.ghacks.net/tag/images/" title="images" rel="tag">images</a>, <a href="http://www.ghacks.net/tag/system/" title="system" rel="tag">system</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/05/30/reveal-the-font-that-has-been-used-in-an-image/" title="Reveal the Font that has been used in an image (May 30, 2008)">Reveal the Font that has been used in an image</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/04/20/pixelformer-advanced-icon-editor/" title="Pixelformer Advanced Icon Editor (April 20, 2008)">Pixelformer Advanced Icon Editor</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/06/10/create-icons-from-images/" title="Create Icons from Images (June 10, 2008)">Create Icons from Images</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/10/23/xnview-add-ons-and-format-plugins/" title="XnView Add-ons and Format Plugins (October 23, 2008)">XnView Add-ons and Format Plugins</a> (1)</li>
	<li><a href="http://www.ghacks.net/2007/10/21/windows-live-photo-gallery/" title="Windows Live Photo Gallery (October 21, 2007)">Windows Live Photo Gallery</a> (8)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/05/23/icon-search-engine/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>IcoFx Icon Editor</title>
		<link>http://www.ghacks.net/2008/05/17/icofx-icon-editor/</link>
		<comments>http://www.ghacks.net/2008/05/17/icofx-icon-editor/#comments</comments>
		<pubDate>Sat, 17 May 2008 14:33:15 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[extract icons]]></category>
		<category><![CDATA[icofx]]></category>
		<category><![CDATA[icon editor]]></category>
		<category><![CDATA[icons]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=4141</guid>
		<description><![CDATA[I usually do not care that much about the icons on my computer. Sometimes however I encounter an icon that looks so ugly or misplaced that I have to change it. One possibility would be to use an icon editor like IcoFx to create a new icon, makes only sense if you are somewhat talented [...]]]></description>
			<content:encoded><![CDATA[<p>I usually do not care that much about the icons on my computer. Sometimes however I encounter an icon that looks so ugly or misplaced that I have to change it. One possibility would be to use an icon editor like IcoFx to create a new icon, makes only sense if you are somewhat talented in graphic design. </p>
<p><a href="http://icofx.ro/">IcoFx</a> could be the icon editor of choice then for you. It can create Icons for Windows 98 to Windows Vista and Macintosh OS X computers and provides functions to convert icons from Mac to Windows (and Windows to Mac) and to extract icons from 32-bit exe and dll files. One great feature is the ability to add, change or delete icons in executables which means that you could permanently change icons of explorer.exe for instance.</p>
<p>The interface looks clean, crisp and is very responsive to user input. The most gorgeous feature in my opinion is the ability to create icons from images. Just select an image on your hard drive and select the color depths and size of the icon that you want to create in the first step and use the advanced import settings to pick a specific part of the image, change the resolution and transparency.</p>
<p><span id="more-4141"></span><img src="http://www.ghacks.net/wp-content/uploads/2008/05/icon_editor1-500x400.jpg" alt="icon editor" title="icon editor" width="500" height="400" class="alignnone size-medium wp-image-4165" /></p>
<p>The icon will then be created and can be saved in the usual icon formats. Colors range from 2 colors to True Color + Alpha Channels which equals 1-bit to 32-bit. Supported resolutions are 16&#215;16, 24&#215;24, 32&#215;32, 48&#215;48, 256&#215;256 and custom resolutions.</p>
<p>Different sizes can be created and merged by dragging and dropping them into one icon window which has the effect that several sizes are supported in the icon file that will be created.</p>

	Tags: <a href="http://www.ghacks.net/tag/extract-icons/" title="extract icons" rel="tag">extract icons</a>, <a href="http://www.ghacks.net/tag/icofx/" title="icofx" rel="tag">icofx</a>, <a href="http://www.ghacks.net/tag/icon-editor/" title="icon editor" rel="tag">icon editor</a>, <a href="http://www.ghacks.net/tag/icons/" title="icons" rel="tag">icons</a>, <a href="http://www.ghacks.net/tag/software/" title="software" rel="tag">software</a>, <a href="http://www.ghacks.net/tag/windows/" title="Windows" rel="tag">Windows</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/04/20/pixelformer-advanced-icon-editor/" title="Pixelformer Advanced Icon Editor (April 20, 2008)">Pixelformer Advanced Icon Editor</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/08/18/extract-resources-from-files/" title="Extract Resources From Files (August 18, 2008)">Extract Resources From Files</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/03/29/create-textless-desktop-icons-and-shortcuts-with-enhanced-context-menu/" title="Create Textless Desktop Icons and Shortcuts with Enhanced Context Menu (March 29, 2008)">Create Textless Desktop Icons and Shortcuts with Enhanced Context Menu</a> (1)</li>
	<li><a href="http://www.ghacks.net/2007/10/30/change-folder-icons-with-ease/" title="Change Folder Icons with ease (October 30, 2007)">Change Folder Icons with ease</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/08/15/change-all-windows-system-icons-at-once/" title="Change All Windows System Icons At Once (August 15, 2008)">Change All Windows System Icons At Once</a> (9)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/05/17/icofx-icon-editor/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>High Quality Visual Styles, Wallpapers and Icons</title>
		<link>http://www.ghacks.net/2008/04/26/high-quality-visual-styles-wallpapers-and-icons/</link>
		<comments>http://www.ghacks.net/2008/04/26/high-quality-visual-styles-wallpapers-and-icons/#comments</comments>
		<pubDate>Sat, 26 Apr 2008 13:45:56 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Cool]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[styles]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[visual themes]]></category>
		<category><![CDATA[wallpapers]]></category>
		<category><![CDATA[windows styles]]></category>
		<category><![CDATA[windows themes]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=3929</guid>
		<description><![CDATA[Studio Twenty Eight is the homepage of designer Javier Ocasio who is offering his services and also some of his visual styles, wallpapers and icons on that site. Each category contains a list of free downloads. You naturally can&#8217;t expect to find hundreds of different wallpapers, styles or icons on the website but you do [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.studiotwentyeight.com">Studio Twenty Eight</a> is the homepage of designer Javier Ocasio who is offering his services and also some of his visual styles, wallpapers and icons on that site. Each category contains a list of free downloads. You naturally can&#8217;t expect to find hundreds of different wallpapers, styles or icons on the website but you do find high quality downloads on that website. Some have been created in collaboration with other artists but most by Javier alone.</p>
<p>Most of the downloads link to Javier&#8217;s page at Deviant Art where they can be downloaded. Wallpapers are usually available in different sizes. The visual styles can be downloaded in MS style or Windowblinds format. You do need a patched <a href="http://www.ghacks.net/2008/01/21/uxthemedll-patcher-for-windows-xp-and-vista/">uxtheme.dll</a> to use visual styles on your computer. I did explain the procedure in the article linked above. The icons are icon packs that can be simply used. They are available for Windows and Mac.</p>
<p>Javier explains exactly how users can apply the new visual styles, wallpapers and icons to their system. He links to various free programs that make it easier to change the icons or visual themes. Javier is also offering skins on his website for various applications like Winamp to match the visual styles for the system.</p>
<p><span id="more-3929"></span><a href='http://www.ghacks.net/wp-content/uploads/2008/04/studio_twenty_eight.jpg'><img src="http://www.ghacks.net/wp-content/uploads/2008/04/studio_twenty_eight-300x169.jpg" alt="studio twenty eight" title="studio twenty eight" width="300" height="169" class="alignnone size-medium wp-image-3930" /></a></p>
<p>It was funny to realize that Javier actually created the Thallos visual style that I&#8217;m using on my system currently. It&#8217;s an amazing style.</p>

	Tags: <a href="http://www.ghacks.net/tag/icons/" title="icons" rel="tag">icons</a>, <a href="http://www.ghacks.net/tag/styles/" title="styles" rel="tag">styles</a>, <a href="http://www.ghacks.net/tag/themes/" title="themes" rel="tag">themes</a>, <a href="http://www.ghacks.net/tag/visual-themes/" title="visual themes" rel="tag">visual themes</a>, <a href="http://www.ghacks.net/tag/wallpapers/" title="wallpapers" rel="tag">wallpapers</a>, <a href="http://www.ghacks.net/tag/windows-styles/" title="windows styles" rel="tag">windows styles</a>, <a href="http://www.ghacks.net/tag/windows-themes/" title="windows themes" rel="tag">windows themes</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/05/04/windows-xp-service-pack-3-uxthemedll-patch/" title="Windows XP Service Pack 3 Uxtheme.dll patch (May 4, 2008)">Windows XP Service Pack 3 Uxtheme.dll patch</a> (41)</li>
	<li><a href="http://www.ghacks.net/2006/09/03/enhance-your-desktop-with-samurize/" title="Enhance your desktop with Samurize (September 3, 2006)">Enhance your desktop with Samurize</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/06/01/customize-your-vista-desktop/" title="Customize your Vista Desktop (June 1, 2008)">Customize your Vista Desktop</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/01/06/work-in-style-with-the-enigma-desktop-package/" title="Work in style with the Enigma desktop package (January 6, 2009)">Work in style with the Enigma desktop package</a> (4)</li>
	<li><a href="http://www.ghacks.net/2007/08/12/wordpress-one-click-installation-of-plugins-and-themes/" title="Wordpress one click installation of plugins and themes (August 12, 2007)">Wordpress one click installation of plugins and themes</a> (4)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/04/26/high-quality-visual-styles-wallpapers-and-icons/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Pixelformer Advanced Icon Editor</title>
		<link>http://www.ghacks.net/2008/04/20/pixelformer-advanced-icon-editor/</link>
		<comments>http://www.ghacks.net/2008/04/20/pixelformer-advanced-icon-editor/#comments</comments>
		<pubDate>Sun, 20 Apr 2008 08:09:32 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[create icons]]></category>
		<category><![CDATA[icon editor]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[pixelformer]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=3862</guid>
		<description><![CDATA[I have to admit that I&#8217;m not much of a designer and that I have to rely on friends and people I pay to deliver designs for my websites. I mainly use image editors to reduce the size of images or merge them but that&#8217;s it. I discovered Pixelformer a few days ago, it&#8217;s an [...]]]></description>
			<content:encoded><![CDATA[<p>I have to admit that I&#8217;m not much of a designer and that I have to rely on friends and people I pay to deliver designs for my websites. I mainly use image editors to reduce the size of images or merge them but that&#8217;s it. I discovered Pixelformer a few days ago, it&#8217;s an icon editor and I have used some icon editors in the past. This one looks amazing, that&#8217;s the first thought that I had.</p>
<p>I know that design is not everything that counts and that functionality should be more important &#8211; are you listening Microsoft ? &#8211; but it really blows every other icon editor away when it comes to looks. Pixelformer can load high resolution images without difficulties, I remember some icon editors that would only accept images of a certain dimension. The memory footprint of Pixelformer is tiny, it uses less than 3 Megabytes after startup.</p>
<p>What I really like is the fact that it is possible to import icons from the computer. If you pick a file that contains more than one icon, explorer.exe, for instance then you get to choose the icon that you want to load.  While the icons can be loaded from executables, system files and images they can only be imported as image files with the ico file type as the obvious choice here. Three other file types are available.</p>
<p><span id="more-3862"></span><a href='http://www.ghacks.net/wp-content/uploads/2008/04/pf_ss_main_window.png'><img src="http://www.ghacks.net/wp-content/uploads/2008/04/pf_ss_main_window-300x233.png" alt="pixelformer" title="pixelformer" width="300" height="233" class="alignnone size-medium wp-image-3863" /></a></p>
<p><a href="http://www.qualibyte.com/pixelformer/">Pixelformer</a> is an easy to use stunning looking icon editor that comes with enough functionality to make most professional icon creators happy.</p>

	Tags: <a href="http://www.ghacks.net/tag/create-icons/" title="create icons" rel="tag">create icons</a>, <a href="http://www.ghacks.net/tag/icon-editor/" title="icon editor" rel="tag">icon editor</a>, <a href="http://www.ghacks.net/tag/icons/" title="icons" rel="tag">icons</a>, <a href="http://www.ghacks.net/tag/pixelformer/" title="pixelformer" rel="tag">pixelformer</a>, <a href="http://www.ghacks.net/tag/software/" title="software" rel="tag">software</a>, <a href="http://www.ghacks.net/tag/windows/" title="Windows" rel="tag">Windows</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/05/17/icofx-icon-editor/" title="IcoFx Icon Editor (May 17, 2008)">IcoFx Icon Editor</a> (9)</li>
	<li><a href="http://www.ghacks.net/2008/03/29/create-textless-desktop-icons-and-shortcuts-with-enhanced-context-menu/" title="Create Textless Desktop Icons and Shortcuts with Enhanced Context Menu (March 29, 2008)">Create Textless Desktop Icons and Shortcuts with Enhanced Context Menu</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/06/10/create-icons-from-images/" title="Create Icons from Images (June 10, 2008)">Create Icons from Images</a> (1)</li>
	<li><a href="http://www.ghacks.net/2007/10/30/change-folder-icons-with-ease/" title="Change Folder Icons with ease (October 30, 2007)">Change Folder Icons with ease</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/08/15/change-all-windows-system-icons-at-once/" title="Change All Windows System Icons At Once (August 15, 2008)">Change All Windows System Icons At Once</a> (9)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/04/20/pixelformer-advanced-icon-editor/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Create Textless Desktop Icons and Shortcuts with Enhanced Context Menu</title>
		<link>http://www.ghacks.net/2008/03/29/create-textless-desktop-icons-and-shortcuts-with-enhanced-context-menu/</link>
		<comments>http://www.ghacks.net/2008/03/29/create-textless-desktop-icons-and-shortcuts-with-enhanced-context-menu/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 17:29:37 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[shortcuts]]></category>
		<category><![CDATA[textless icons]]></category>
		<category><![CDATA[windows tips]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2008/03/29/create-textless-desktop-icons-and-shortcuts-with-enhanced-context-menu/</guid>
		<description><![CDATA[That&#8217;s probably the longest title that I&#8217;ve ever selected for an article here at Ghacks. A default Windows desktop contains several icons that have special &#8220;abilities&#8221; which stand in contrast to the shortcuts that users can create. If you take the Internet Explorer icon for example you notice that a right-click opens up a menu [...]]]></description>
			<content:encoded><![CDATA[<p>That&#8217;s probably the longest title that I&#8217;ve ever selected for an article here at Ghacks. A default Windows desktop contains several icons that have special &#8220;abilities&#8221; which stand in contrast to the shortcuts that users can create. If you take the <a href="http://www.ghacks.net/tag/internet-explorer/">Internet Explorer</a> icon for example you notice that a right-click opens up a menu with lots of options like opening the Internet Options or starting Internet Explorer.</p>
<p>I&#8217;m going to show you how you can create such icons and shortcuts by yourself. I&#8217;m using an icon as an example that will have options to load all installed browsers on the system. You do need the software <a href="http://www.herbystweaks.net/files/SCCU1.08Setup.exe">SCCU</a> [via <a href="http://www.neowin.net/forum/index.php?showtopic=224324">Neowin Forum</a>] for that. Four default icons are shown when the tool is started for the first time, they are Computer, Control Panel, My Documents and Network Places. It is possible to edit the options of those items or create a new one.</p>
<p>Select File > New to create a new icon and click on the New button next to Class Name. Make sure you pick something unique, I did pick Browser for this example. Clicking on Accept should display Browser in the left pane, click Finished to finish this process. Now begins the fun part of the process.</p>
<p><span id="more-3651"></span>It is possible to change the icon for that newly created icon by clicking on the folder symbol next to Class Icon. </p>
<p><img src='http://www.ghacks.net/wp-content/uploads/2008/03/scuu1.jpg' alt='scuu' /></p>
<p>A click on the Class Type tab lets you choose the location and type of the icon. Possible locations are Desktop, My Computer, Control Panel, Entire Network, Network Places and No Namespace. There are five types of icon available for you to choose from, they are: Icon, Folder, Shortcut, Shell Object and Existing Folder. My decision was to place a textless icon on the Desktop.</p>
<p><img src='http://www.ghacks.net/wp-content/uploads/2008/03/scuu2.jpg' alt='scuu' /></p>
<p>The final tab called Menu Item lets you drag and drop shortcuts and files to it which are then added to the context menu of the Browser icon. The form fields will be filled out automatically when a file or shortcut is dropped in the menu. The first dropped file or shortcut will the default left-click action for that icon.</p>
<p><img src='http://www.ghacks.net/wp-content/uploads/2008/03/scuu3.jpg' alt='scuu3' /></p>
<p>I have added three browser to the right-click menu of the icon. All that is left to do is to click on the Class > Merge option in the menu which immediately creates the file on the desktop. If you can&#8217;t see it refresh your desktop.</p>
<p><img src='http://www.ghacks.net/wp-content/uploads/2008/03/browser_icon.jpg' alt='browser icon' /></p>
<p>That was just a pretty basic example but it used all the important elements to create textless icons with an enhanced context menu. You should save the new icon finally, otherwise it will be saved in untitled.ini. This file is important in case you want to delete the icon again from the location that you placed it in because a normal delete operation is not working.</p>

	Tags: <a href="http://www.ghacks.net/tag/icons/" title="icons" rel="tag">icons</a>, <a href="http://www.ghacks.net/tag/shortcuts/" title="shortcuts" rel="tag">shortcuts</a>, <a href="http://www.ghacks.net/tag/software/" title="software" rel="tag">software</a>, <a href="http://www.ghacks.net/tag/textless-icons/" title="textless icons" rel="tag">textless icons</a>, <a href="http://www.ghacks.net/tag/windows/" title="Windows" rel="tag">Windows</a>, <a href="http://www.ghacks.net/tag/windows-tips/" title="windows tips" rel="tag">windows tips</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/08/07/windows-explorer-file-extension-column/" title="Windows Explorer File Extension Column (August 7, 2008)">Windows Explorer File Extension Column</a> (8)</li>
	<li><a href="http://www.ghacks.net/2008/06/05/set-global-shortcuts-in-windows/" title="Set Global Shortcuts in Windows (June 5, 2008)">Set Global Shortcuts in Windows</a> (4)</li>
	<li><a href="http://www.ghacks.net/2008/06/26/save-time-with-global-string-shortcuts/" title="Save Time With Global String Shortcuts (June 26, 2008)">Save Time With Global String Shortcuts</a> (2)</li>
	<li><a href="http://www.ghacks.net/2006/08/03/remove-unnecessary-entries-from-the-new-file-menu/" title="Remove Unnecessary Entries From The New File Menu (August 3, 2006)">Remove Unnecessary Entries From The New File Menu</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/04/20/pixelformer-advanced-icon-editor/" title="Pixelformer Advanced Icon Editor (April 20, 2008)">Pixelformer Advanced Icon Editor</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/03/29/create-textless-desktop-icons-and-shortcuts-with-enhanced-context-menu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Quality icons from VistaICO</title>
		<link>http://www.ghacks.net/2008/03/28/quality-icons-from-vistaico/</link>
		<comments>http://www.ghacks.net/2008/03/28/quality-icons-from-vistaico/#comments</comments>
		<pubDate>Fri, 28 Mar 2008 10:49:51 +0000</pubDate>
		<dc:creator>Daniel Pataki</dc:creator>
				<category><![CDATA[Online Services]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[wallpaper]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2008/03/28/quality-icons-from-vistaico/</guid>
		<description><![CDATA[VistaICO is a site that offers only a few icons, but the ones they do have are very high quality. The site looks a bit like an adsense site, the navigation is a bit weird, but you can find all the icons in the download section, and some cool wallpapers too.
They only offer 5 full [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.vistaico.com/">VistaICO</a> is a site that offers only a few icons, but the ones they do have are very high quality. The site looks a bit like an adsense site, the navigation is a bit weird, but you can find all the icons in the download section, and some cool wallpapers too.</p>
<p>They only offer 5 full packs, but these are full of great icons, all very well made and beautiful. They also have some specific icons like document icons, audio icons, script icons and so on. Wallpapers also only fill two pages but they capture the Vista-like feel very well.</p>
<p>They also offer a handy png to ico converter which may come in handy for the casual icon designer. All in all this is not a huge site, but what they do have is great, I have added it to my ever-growing collection.</p>
<p><span id="more-3641"></span></p>

	Tags: <a href="http://www.ghacks.net/tag/icons/" title="icons" rel="tag">icons</a>, <a href="http://www.ghacks.net/tag/vista/" title="vista" rel="tag">vista</a>, <a href="http://www.ghacks.net/tag/wallpaper/" title="wallpaper" rel="tag">wallpaper</a>, <a href="http://www.ghacks.net/tag/windows/" title="Windows" rel="tag">Windows</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/06/01/customize-your-vista-desktop/" title="Customize your Vista Desktop (June 1, 2008)">Customize your Vista Desktop</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/09/02/winfs-was-it-really-so-good/" title="WinFS, Was it Really so Good? (September 2, 2008)">WinFS, Was it Really so Good?</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/03/18/windows-vista-sp1-download/" title="Windows Vista SP1 Download (March 18, 2008)">Windows Vista SP1 Download</a> (12)</li>
	<li><a href="http://www.ghacks.net/2008/02/22/windows-vista-sp1-breaks-applications/" title="Windows Vista SP1 breaks applications (February 22, 2008)">Windows Vista SP1 breaks applications</a> (2)</li>
	<li><a href="http://www.ghacks.net/2006/12/04/windows-vista-editions-do-you-know-the-differences/" title="Windows Vista Editions &#8211; Do you know the differences ? (December 4, 2006)">Windows Vista Editions &#8211; Do you know the differences ?</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/03/28/quality-icons-from-vistaico/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Extract Icons from Applications</title>
		<link>http://www.ghacks.net/2008/01/15/extract-icons-from-applications/</link>
		<comments>http://www.ghacks.net/2008/01/15/extract-icons-from-applications/#comments</comments>
		<pubDate>Tue, 15 Jan 2008 09:09:04 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[extract icons]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[nirsoft]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2008/01/15/extract-icons-from-applications/</guid>
		<description><![CDATA[The question on how to keep an icon from a previous application came up in my article about Imagine, a nice fast image viewer and a reader suggested the Nirsoft software Icons Extract to grab the icon from the old program and put it in a place where you can use it for the new application as well.]]></description>
			<content:encoded><![CDATA[<p>The question on how to keep an icon from a previous application came up in my article about Imagine, a nice fast image viewer and a reader suggested the <a href="http://www.nirsoft.net/utils/iconsext.html">Nirsoft</a> software Icons Extract to grab the icon from the old program and put it in a place where you can use it for the new application as well.</p>
<p>Icons Extract offers a very sophisticated way to extract icons from files. You can either scan files, folders or processes that you want to scan for icons. If you know where the icon that you want is located you simply point Icon Extract to that folder or file and the icon will be displayed. </p>
<p>Once the icons are displayed you can save them to your hard drive in ICO and CUR format so that you can change the application&#8217;s icon to the one that you just extracted. Four filter can be used to narrow down results. You can search for icons and cursors or only one of them and can specify a specific image size and color depth.</p>
<p><span id="more-2865"></span><img src='http://www.ghacks.net/wp-content/uploads/2008/01/extract_icons.jpg' alt='extract icons' /></p>
<p>I performed a test scan of my Program Files folder which revealed roughly 6000 icons after scanning the entire folders for some minutes. To save one or more icons select them and click on the save button on top.</p>

	Tags: <a href="http://www.ghacks.net/tag/extract-icons/" title="extract icons" rel="tag">extract icons</a>, <a href="http://www.ghacks.net/tag/icons/" title="icons" rel="tag">icons</a>, <a href="http://www.ghacks.net/tag/nirsoft/" title="nirsoft" rel="tag">nirsoft</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/10/31/windows-system-control-center/" title="Windows System Control Center (October 31, 2008)">Windows System Control Center</a> (7)</li>
	<li><a href="http://www.ghacks.net/2009/09/24/windows-shortcuts-manager/" title="Windows Shortcuts Manager (September 24, 2009)">Windows Shortcuts Manager</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/05/27/windows-registry-monitoring/" title="Windows Registry Monitoring With RegFromApp (May 27, 2009)">Windows Registry Monitoring With RegFromApp</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/04/27/windows-operating-systems-special-folders-view/" title="Windows Operating Systems Special Folders View (April 27, 2009)">Windows Operating Systems Special Folders View</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/09/23/windows-live-messenger-contacts-manager/" title="Windows Live Messenger Contacts Manager (September 23, 2009)">Windows Live Messenger Contacts Manager</a> (7)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/01/15/extract-icons-from-applications/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Free icons and symbols resource</title>
		<link>http://www.ghacks.net/2007/11/29/free-icons-and-symbols-resource/</link>
		<comments>http://www.ghacks.net/2007/11/29/free-icons-and-symbols-resource/#comments</comments>
		<pubDate>Thu, 29 Nov 2007 10:00:51 +0000</pubDate>
		<dc:creator>Tobey</dc:creator>
				<category><![CDATA[The Web]]></category>
		<category><![CDATA[download icons]]></category>
		<category><![CDATA[download symbols]]></category>
		<category><![CDATA[icon resource]]></category>
		<category><![CDATA[iconlet]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[symbols]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2007/11/29/free-icons-and-symbols-resource/</guid>
		<description><![CDATA[Icons overall are very special in a certain way because a good icon or symbol must display some kind of information in usually a very tiny space. Therefore it's not so easy to create an icon that would express something in form of a comprehensible symbol and it can consume some time to make or find a specific symbol or icon.]]></description>
			<content:encoded><![CDATA[<p>Icons overall are very special in a certain way because a good icon or symbol must display some kind of information in usually a very tiny space. Therefore it&#8217;s not so easy to create an icon that would express something in form of a comprehensible symbol and it can consume some time to make or find a specific symbol or icon.</p>
<p><a href="http://www.iconlet.com">IconLet.com</a> looks like an average search engine too simple to be even interesting in any way but its simple interface only supports the clarity of this service. It lets you search for icons. But that&#8217;s not all. You can choose whether you want to search for png or gif image types. </p>
<p>IconLet also provides an Advanced search where you can choose icon resolutions from a long list of standard sizes and the license under which you want the symbol to be found. Only free/GNU/CC licenses are supported (so that you don&#8217;t have to worry about the rights so much). </p>
<p><span id="more-2349"></span>When you finally click that search button you get the results in order ranging from the smallest resolution to the largest instead of some mess. Finally, if you&#8217;re not looking for anything specific, it&#8217;s also possible to only browse all available icons from the archive in accordance with their size (10&#215;10 &#8211; 176&#215;88), file format and license. Though, the archive isn&#8217;t that big yet so that you can get &#8220;No results found&#8221; from time to time, especially when you don&#8217;t manage to describe what you&#8217;re looking for properly.</p>

	Tags: <a href="http://www.ghacks.net/tag/download-icons/" title="download icons" rel="tag">download icons</a>, <a href="http://www.ghacks.net/tag/download-symbols/" title="download symbols" rel="tag">download symbols</a>, <a href="http://www.ghacks.net/tag/icon-resource/" title="icon resource" rel="tag">icon resource</a>, <a href="http://www.ghacks.net/tag/iconlet/" title="iconlet" rel="tag">iconlet</a>, <a href="http://www.ghacks.net/tag/icons/" title="icons" rel="tag">icons</a>, <a href="http://www.ghacks.net/tag/symbols/" title="symbols" rel="tag">symbols</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/06/22/the-different-ways-to-execute-a-linux-application/" title="The different ways to execute a Linux application (June 22, 2009)">The different ways to execute a Linux application</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/03/28/quality-icons-from-vistaico/" title="Quality icons from VistaICO (March 28, 2008)">Quality icons from VistaICO</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/04/20/pixelformer-advanced-icon-editor/" title="Pixelformer Advanced Icon Editor (April 20, 2008)">Pixelformer Advanced Icon Editor</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/06/27/pimp-your-msn-messenger-with-hiyo/" title="Pimp your MSN Messenger with HiYo (June 27, 2008)">Pimp your MSN Messenger with HiYo</a> (5)</li>
	<li><a href="http://www.ghacks.net/2006/02/12/icons-for-windows-and-mac/" title="Icons for windows and mac (February 12, 2006)">Icons for windows and mac</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2007/11/29/free-icons-and-symbols-resource/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Change Folder Icons with ease</title>
		<link>http://www.ghacks.net/2007/10/30/change-folder-icons-with-ease/</link>
		<comments>http://www.ghacks.net/2007/10/30/change-folder-icons-with-ease/#comments</comments>
		<pubDate>Tue, 30 Oct 2007 05:18:46 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[folder icons]]></category>
		<category><![CDATA[folderico]]></category>
		<category><![CDATA[icons]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2007/10/30/change-folder-icons-with-ease/</guid>
		<description><![CDATA[Folders in Windows look all the same which serves the purpose of being able to recognize them immediately. While this might be nice for novice computer users advanced users might want to change the appearance of some of the folders to make them stick out from the rest.]]></description>
			<content:encoded><![CDATA[<p>Folders in Windows look all the same which serves the purpose of being able to recognize them immediately. While this might be nice for novice computer users advanced users might want to change the appearance of some of the folders to make them stick out from the rest.</p>
<p>It would be for instance possible to give all folders containing media files a distinctive icon, all work folders another one and all software folders a third. The software Folderico can change the folder icon of any folder in Windows XP and Windows 2000. This can be done by right-clicking a folder and selecting Folderico from the menu.</p>
<p>A set if icon suggestions will be shown and the icon the user chooses will be assigned immediately. The user has the choice to change the folder icons that are displayed when right-clicking a file in the options. Five icon sets are preinstalled including Windows XP, Windows Vista and Crystal Clear icons.</p>
<p><span id="more-2192"></span><img src="http://www.ghacks.net/files/screens/2007/10/change-folder-icon.jpg" alt="change folder icons" /></p>
<p>Folderico has an option to import icon libraries in icl format to add even more folder icons to the software. One great feature of Folderico is the permanency of the change. Even if you change a folder on an USB drive or network drive and disconnect that drive the changed folder icon will still be visible because of the way the icons are saved.</p>
<p>If you would connect the USB device to a friends computer it would still show the changed folders. If you are unhappy with the icon of a folder that you have selected for it you can simply swap it to another one or reset it which would change it to the default icon of Windows again.</p>
<p><strong>Read More:</strong></p>
<p><a href="http://eng.softq.org/folderico">Folderico</a></p>

	Tags: <a href="http://www.ghacks.net/tag/folder-icons/" title="folder icons" rel="tag">folder icons</a>, <a href="http://www.ghacks.net/tag/folderico/" title="folderico" rel="tag">folderico</a>, <a href="http://www.ghacks.net/tag/icons/" title="icons" rel="tag">icons</a>, <a href="http://www.ghacks.net/tag/software/" title="software" rel="tag">software</a>, <a href="http://www.ghacks.net/tag/windows/" title="Windows" rel="tag">Windows</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/02/09/use-related-icons-for-any-folder-icon/" title="Use Related Icons for any Folder Icon (February 9, 2008)">Use Related Icons for any Folder Icon</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/04/20/pixelformer-advanced-icon-editor/" title="Pixelformer Advanced Icon Editor (April 20, 2008)">Pixelformer Advanced Icon Editor</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/05/17/icofx-icon-editor/" title="IcoFx Icon Editor (May 17, 2008)">IcoFx Icon Editor</a> (9)</li>
	<li><a href="http://www.ghacks.net/2008/03/29/create-textless-desktop-icons-and-shortcuts-with-enhanced-context-menu/" title="Create Textless Desktop Icons and Shortcuts with Enhanced Context Menu (March 29, 2008)">Create Textless Desktop Icons and Shortcuts with Enhanced Context Menu</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/08/15/change-all-windows-system-icons-at-once/" title="Change All Windows System Icons At Once (August 15, 2008)">Change All Windows System Icons At Once</a> (9)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2007/10/30/change-folder-icons-with-ease/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Hide all icons on your desktop</title>
		<link>http://www.ghacks.net/2006/12/10/hide-all-icons-on-your-desktop/</link>
		<comments>http://www.ghacks.net/2006/12/10/hide-all-icons-on-your-desktop/#comments</comments>
		<pubDate>Sun, 10 Dec 2006 18:40:33 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[icon-hider]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[remove]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2006/12/10/hide-all-icons-on-your-desktop/</guid>
		<description><![CDATA[I bet that you have many icons on your desktop. I do and I'm sure that the majority of users will have many icons on their desktop as well. It is convenient to have them there to be able to quickstart the programs right from the desktop. Some icons might be there because you forgot to disable the option to remove the icon on the desktop while installing the program.]]></description>
			<content:encoded><![CDATA[<p>I bet that you have many icons on your desktop. I do and I&#8217;m sure that the majority of users will have many icons on their desktop as well. It is convenient to have them there to be able to quickstart the programs right from the desktop. Some icons might be there because you forgot to disable the option to remove the icon on the desktop while installing the program.</p>
<p>I also dislike the fact that I have so many icons on my desktop, it destroys the background image that I have selected for example. One way to get rid of the icons temporarily is to use the program <a target="_blank" title="icon hider windows xp" href="http://www.kellysoftware.com/software/iconhider.asp">Icon Hider</a>. Icon hider sits in your system tray and is able to temporarily remove all the icons on your desktop. This can be useful for aesthetic reasons, for screenshots and screencasting.</p>
<p><span id="more-995"></span>Iconhider has some additional functions that might be not that useful, judge for yourself. You may start the screensaver immediately, minimize all applications. You can use shortcuts to remove all icons, the shortcut to remove all icons is CTRL+ALT+H, the shortcut to make them appear again is CTRL+ALT+S.</p>

	Tags: <a href="http://www.ghacks.net/tag/desktop/" title="desktop" rel="tag">desktop</a>, <a href="http://www.ghacks.net/tag/freeware/" title="freeware" rel="tag">freeware</a>, <a href="http://www.ghacks.net/tag/icon-hider/" title="icon-hider" rel="tag">icon-hider</a>, <a href="http://www.ghacks.net/tag/icons/" title="icons" rel="tag">icons</a>, <a href="http://www.ghacks.net/tag/remove/" title="remove" rel="tag">remove</a>, <a href="http://www.ghacks.net/tag/windows/" title="Windows" rel="tag">Windows</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2007/02/04/remove-rogue-antispyware-antivirus-and-hard-drive-utilities/" title="Remove rogue antispyware, antivirus and hard drive utilities (February 4, 2007)">Remove rogue antispyware, antivirus and hard drive utilities</a> (3)</li>
	<li><a href="http://www.ghacks.net/2007/01/14/grid-move-divides-your-desktop-into-grids/" title="Grid Move divides your desktop into grids (January 14, 2007)">Grid Move divides your desktop into grids</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/06/01/customize-your-vista-desktop/" title="Customize your Vista Desktop (June 1, 2008)">Customize your Vista Desktop</a> (5)</li>
	<li><a href="http://www.ghacks.net/2007/01/16/beautify-your-desktop-icons/" title="Beautify your desktop icons (January 16, 2007)">Beautify your desktop icons</a> (10)</li>
	<li><a href="http://www.ghacks.net/2006/12/05/automatically-move-files-from-your-desktop/" title="Automatically move files from your desktop (December 5, 2006)">Automatically move files from your desktop</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2006/12/10/hide-all-icons-on-your-desktop/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Icons for windows and mac</title>
		<link>http://www.ghacks.net/2006/02/12/icons-for-windows-and-mac/</link>
		<comments>http://www.ghacks.net/2006/02/12/icons-for-windows-and-mac/#comments</comments>
		<pubDate>Sun, 12 Feb 2006 10:13:50 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Cool]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[mac icons]]></category>
		<category><![CDATA[windows icons]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=318</guid>
		<description><![CDATA[I found an interesting section at <a href="http://interfacelift.com/icons-mac/" target="_blank">interfacelift.com</a> which lets you icon packages for windows and macintosh. You find more than 90 pages each with 10 icon packages for macintosh and 24 pages with 10 icon packages each for microsoft windows. Downloads are free of course and icons look great. The site opens a popup with advertisment as well, if that annoys you use a popup blocker.]]></description>
			<content:encoded><![CDATA[<p>I found an interesting section at <a href="http://interfacelift.com/icons-mac/" target="_blank">interfacelift.com</a> which lets you icon packages for windows and macintosh. You find more than 90 pages each with 10 icon packages for macintosh and 24 pages with 10 icon packages each for microsoft windows. Downloads are free of course and icons look great. The site opens a popup with advertisment as well, if that annoys you use a popup blocker.</p>
<p><span id="more-318"></span></p>
<p>[tags]icon, windows, macintosh, interface, graphic[/tags]</p>

	Tags: <a href="http://www.ghacks.net/tag/icons/" title="icons" rel="tag">icons</a>, <a href="http://www.ghacks.net/tag/mac-icons/" title="mac icons" rel="tag">mac icons</a>, <a href="http://www.ghacks.net/tag/windows-icons/" title="windows icons" rel="tag">windows icons</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/06/22/the-different-ways-to-execute-a-linux-application/" title="The different ways to execute a Linux application (June 22, 2009)">The different ways to execute a Linux application</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/03/28/quality-icons-from-vistaico/" title="Quality icons from VistaICO (March 28, 2008)">Quality icons from VistaICO</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/04/20/pixelformer-advanced-icon-editor/" title="Pixelformer Advanced Icon Editor (April 20, 2008)">Pixelformer Advanced Icon Editor</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/06/27/pimp-your-msn-messenger-with-hiyo/" title="Pimp your MSN Messenger with HiYo (June 27, 2008)">Pimp your MSN Messenger with HiYo</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/05/23/icon-search-engine/" title="Icon Search Engine (May 23, 2008)">Icon Search Engine</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2006/02/12/icons-for-windows-and-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
