JasonWoof / cmus-unofficial

cmus fork for collecting patches from mailing list

This URL has Read+Write access

flyingmutant (author)
Thu May 28 14:42:21 -0700 2009
Jason Woofenden (committer)
Thu May 28 15:30:57 -0700 2009
cmus-unofficial / cmus-status-display
100755 51 lines (44 sloc) 1.121 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/bin/sh
#
# cmus-status-display
#
# Usage:
# in cmus command ":set status_display_program=cmus-status-display"
#
# This scripts is executed by cmus when status changes:
# cmus-status-display key1 val1 key2 val2 ...
#
# All keys contain only chars a-z. Values are UTF-8 strings.
#
# Keys: status file url artist album discnumber tracknumber title date
# - status (stopped, playing, paused) is always given
# - file or url is given only if track is 'loaded' in cmus
# - other keys/values are given only if they are available
#
 
output()
{
# write status to /tmp/cmus-status (not very useful though)
echo "$*" >> /tmp/cmus-status 2>&1
 
# WMI (http://wmi.modprobe.de/)
#wmiremote -t "$*" &> /dev/null
}
 
while test $# -ge 2
do
eval _$1='$2'
shift
shift
done
 
if test -n "$_file"
then
h=$(($_duration / 3600))
m=$(($_duration % 3600))
 
duration=""
test $h -gt 0 && dur="$h:"
duration="$dur$(printf '%02d:%02d' $(($m / 60)) $(($m % 60)))"
 
output "[$_status] $_artist - $_album - $_title ($_date) $duration"
elif test -n "$_url"
then
output "[$_status] $_url - $_title"
else
output "[$_status]"
fi