This is for changing title via custom javascript and jQuery:
In similar way you can change icon path and change the main icon to custom.
Code:
// Changing title
$(function(){
$('title').html('New name');
});
Code:
// Changing icon
$(function(){
new_path = 'http://LM_address/scada/resources/icons/new_image.png'
$('head > link')[3].href= new_path
$('head > link')[4].href= new_path
});