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

import os
import sys

sys.path.insert(1, '/usr/lib/sk1-color-picker-1.1rc')

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

import cp2

cp2.run()