diff --git a/mumble-bridge b/mumble-bridge new file mode 100644 index 0000000..dccedf8 --- /dev/null +++ b/mumble-bridge @@ -0,0 +1,23 @@ +#!/bin/bash + +# x===============================x +# | mumble-bridge by xTechnoErikx | +# x===============================x + +if [ "$1" = "-h" ] +then + echo "mumble-bridge [option]" + echo + echo "Options:" + echo "-h Show help" + echo "-S Connect to StarkIndustries`s Discord server" + echo + exit 0 +fi + +case "$1" in + + -S) screen -dmS StarkIndustries-mumble mumble-discord-bridge -discord-cid 812428611168632873 -discord-gid 442039910107578369 -discord-token ODIwMDQ3MjkyMzQ5OTM5NzIy.YEvejg.mMYfrj9sRTQDlKEEpz5cq_S09VY -mumble-address sfs.ddnss.org -mumble-insecure + +esac +exit 0 \ No newline at end of file