summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian C. (anrxc) <anrxc@sysphere.org>2010-10-20 01:56:49 +0200
committerAdrian C. (anrxc) <anrxc@sysphere.org>2010-10-20 01:56:49 +0200
commit28db22aa746237e230018db45ba5f285ea4833c1 (patch)
treecb54702883ece6baafbde217eb5f501e05b043a2
parent950db6c2378fe4b8e68c081980192b3e7e876b1f (diff)
downloadplay-28db22aa746237e230018db45ba5f285ea4833c1.tar.xz
play: changed counter style after ncmpc
-rw-r--r--play2
1 files changed, 1 insertions, 1 deletions
diff --git a/play b/play
index e522b08..dbf74be 100644
--- a/play
+++ b/play
@@ -265,7 +265,7 @@ class CounterWindow(Window):
self.move(0, 0)
# Color of the statusbar counter
self.attron(curses.color_pair(1))
- self.insstr("%02dh %02dm %02ds" % (h, m, s))
+ self.insstr("[%02d:%02d:%02d]" % (h, m, s))
self.attroff(curses.color_pair(1))
self.touchwin()
self.refresh()