#!/bin/bash
Whoami=`whoami`
if ! [ "$Whoami" = "root" ]
	then
		pkexec /usr/bin/tuxcut
		exit
	else
		cd /usr/share/tuxcut
		python2 /usr/share/tuxcut/tuxcut.py
fi
exit 0
