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’s a small script that I wrote to quickly check out all the icon themes that I have in my ~/.icons folder.

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

How does it work/How to use:

just copy paste the script in ~/bin or any other directory and make it executable. Now run the script without any parameter to check out all the themes one after the other, changing your icons every 5 seconds.

If you want to chnage the timer, just provide the time in seconds as first parameter.

If you want to chnage to specific theme, just provide the theme name as second parameter.

<span style="text-decoration: underline;">This can also be used as a script running in the background to change the icons every specified time and thus making your friends dazzled.

comments powered by Disqus