#!/usr/bin/python3

import os
import subprocess

launcher = subprocess.getoutput("/usr/lib/linuxmint/common/mint-which-launcher.py")
command = "%s /usr/lib/linuxmint/mintbackup/mintbackup.py" % (launcher)
os.system(command)
