gphotoframe Free digital photo frame for your desk.

2010-08-11 2 min read Fedora GNOME Photo

First install the gphotoframe application with the command :

sudo yum install gphotoframe

and if you want gnome-screensaver compatibility then install the package gphotoframe-gss also.

Gnome Photo Frame is a photo frame gadget for the <a class="zem_slink" title="GNOME" rel="homepage" href="http://www.gnome.org/">GNOME Desktop. Let&#8217;s see how this works.. run the command gphotoframe from a terminal:

Here is what you will see :

<a href="http://blog.amit-agarwal.com/wp-content/uploads/2010/08/Screenshot-gphotoframe.png"><img class="size-medium wp-image-1880" title="Screenshot-gphotoframe" src="http://blog.amit-agarwal.com/wp-content/uploads/2010/08/Screenshot-gphotoframe-300x227.png" alt="Screenshot-gphotoframe" width="300" height="227" />

Don&#8217;t panic on seeing the blank/black page. You need to add the source first. So <a class="zem_slink" title="Mouse (computing)" rel="wikipedia" href="http://en.wikipedia.org/wiki/Mouse_%28computing%29">right click on the window and go to preferences:

Continue reading

New GNOME 2.24 is an incremental improvement

2010-07-15 1 min read GNOME Linux

<a href="http://www.linux.com/feature/149081">Link

Quite good details on the new improvements.. Currently I am installing empathy which looks quite interesting. Screenshot for empathy available <a href="http://linux.softpedia.com/progScreenshots/Empathy-Screenshot-27288.html">here.

Mod your gnome desktop, change the colors the easy way.

2010-06-25 1 min read Fedora GNOME

Install the autoten application. You can find the instructions in my earlier post today <a href="http://blog.amit-agarwal.co.in/2009/04/20/autoten-install-nvidia-gnome-color-chooser-and-many-others-in-one-click-on-fedora/">here.

Gnome color chooser is an application to allow you to change the color of your gnome DE in all aspects. Very easy to use GUI. Just install it and run it as gnome-color-chooser. Here&#8217;s a screenshot of the application.

<img class="size-full wp-image-751" title="Gnome Color Chooser" src="http://blog.amit-agarwal.co.in/wp-content/uploads/2010/08/gnomecolorchooser.jpg" alt="Gnome Color Chooser" width="346" height="445" />

The beauty of this application is that it allows to use XML files as input so there are lot of possibilities. And one of the most lucarat5ive ones is to download a pack of color schemes from <a href="http://gnome-look.org/CONTENT/content-files/84941-daX_UltraPack220_3v2_gnomecc.tar.bz2">here.  This has 220 theme colors to select from in the form of XML files which can be used directly with Gnome Color Chooser. So enjoy.

Continue reading

Viewing archive without extracting.

2010-06-25 1 min read GNOME

I was looking for this option and searched the net to find quite some utilities to do this.

  1. gvfs-archive — Select the file in nautilus and select &#8221;Archive Mounter&#8221; .. simple isn&#8217;t it. Supposed to work but didn&#8217;t work for me.. Though that may be because I am on rawhide.
  2. <a href="http://www.onicos.com/staff/iz/release/mi-arcfs/">mi-arcfs is another kernel dependent module to achieve this.
  3. <a href="http://code.google.com/p/fuse-zip/">fuse-zip from google code is another nice option.

And a nice article on this this is <a href="http://osdir.com/ml/gnome.usability/2003-01/msg00092.html">here.
Technorati Tags: <a class="performancingtags" href="http://technorati.com/tag/gnome" rel="tag">gnome, <a class="performancingtags" href="http://technorati.com/tag/archive" rel="tag">archive, <a class="performancingtags" href="http://technorati.com/tag/mount" rel="tag">mount, <a class="performancingtags" href="http://technorati.com/tag/file%20system" rel="tag">file system, <a class="performancingtags" href="http://technorati.com/tag/fs" rel="tag">fs

Continue reading

gnome-disk-manager – the easier way to manage disks in Gnome with Palimpsest

2010-05-25 1 min read Fedora GNOME Linux

I had been using quite different set of tools to this but this is really good. Just install the gnome-disk-manager with

sudo yum install gnome-disk-manager

The interface is very clean and easy to understand and is it very very fast when compared to the other Graphical utilities.

Here are some screenshots to take you through.

<a href="http://blog.amit-agarwal.co.in/wp-content/uploads/2010/08/screenshot_001.jpe"><img class="alignnone size-full wp-image-1204" title="screenshot_001" src="http://blog.amit-agarwal.co.in/wp-content/uploads/2010/08/screenshot_001.jpe" alt="screenshot_001" width="806" height="626" />

<a href="http://blog.amit-agarwal.co.in/wp-content/uploads/2010/08/screenshot_002.jpe"><img class="alignnone size-full wp-image-1205" title="screenshot_002" src="http://blog.amit-agarwal.co.in/wp-content/uploads/2010/08/screenshot_002.jpe" alt="screenshot_002" width="806" height="626" />

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

Disk identification by UUID in Fedora.

2010-05-19 2 min read GNOME Linux

Yesterday I managed to delete my complete /usr directory and thus had to re-install my OS but I learned something new yesterday which I didn&#8217;t know earlier or actually never bothered to find out.br /br /All the partitions are mounted by udev using the UUID or label now. Finding the label of setting the label is easy but that was not the case with UUID (at least till you dont know how to do it). So finally I set my foot to search it. Heres some of the things that I found:br /br /bblkid/b – Gives you a list like below for all your partitions:br //dev/sda6: UUID=&#8221;8D8A-6CF1&#8221; TYPE=&#8221;vfat&#8221; LABEL=&#8221;Backup&#8221; br /So this is sufficient to modify your fstab to refer to the UUID or label instead of the drive. So whats the change in fstab. If the earlier entry looks likebr //dev/sdb6nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp; /media/Bkup3nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp; vfatnbsp;nbsp;nbsp; uid=500,nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp; 0 0br /then you can change this to :br /UUID=&#8221;8D8A-6CF1&#8221;nbsp;nbsp; /media/Bkup3nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp; vfatnbsp;nbsp;nbsp; uid=500,nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp; 0 0br /What is the benifit:br /———————br /When you re-format your Hard Disk there is a likely possibility that the dev name could well change and thus completely changing the mount points for all your fstab entries. This is really a pain if you have 10 or more partitions like the way I have. So if you use label or UUID then they never change and your mount points remain the same.br /br /Effective use: Use autofs package to automatically mount all your partitions. Autofs mounts the package at /media/LABEL, so before you hit to start your autofs label all your disks.br /br /Other ways to find the disk labels and UUID&#8217;s:br /ls /dev/disk/by-uuid –gt; simplest way. :)br /br /Will get back to this later with more details.br /br /

Continue reading
Older posts Newer posts