I’ve been working on WordPress themes and templates for the past few days and ended up designing two of them, first one is used by this blog right now, and second is the one that I’m handing out in this post.

This theme is based on the last theme I designed for blogger before we moved to wordpress and hence the name “Farewell”

Farewell

Preview | Download 

 

RIFLE is the second frontend that I’ve developed for GNU/Linux with pFormat being the first. RIFLE is a frontend to the ever-popular FFmpeg tool that lets you transcode and convert your audio and video files.

You might have noticed that the logo looks much better than that of pFormats’. Well, that’s because the logo was designed not by me, but by my buddy Anees P. He also named the product RIFLE, which stands for ‘Revolutionary Interface for FFmpeg in Linux Environment’ by the way.

(A Screenshot of RIFLE in its normal view)

Here are some of RIFLE’s highlight features :-

  • Lighweight with the installer at 20 KB and the source code at 70 KB.
  • Has no external dependencies in GNOME systems.
  • Simple and intuitive user interface.
  • Features a fully functional progressbar (available in no other FFmpeg frontends)

(A Screenshot of RIFLE during Conversion)

Supported Video Formats

-> AVI            -> FLV           -> MPG/MPEG            -> MKV

-> MOV         -> MP4          -> OGG                           ->  RM

-> SWF          -> VOB          -> WMV

 

Supported Audio Formats

-> AAC           -> AC3            -> AIFF            -> MP3

-> OGG          -> WAV          -> WMA

 

Download RIFLE Now (.deb)

Ever wanted to switch off your laptop display until a file completes downloading, or till you go grab a cup of coffee? Well, here is a simple bash script that will power off your display for a given period of time.

#!/bin/bash

# Name : Bash Script to Turn off your Display
# Author : Nakul Ezhuthupally 
# URL : http://nakule.in

trap bashtrap INT SIGHUP SIGINT SIGTERM

bashtrap(){
	xrandr --output $MONITORDEVICE --auto;
	exit 0;
}
ISTHERE=$(which xrandr);

if [ -z "$ISTHERE" ]; then
	echo "Error!!! xrandr is not available....";
	echo "Exiting......";
else
	echo "Found xrandr....";
fi

if [ -n "$2" ]; then
	echo "Invalid no. of Arguments";
	exit 0;
fi

MONITORDEVICE=$(xrandr | grep "\" | cut -f1 -d' ');

if [ -z $1 ]; then
	echo "Error!!! No time limit specified";
else
	echo "Preparing to turn the screen of for $1 minutes";
	xrandr --output $MONITORDEVICE --off;
	sleep $1'm';
	xrandr --output $MONITORDEVICE --auto;
fi

Copy and paste this code to a file named “displayoff” (or any other name you like) or download the file from here.Now open a terminal and run the following commands,

  • cd to the directory containing ‘displayoff’
  • chmod +x ./displayoff
Now run the script,
  • ./displayoff 5 – This will turn off your display for 5 minutes.
Remember, the time period you pass to the script is in minutes.P.S. You can turn the display back on before the specified time period by pressing CTRL + C
Those of you people who have tried Linux Mint will know how useful both the ‘Open as Administrator’ and the ‘Open in Terminal’ items in the right-click menu are. Unfortunately, they don’t come ‘out of the box’ so to say, with Ubuntu.

But, thankfully both of them are available in the Ubuntu repositories, which means adding these two nifty items to the right-click menu is as easy as typing a single command (each)

For ‘Open in Terminal’

Launch a terminal and type in ‘sudo apt-get install nautilus-open-terminal

For ’Open as Administrator’

Launch a terminal and type in ‘sudo apt-get install nautilus-gksu

Of course, you can also do this by selecting these two packages from synaptic and on a side note, if you are awfully particular about the single command thingie I mentioned, just type in >>

‘sudo apt-get install nautilus-open-terminal nautilus-gksu’      ;-)

Ubuntu 11.04 (Natty Narwhal) was released two days ago. It is safe to say that Natty was the most anticipated of all ubuntu releases and mostly because of unity – Desktop Environment developed by Ubuntu (based on GNOME 3).

Initially, I was a little doubtful of Ubuntu’s decision to nix GNOME for Unity but after having experienced Unity, I can see why they chose to do so. Here are some of my observations, opinions and minor complaints about Unity.

This is gonna be my longest post yet, so please do bear with me..!! :-)

The Dock (Launcher)

The first thing you’ll notice in Unity is the Mac OS X like dock to the left of the screen. The dock serves as both a launcher and task manager ala Windows 7 taskbar. The dock is pretty intuitive – click to launch, right click for options and drag and drop to add new launcher(s).

One thing I loved about the dock is after it hides itself, for the dock to reappear you need to point the mouse at the screen edge and hold for a second. Anyone who has used a dock before would know how irritating it is to see the dock pop up on just grazing the edge of your screen (without any intention of actually using the dock).

Tip : You can use the + shortcut to launch the items in the dock. Moreover, if you press and hold the button, you’ll see the corresponding number on the launcher icon.

For those of you, who doesn’t know what the button is, it is the one you call key :-)

The Panel 

Unlike GNOME 2, Unity sports only a single panel, at the top of the screen. The GNOME menu has now been replaced by a search/launcher dubbed ‘The Dash’ which appears on clicking the logo to the leftmost edge of the panel.

A major feature related to the panel is the integration of the menu bar in to the panel (more on that later). You can no longer add launchers and applets to the panel, which makes sense considering the addition of the dock.

Right-click is disabled on the panel and with that goes the option to (easily) edit the properties of the panel such as transparency and height. Now in order to modify these settings, you need to use compiz settings manager or gconf-editor :-(

Tip : Pressing the key will open up ‘The Dash’ for you.

Space Utilization

The space utilization in Unity is very much near perfect. As i mentioned before, the menu bar has been integrated into the panel (Mac like, I’m told) and this gives you the warm feeling that no space on your screen is wasted (especially on wide screen displays)

Some of us may have a little problem accessing the menu bar this way, especially when the window is not maximized. But, believe me this feature is worth the little initial inconvenience. 

Tip : The snap maximize feature ala Windows 7 is available in unity.

P.S. I think that the developers of GNOME-Do will be the ones most unhappy with the release of unity, as it seems to me that ‘The Dash’ will put GNOME-Do out of business.

With this release, people hesitant to use GNU/Linux due to so-called lack of ‘good looks’ and user experience will not have any more excuses.