shotwell- Photo organizer for Linux in Gnome

2010-01-21 2 min read Fedora Linux Photo

Here is description of shotwell:

Shotwell is a new <a class="zem_slink freebase/en/open_source" title="Open Source" rel="wikinvest" href="http://www.wikinvest.com/concept/Open_Source">open source photo organizer designed for the <a class="zem_slink freebase/en/gnome" title="GNOME" rel="homepage" href="http://www.gnome.org/">GNOME <a class="zem_slink freebase/en/desktop_environment" title="Desktop environment" rel="wikipedia" href="http://en.wikipedia.org/wiki/Desktop_environment">desktop environment. It allows you to import photos from your camera, view and edit them, and share them with others.

Link to shotwell:

<a href="http://www.yorba.org/shotwell/" target="_blank">http://www.yorba.org/shotwell/

Here are some <a class="zem_slink freebase/en/screenshot" title="Screenshot" rel="wikipedia" href="http://en.wikipedia.org/wiki/Screenshot">screenshots from the application.

Continue reading

Speed up gnome and change widow manager for gnome.

2010-01-13 3 min read Linux

I have been planning to do this for quite some time now. So finally I did this today. Actually I wanted to use some features of gnome like tracker and gnome-settings and quite a few other things along with running cairo-dock and still wanted the system to use less memory and faster response. It is well known fact that gnome/kde takes a lot of memory and CPU thus wanted to run some other window manager like fluxbox or blackbox. I went with fluxbox, as that suits my needs very well, so heres what I did:

Continue reading

C Prog to change wallpaper in every 30 seconds.

2009-12-08 1 min read GNOME

I wrote a good length of description on the below but somehow my browser closed without saving that. So I am just putting the program below:

#include <stdio.h>
#include <sys/types.h>
#include <dirent.h>
#include <string.h>
#include <gconf/gconf-client.h>

int main(int argc, char ** argv)
{
DIR *dp;
struct dirent ep;
char dirname[80];
GConfClient
client;
int s;

if (argc<=1)
{
printf(&#8221;%d is argc\n&#8221;, argc);
fflush (stdout);
dp = opendir(&#8221;.&#8221;);
strcpy(dirname, &#8221;.&#8221;);
}
else
{
dp = opendir(argv[1]);
strcpy(dirname, argv[1]);
}
if (argc <=2 )
s = 30;
else if ( argc >2 ) s = atoi(argv[2]);
//g_type_init();
client = gconf_client_get_default();
//client = gconf_client_get_for_engine (gconf_engine_get_default());

Continue reading

gnome-shell and gnome-do on F11 Screenshots

2009-12-02 1 min read Fedora GNOME

Here are some screenshots of gnome-shell :

<a href="http://blog.amit-agarwal.co.in/wp-content/uploads/2010/08/screenshot_0011.jpe"><img class="size-full wp-image-1246" title="Gnome Shell" src="http://blog.amit-agarwal.co.in/wp-content/uploads/2010/08/screenshot_0011.jpe" alt="Gnome Shell" width="840" height="525" />

<a href="http://blog.amit-agarwal.co.in/wp-content/uploads/2010/08/Screenshot.png"><img class="size-full wp-image-1247" title="Gnome Shell" src="http://blog.amit-agarwal.co.in/wp-content/uploads/2010/08/Screenshot.png" alt="Gnome Shell" width="840" height="525" />

<a href="http://blog.amit-agarwal.co.in/wp-content/uploads/2010/08/Screenshot-1.png"><img class="size-full wp-image-1248" title="Gnome Shell" src="http://blog.amit-agarwal.co.in/wp-content/uploads/2010/08/Screenshot-1.png" alt="Gnome Shell" width="840" height="525" />

<a href="http://blog.amit-agarwal.co.in/wp-content/uploads/2010/08/Screenshot-2.png"><img class="size-full wp-image-1249" title="Gnome Shell" src="http://blog.amit-agarwal.co.in/wp-content/uploads/2010/08/Screenshot-2.png" alt="Gnome Shell" width="840" height="525" />

Newer posts