From f3f76e9b47492b60f9fc6e7735be332d36b97eaa Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sun, 29 Mar 2015 01:06:31 +0100 Subject: small fixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- examples/plugins/moc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'examples/plugins/moc') diff --git a/examples/plugins/moc b/examples/plugins/moc index 414323e..b572186 100644 --- a/examples/plugins/moc +++ b/examples/plugins/moc @@ -9,7 +9,7 @@ from plugins.moc import MOC from plugins.clock import Clock -OUTPUT, HEIGHT, YPOS, TOP = 0, 12, 24, True +OUTPUT, HEIGHT, YPOS, TOP = 0, 24, 24, True clock = Clock(sync_to = Clock.SECONDS) @@ -20,15 +20,17 @@ def start(): async(lambda : clock.continuous_sync(lambda : bar.invalidate())) +line2 = ['File', 'Title', 'SongTitle', 'Album', 'Artist'] def redraw(): moc_ = MOC() text = '' if moc_.state in [MOC.PAUSED, MOC.PLAYING]: - text = ' │ ' + ' │ '.join(['%s: %s' % (key, moc_[keys]) for key in moc_.keys()]) + text = ' │ ' + ' │ '.join(['%s: %s' % (key, moc_[key]) for key in moc_.keys() if key not in line2]) text = 'State: %s%s' % ({MOC.NOT_RUNNING : 'not running', MOC.STOPPED : 'stopped', MOC.PAUSED : 'paused', MOC.PLAYING : 'playing'}[moc_.state], text) + text += '\n' + ' │ '.join(['%s: %s' % (key, moc_[key]) for key in moc_.keys() if key in line2]) bar.clear() bar.draw_coloured_text(0, 10, 0, 2, text) -- cgit v1.2.3-70-g09d2