I made a small mod to show the tracker's favicon.ico next to the tracker name/count:
Example:
This is pretty simple to do, simple edit {webroot}/rutorrent/plugins/tracklabels/init.js and find the following line (should be 229):
Code:
li.addClass("cat");
And add after it the following 2 lines:
Code:
bgImg = 'http://' + lbl + '/favicon.ico';
li.css('backgroundImage', 'url(' + bgImg + ')');
Example:
This is pretty simple to do, simple edit {webroot}/rutorrent/plugins/tracklabels/init.js and find the following line (should be 229):
Code:
li.addClass("cat");
And add after it the following 2 lines:
Code:
bgImg = 'http://' + lbl + '/favicon.ico';
li.css('backgroundImage', 'url(' + bgImg + ')');