GNOME 2.28 released

2010-04-01 1 min read Linux

<a href="http://blog.amit-agarwal.co.in/category/linux/">Bookmark this category
< !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
GNOME 2.28 is released now, just a week after the release of the release candidate. This release includes several bugfixes & enhancements for included components.

URL: <a HREF="http://lxer.com/module/newswire/ext_link.php?rid=125905">http://lxer.com/module/newswire/ext_link.php?rid=125905

Gnome 3.0 – the beginning of workflow era

2010-03-31 1 min read GNOME

There is  a nice article <a href="http://d0od.blogspot.com/2009/09/gnome-3-quick-visual-tour.html">here. This talks about gnome 3.0 with screenshot. Definately worth looking at. And if you want to see the plan then you can head over <a href="http://live.gnome.org/ThreePointZero"> here.

gnome-blog — Deskbar applet for blogging

2010-03-25 0 min read Linux
\"SAN
Image by Getty Images via Daylife

Chanced upon utility called gnome blog. A nifty nice deskbar applet that can be used to post your blogs quickly.<h6 class="zemanta-related-title">Related articles by Zemanta <ul class="zemanta-article-ul"> <li class="zemanta-article-ul-li"><a href="http://www.omgubuntu.co.uk/2010/03/gnome-music-applet-dead-long-live.html">GNOME Music Applet dead, long live PanFlute (omgubuntu.co.uk) <li class="zemanta-article-ul-li"><a href="http://www.omgubuntu.co.uk/2010/03/docky-session-applet-video-shows-its.html">Docky Session Applet Video shows it&#8217;s made of win (omgubuntu.co.uk) <li class="zemanta-article-ul-li"><a href="http://www.ghacks.net/2009/12/23/manage-your-secure-shell-connections-from-the-gnome-panel/">Manage your secure shell connections from the GNOME panel (ghacks.net) <li class="zemanta-article-ul-li"><a href="http://www.ghacks.net/2010/03/02/connecting-to-a-microsoft-vpn-with-linux/">Connecting to a Microsoft VPN with Linux (ghacks.net) <li class="zemanta-article-ul-li"><a href="http://www.omgubuntu.co.uk/2010/03/gnome-media-player-adds-volume-control.html">GNOME Media Player Adds Volume control; 2nd release in 2 days (omgubuntu.co.uk) <li class="zemanta-article-ul-li"><a href="http://geek.co.il/wp/2009/11/27/my-desktop-in-a-gnome-shell">My desktop in a GNOME shell (geek.co.il) <li class="zemanta-article-ul-li"><a href="http://castrojo.wordpress.com/2010/03/25/become-a-friend-of-gnome/">Jorge Castro: Become a Friend of GNOME (castrojo.wordpress.com) <div class="zemanta-pixie"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/e1cc81d7-8946-4ce2-9d56-306b35747d8a/"><img class="zemanta-pixie-img" src="http://blog.amit-agarwal.co.in/wp-content/uploads/2010/08/reblog_b100.png" alt="Reblog this post [with Zemanta]" /><span class="zem-script more-related more-info pretty-attribution paragraph-reblog">

Continue reading

bash – change theme for gtk in gnome and take screenshot from script.

2010-03-24 1 min read Bash Fedora GNOME

I wrote a blog on bash script to change the icon/cursor theme using a bash script. Lets extend the same concept a little more and use the script to change the gtk theme for gnome and at the same time take a screenshot also.

#!/bin/bash
path=&#8221;/tmp/screenshot&#8221;
[[ &#8221;$1&#8221; == &#8221;&#8221; ]] && time=5 || time=$1
[[ &#8221;$2&#8221; == &#8221;&#8221; ]] && (
cd ~/.themes
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/gtk_theme &#8221;$i&#8221;
sleep 1
j=$(echo &#8221;$path/$i&#8221;).jpg
import -window root -quality 95 &#8221;$j&#8221;
sleep $time
)
done
) || gconftool-2 –type string -s  /desktop/gnome/interface/gtk_theme &#8221;$2&#8221;

Continue reading

Add a image to the list of background files in gnome

2010-03-23 1 min read Fedora GNOME Photo

In Gnome, when you right click on the desktop background you will get a menu for &#8221;Change Desktop backgound. The images displayed in this menu are quite a few but if you want to add your own (read: more than some 5-6 files) then it takes really some time in using the GUI to add them. And if you want to add a few 10&#8217;s of file, like say 50 then you are done.

Continue reading

Mount and unmount/umount images(iso/img) from nautilus (Fixed not mounting in Fedora)

2010-03-09 2 min read Fedora GNOME

Get the Nautilus Script <a href="http://gnome-look.org/content/show.php/moiso?content=84301" target="_blank">here. So what is required is that you have the necessary permission to run mount and umount as normal user with sudo command. If you are using gksu or gnomesu then you can change this in the script that you will get. Once you have got the script then you can run the installer for the script that comes in the package.

If you are running this is Fedora then you would need to make one more change other than the ones done by the installer, which is to allow sudo from non tty devices. Since this will be running from the nautilus so the script will not have any tty device and hence you would need to comment the following in the /etc/sudoers file:

Continue reading

Mod and hack the GNome main menu with automated scripts to create a menu of the directory.

2010-03-04 2 min read GNOME Linux

Problem:
I had a directory with very good collection of my scripts and very organized in folders. The structure is something like this, first I have the broad classification of the category. Then I have the name of the tool/script as the name of the directory. All these are perl/python or shell scripts and luckily labelled so with the extension. I want to add these to the GNome main (Applications) menu.
Solution:
Lets take it stepwise:
1)  Add new menu tools to the Applications menu. Go to /etc/xdg/menus
Open the file applications.menu and add the following before

Continue reading
Older posts Newer posts