#!/usr/bin/python

import os
import commands

launcher = commands.getoutput("/usr/lib/linuxmint/common/mint-which-launcher.py")

command = "%s /usr/lib/linuxmint/mintUpdate/mintUpdate.py show 0 &" % launcher
os.system(command)


