Fat Geek

RSS

Posts tagged with "linux"

Oct 3

git-dude: Lightweight Git commit notifier for Linux and OSX

thechangelog:

You might have seen our post last year on Gitifier, the Git commit notifier for OSX. If you prefer something a bit more *nix-y, check out git-dude from Marcin Kulik. Git-dude is a command line utility that monitors Git repos and provides desktop notifications using Growl on OSX or libnotify on Linux.

ScreenshotScreenshot

Configuration is done in the standard Git way:

git config --global dude.interval 30
git config --global dude.icon ~/.git-dude/github_32.png

Check the README for installation and advanced usage.

Changing the TZ info in any Linux Distro

If you wish to use Indian timezone on your EC2 or any linux host which is showing the date output in a different timezone , use 

ln -sf /usr/share/zoneinfo/Asia/Calcutta /etc/localtime


If you want to temporarily use a TimeZone, use the following and all the commands that use the TZ variable like date show the information in that timezone
export TZ=Asia/Calcutta
Cyberciti.biz