/usr/share/amsn/plugins/music/infosongbird is in amsn-data 0.98.9-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 | #!/usr/bin/env python
try:
import dbus
bus = dbus.SessionBus()
object = bus.get_object('org.mozilla.songbird', '/org/mozilla/songbird')
print object.getStatus()
print object.getTitle()
print object.getArtist()
except dbus.exceptions.DBusException:
print "not installed"
|