The list is maintained by maxi#0666. If anything is broken or missing, please DM me on Discord. Thank you!
This file contains hidden or 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
| # 1. Make sure the Microsoft App Installer is installed: | |
| # https://www.microsoft.com/en-us/p/app-installer/9nblggh4nns1 | |
| # 2. Edit the list of apps to install. | |
| # 3. Run this script as administrator. | |
| Write-Output "Installing Apps" | |
| $apps = @( | |
| @{name = "7zip.7zip" }, | |
| @{name = "AgileBits.1Password" }, | |
| @{name = "Axosoft.GitKraken" }, |
This file contains hidden or 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
| # Use the command 'TerrariaServer -config serverconfig.txt' to use this configuration. | |
| # Please report crashes by emailing crashlog.txt to <support@terraria.org>. | |
| # Load a world and automatically start the server. | |
| world=~/.local/share/Terraria/Worlds/world1.wld | |
| # Creates a new world if none is found. World size is specified by: 1(small), 2(medium), and 3(large). | |
| #autocreate=1 | |
| # Sets the world seed when using autocreate. |
This file contains hidden or 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
| //~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~--~~-- | |
| // | |
| //.----------------. .----------------. .----------------. .----------------. .----------------. .----------------. .----------------. | |
| //| .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. | | |
| //| | ________ | || | _________ | || | ____ ____ | || | _________ | || | ____ ____ | || | _ | || | _______ | | | |
| //| | |_ ___ `. | || | |_ ___ | | || ||_ _| |_ _| | || | |_ ___ | | || | |_ _||_ _| | || | | | | || | / ___ | | | | |
| //| | | | `. \ | || | | |_ \_| | || | \ \ / / | || | | |_ \_| | || | \ \ / / | || | \_| | || | | (__ \_| | | | |
| //| | | | | | | || | | _| _ | || | \ \ / / | || | | _| _ | || | > `' < | || | | || | '.___`-. | | | |
| //| | _| |___.' |
This file contains hidden or 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/sh | |
| # ngrok's web interface is HTML, but configuration is bootstrapped as a JSON | |
| # string. We can hack out the forwarded hostname by extracting the next | |
| # `*.ngrok.io` string from the JSON | |
| # | |
| # Brittle as all get out--YMMV. If you're still reading, usage is: | |
| # | |
| # $ ./ngrok_hostname.sh <proto> <addr> | |
| # |