#!/usr/bin/python2
#
# Wrapper script to start a sK1 application
#
# Copyright (C) 2007-2015 Igor E. Novikov
#
# This library is covered by GNU General Public License.
# For more info see LICENSE file in sK1 root directory.

import sys, os

sys.path.insert(1, '/usr/lib/sk1-wx-2.0rc2')

try:
	os.getcwd()
except:
	os.chdir(os.path.expanduser('~'))

from sk1 import sk1_run
sk1_run()