Changes between Version 5 and Version 6 of MpdStatus


Ignore:
Timestamp:
Feb 17, 2007, 5:06:16 PM (17 years ago)
Author:
simon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MpdStatus

    v5 v6  
    1111== Requirements ==
    1212  * [http://www.python.org/ Python 2.4].
    13   * [http://www.musicpd.org/mpc.shtml mpc].
     13  * [http://www.musicpd.org/py-libmpdclient.shtml py-libmpdclient].
    1414
    1515== Download ==
     
    2222== Usage ==
    2323
    24 When run, the script simply outputs current track information (or '--Not playing--') to standard output.  To have this update continuously, run it repeatedly inside a loop construct, for example (using `sh`):
     24When run, the script simply outputs current track information (or volume info) to standard output.  To have this update continuously, run it repeatedly inside a loop construct, for example (using `sh`):
    2525{{{
    2626#!sh
    2727while true
    2828do
    29     mpd-status.py
     29    mpdstatus.py
    3030    sleep 1
    3131done