Doctype Icon on Desktop

Is there a way to link to a doctype by creating a desktop Icon for it? Apart from listing inside the modules.

I added this script inside desktop.py folder and works now:

from future import unicode_literals
from frappe import _

def get_data():
return [
{
“module_name”: “[your module]”,
“color”: “grey”,
“category”: ‘Modules’,
“icon”: “octicon octicon-file-directory”,
“type”: “link”,
“link”: “List/Customer%20Data/List”,
“label”: _(“First U”)
}
]