If you're a Mac OS user, and you want to have a desktop app of the SEGSAdmin application, here is a quick and easy way to do it.

And here is the bash script to do it: (remove the "." in front of the hash mark. It's only added because of fornatting)

.#!/usr/bin/env bash

APPNAME=${2:-$(basename "${1}" '.sh')}; DIR="${APPNAME}.app/Contents/MacOS";

if [ -a "${APPNAME}.app" ]; then echo "${PWD}/${APPNAME}.app already exists :("; exit 1; fi;

mkdir -p "${DIR}"; cp "${1}" "${DIR}/${APPNAME}"; chmod +x "${DIR}/${APPNAME}";

echo "${PWD}/$APPNAME.app";