On Mon, Oct 06, 2008 at 04:39:20AM -0400, Aryeh M. Friedman wrote: > I work remotely with a company that is across the international date > line from me and I can do the math in my head but want to know if it is > possible to add a clock to my xfce panel that shows the time their (and > keep the one that has my time on it)
It's not as elegant as an additional clocklet in a task bar, but how about running multiple instances of xclock instead? #!/bin/sh # tzxclock -- run a timezoned instance of xclock env TZ=$1 xclock -digital -twentyfour -title $1 That wouldn't depend on the specifics of the window manager, and can still be customized with multiple flags like -fn, -fg, -bg, -geometry, -strftime etc... Regards, -cpghost. -- Cordula's Web. http://www.cordula.ws/ _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
