# HG changeset patch # User Josef "Jeff" Sipek # Date 1156135716 14400 # Node ID fa1fc0c7020539502c60a52893fbf947e440fe45 # Parent 2efd6bbb1694a951f95e01b77a9e04331945199e Print the current time as well as total time for track diff -r 2efd6bbb1694 -r fa1fc0c70205 vixm/control.py --- a/vixm/control.py Sun Aug 20 18:21:49 2006 -0400 +++ b/vixm/control.py Mon Aug 21 00:48:36 2006 -0400 @@ -161,6 +161,7 @@ pos = xmms.control.get_playlist_pos() current = ui.lists[playlist.LIST_DEFAULT][pos] - print "%d. %s (%s)" % (pos+1, current["title"], + print "%d. %s (%s/%s)" % (pos+1, current["title"], + util.strtime(xmms.control.get_output_time()), util.strtime(current["time"]))