summarylogtreecommitdiffstats
path: root/ucloner.sh
blob: 685d3e6e0ef7dd9051b6bf965401bb221dffc240 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
export LANGUAGE=`echo $LANG | grep -oP [A-Za-z_]+ | head -1`

if [ "$( ps -A | grep ucloner_gui)" ] ; then
    zenity --title="Error" --error --text="Another uclone instance is running!"
    exit 1
fi

cd /opt/ucloner/
exec python2 ./ucloner_gui.py &> /dev/null