#!/usr/bin/python3

import subprocess

try:
    subprocess.call("/usr/libexec/warp/warp.py")
except KeyboardInterrupt:
    exit(0)
