--- a
+++ b/rdpl2stream/radiotray.py
@@ -0,0 +1,42 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+
+import dbus
+import sys, os, string
+from RadioTray import RadioTray
+from dbus import DBusException
+from dbus.mainloop.glib import threads_init
+
+threads_init()
+current_path = os.path.realpath(__file__)
+basedir = os.path.dirname(os.path.realpath(__file__))
+if not os.path.exists(os.path.join(basedir, "radiotray.py")):
+ if os.path.exists(os.path.join(os.getcwd(), "radiotray.py")):
+ basedir = os.getcwd()
+sys.path.insert(0, basedir)
+os.chdir(basedir)
+
+def main(argv):
+ if(len(argv) == 1):
+ print "Trying to load URL: " + argv[0]
+
+ try:
+ bus = dbus.SessionBus()
+ radiotray = bus.get_object('net.sourceforge.radiotray', '/net/sourceforge/radiotray')
+
+
+ if argv[0] == '--config':
+ print "Radio Tray already running."
+ else:
+ print "Setting current radio through DBus..."
+
+ playUrl = radiotray.get_dbus_method('playUrl', 'net.sourceforge.radiotray')
+ playUrl(argv[0])
+
+ except DBusException:
+ RadioTray(argv[0])
+ else:
+ RadioTray()
+
+if __name__ == "__main__":
+ main(sys.argv[1:])