How to change default listing order / sort on homepage?

In file application\controllers\frontend.php in index method, line around 3219 or use search function in your editor to find it.

Change from:
if(empty($order))$order='id DESC';
to for example:
if(empty($order))$order='price ASC';