#!/usr/local/bin/ksh93

#
# This file is a part of the NsCDE - Not so Common Desktop Environment
# Author: Hegel3DReloaded
# Licence: GPLv3
#

BIN="/usr/local/bin/colorpicker"

Existance=$(type "$BIN" 2>&1)

if [ -x "$BIN" ]; then
   exec "$BIN" "$@"
else
   echo "$Existance"
   exit 1
fi

