cplay-ng

simple curses audio player
git clone https://git.ce9e.org/cplay-ng.git

commit
8e10b92cd1ed4945f1910806b547b7076b0d5189
parent
5eb8ad099e088e9d6427a60cb23503597c913a1a
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2020-09-03 17:46
less noisey status: rm "Stopped"

there is no meaningful distinction between "stopped" and "uninitialized"

Diffstat

M cplay.py 2 +-

1 files changed, 1 insertions, 1 deletions


diff --git a/cplay.py b/cplay.py

@@ -604,7 +604,7 @@ class Application:
  604   604         elif player.path and player._proc:
  605   605             status = 'Playing %s' % os.path.relpath(player.path, filelist.path)
  606   606         else:
  607    -1             status = 'Stopped'
   -1   607             status = ''
  608   608 
  609   609         counter = '%s / %s' % (
  610   610             format_time(player.position),