Create launch-zt-join.sh

This commit is contained in:
Michael
2022-09-20 19:05:16 +01:00
committed by GitHub
parent a0a8cdd54b
commit cf2c77e7ca

12
Helpers/launch-zt-join.sh Normal file
View File

@@ -0,0 +1,12 @@
#!/bin/sh
cd /Library/Application\ Support/Purple/
if [ "$SHOWDIALOG" == "Y" ]; then
echo "Dialog will open"
./zt-dialog.sh &
./join-zt-network.sh
exit 0
else
echo "Dialog will not open"
./join-zt-network.sh
exit 0
fi