This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
choice=$(zenity --info --icon-name=grapejuice-roblox-player --title="Launching Roblox" --text="Use SteamVR or Grapejuice?" --switch --extra-button SteamVR --extra-button Grapejuice --ok-label "Cancel") | |
if [ $choice = "SteamVR" ]; then | |
zenity --info --icon-name=grapejuice-roblox-player --title="Roblox Launch Parameters" --text=$1 | |
elif [ $choice = "Grapejuice" ]; then | |
grapejuice player $1 | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd /usr/share/webapps/pterodactyl/ | |
echo "Changed directory to $(pwd)" | |
php artisan down | |
echo "Shut down artisan." | |
echo "Sleeping for 3 seconds..." | |
sleep 3 |