1 | MPD Status |
---|
2 | |
---|
3 | MPD Status is a quick Python script to display some details about the |
---|
4 | track currently playing in [1]MPD. It is intended for use in |
---|
5 | [2]wmii's status bar. |
---|
6 | |
---|
7 | If you want a more featureful status bar, check out [3]szs3rd, from |
---|
8 | which I shamelessly copied and hacked the mpc.py module. |
---|
9 | |
---|
10 | Features |
---|
11 | |
---|
12 | * Displays currently playing/paused song (that's a given really) |
---|
13 | with time. |
---|
14 | * If metadata isn't provided, falls back to the basename of the |
---|
15 | file. |
---|
16 | |
---|
17 | Requirements |
---|
18 | |
---|
19 | * [4]Python 2.4. |
---|
20 | * [5]mpc. |
---|
21 | |
---|
22 | Download |
---|
23 | |
---|
24 | Checkout mpd-status/trunk/ from the [6]Subversion repository: |
---|
25 | |
---|
26 | svn co http://svn.bleah.co.uk/repos/misc/mpd-status/trunk |
---|
27 | |
---|
28 | or, since it is just the one file, grab it via HTTP from: |
---|
29 | |
---|
30 | [7]http://svn.bleah.co.uk/repos/misc/mpd-status/trunk/mpd-status.py |
---|
31 | |
---|
32 | Installation and Usage |
---|
33 | |
---|
34 | (Instructions are based around the setup for wmii 2 in [8]Debian) |
---|
35 | |
---|
36 | 1. Place mpd-status.py somewhere, like /usr/local/bin/ or |
---|
37 | ~/.wmii/scripts/ |
---|
38 | 2. Copy /etc/wmii/status.sh to ~/.wmii/status.sh and edit it, or |
---|
39 | edit /etc/wmii/status.sh directly. |
---|
40 | 3. Edit the following line to include "`python2.4 /path/to/mpc.py`" |
---|
41 | (see patch below for an example): |
---|
42 | |
---|
43 | text="`date` `uptime | sed -e 's/.*://' -e 's/,//g'`" |
---|
44 | |
---|
45 | 4. Restart wmii: /etc/wmii/rc restart |
---|
46 | |
---|
47 | You should see some extra text on your wmibar, either "--Not |
---|
48 | playing--" or your currently playing/paused track. |
---|
49 | |
---|
50 | License |
---|
51 | |
---|
52 | mpd-status is free software; you can redistribute it and/or modify it |
---|
53 | under the terms of the [9]GNU General Public License as published by the |
---|
54 | [10]Free Software Foundation; either version 2 of the License, or (at your |
---|
55 | option) any later version. |
---|
56 | |
---|
57 | Svnbot is distributed in the hope that it will be useful, but WITHOUT ANY |
---|
58 | WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
---|
59 | FOR A PARTICULAR PURPOSE. See the [11]GNU General Public License for more |
---|
60 | details. |
---|
61 | |
---|
62 | Extras |
---|
63 | |
---|
64 | * [12]wmii-mpd-status.patch (497 bytes) - Example patch to wmii |
---|
65 | status.sh, added by simon on Mon Nov 7 13:57:32 2005. |
---|
66 | * [13]mpd-status.png (33 kB) - Screenshot showing status bar while |
---|
67 | playing, added by simon on Mon Nov 7 14:11:25 2005. |
---|
68 | |
---|
69 | References |
---|
70 | |
---|
71 | 1. http://www.musicpd.org/ |
---|
72 | 2. http://wmii.de |
---|
73 | 3. http://wmii.de/index.php/Contrib/Szs3rd |
---|
74 | 4. http://www.python.org/ |
---|
75 | 5. http://www.musicpd.org/mpc.shtml |
---|
76 | 6. http://subversion.tigris.org/ |
---|
77 | 7. http://svn.bleah.co.uk/repos/misc/mpd-status/trunk/mpd-status.py |
---|
78 | 8. http://www.debian.org/ |
---|
79 | 9. http://www.fsf.org/licensing/licenses/gpl.html |
---|
80 | 10. http://www.fsf.org/ |
---|
81 | 11. http://www.fsf.org/licensing/licenses/gpl.html |
---|
82 | 12. http://projects.bleah.co.uk/misc/attachment/wiki/MpdStatus/wmii-mpd-status.patch |
---|
83 | 13. http://projects.bleah.co.uk/misc/attachment/wiki/MpdStatus/mpd-status.png |
---|
84 | |
---|