#!/usr/bin/python3

import os
import subprocess
import sys

if os.getuid() != 0:
	print("pearldrivers needs to be run as root.")
	sys.exit(1)

subprocess.Popen("/usr/lib/pearllinux/pearldrivers/pearldrivers.py")
