New feature in Nautilus – resize icon on desktop.

2011-01-10 1 min read GNOME Learning

On Desktop on Gnome using nautilus, now you can resize individual icons. Just right click on the icon to resize and in the menu you will get a resize icon :

[Resize icon][1]
Resize icon

and then you can resize the icon from the borders:

[Resize icon][2]
Resize icon
Enhanced by Zemanta

Gnome Icons, themes and window decorator.

2010-07-14 1 min read Fedora Linux

Yesterday, I had tried fusion theme, but that did not work our that good for me. Reasons multifold:

  1. I like the features of GNome
  2. I am used to GNome
  3. Other window managers did not look that lucarative to me.
  4. Compiz was chocking my CPU..
    and so on..

So I went back to my GNome but wanted to change the looks so searched enough today to get the right set of Icons and themes. I think I finally got some decent ones and here are the links for the icons that I liked:
<a href="http://www.junauza.com/2008/08/10-really-cool-icon-sets-for.html" target="_blank">http://www.junauza.com/2008/08/10-really-cool-icon-sets-for.html
and this one <a href="http://www.ubuntu-unleashed.com/2008/05/ultimate-gnome-icon-theme.html" target="_blank">here.

Continue reading

bash script to change icon theme to check out all the installed themes (personal)

2010-05-19 2 min read Fedora GNOME Linux

I am really annoyed with the time that is required and the number of clicks that it takes to change the gnome icon theme. So here&#8217;s a small script that I wrote to quickly check out all the icon themes that I have in my ~/.icons folder.

#!/bin/bash
[[ &#8221;$1&#8221; == &#8221;&#8221; ]] && time=5 || time=$1
[[ &#8221;$2&#8221; == &#8221;&#8221; ]] && (
cd ~/.icons
cont=&#8221;y&#8221;
echo &#8221;Select one of the icon themes&#8221;
echo &#8221;When you like some theme just press Ctrl+c&#8221;
for i in *
do
[[ -d $i/cursors ]] || (
echo &#8221;Now trying …. : $i&#8221;
gconftool-2 –type string -s  /desktop/gnome/interface/icon_theme &#8221;$i&#8221;
sleep $time
)
done
) || gconftool-2 –type string -s  /desktop/gnome/interface/icon_theme &#8221;$2&#8221;

Continue reading

bash script to periodically change the cursor theme.

2010-05-07 1 min read Fedora GNOME

#!/bin/bash
[[ &#8221;$1&#8221; == &#8221;&#8221; ]] && time=5 || time=$1
[[ &#8221;$2&#8221; == &#8221;&#8221; ]] && (
cd ~/.icons
cont=&#8221;y&#8221;
echo &#8221;Select one of the icon themes&#8221;
echo &#8221;When you like some theme just press Ctrl+c&#8221;
for i in *
do
[[ -d $i/cursors ]] && (
echo &#8221;Now trying …. : $i&#8221;
gconftool-2 –type string -s  /desktop/gnome/peripherals/mouse/cursor_theme &#8221;$i&#8221;
sleep $time
)
done
) || gconftool-2 –type string -s  /desktop/gnome/peripherals/mouse/cursor_theme &#8221;$2&#8221;

Continue reading