Changes between Version 5 and Version 6 of MpdStatus
- Timestamp:
- Feb 17, 2007, 5:06:16 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MpdStatus
v5 v6 11 11 == Requirements == 12 12 * [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]. 14 14 15 15 == Download == … … 22 22 == Usage == 23 23 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`):24 When 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`): 25 25 {{{ 26 26 #!sh 27 27 while true 28 28 do 29 mpd -status.py29 mpdstatus.py 30 30 sleep 1 31 31 done