#!/opt/perl5.10/bin//perl use 5.010; use strict; use warnings; # ABSTRACT: run App::TimeTracker::Gtk2TrayIcon # PODNAME: tracker_gtk_trayicon.pl use App::TimeTracker::Gtk2TrayIcon; App::TimeTracker::Gtk2TrayIcon->init('run'); =pod =head1 NAME tracker_gtk_trayicon.pl - run App::TimeTracker::Gtk2TrayIcon =head1 VERSION version 1.002 =head1 SYNOPSIS ~$ tracker_gtk_trayicon.pl & =head1 DESCRIPTION Adds a small app to your system tray that shows your working status as reported by C. A green light is shown if you're working, a red light if your idling. If you hover your mouse over the icon, the project (and tags) you're currently working on will be displayed. This script currently neither forks nor puts itself into the background. The best way (IMO) to start it is via a line in your F<.xinitrc> (or whatever system your window manager uses to automatically startup apps). =head1 OPTIONS AND CONFIGURATION Currently none. =head1 SEE ALSO L =head1 AUTHOR Thomas Klausner =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2011 by Thomas Klausner. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut __END__