# SUX - Show Ur Xmms - # Coded by viper with bare hands and Vim # - Began Coding July 4, 2003 (8:30AM) / Ended coding Hopefully never :) - GNU license # Thanks to Liquid & Kuht.it guys for the Idea # This baby shows on xchat your playing song under xmms and needs you # to activate the xmms libsong_change.so plugin, # and configure it with this string ---> echo "%s" > /tmp/xmmssong __module_name__ = "suxmms" __module_version__ = "0.1" __module_description__ = "S-how U-r X-mms - Shows Current Xmms Playing Song on xchat " import xchat from string import strip def xmmsinfo(word, word_eol, userdata): file = open('/tmp/xmmssong','r') xmmssong = file.read() xchat.command(strip("me is now playing " + xmmssong)) return xchat.EAT_ALL xchat.hook_command('sux', xmmsinfo, help='/sux: Shows your current playing song under xmms')