#!/usr/bin/python

import os

for path in ["/usr/bin/mate-system-monitor", "/usr/bin/gnome-system-monitor"]:
    if os.path.exists(path):
        os.system(path)
        break
