From 98fc3c472f442de8f757fdfc1151534edc0c917f Mon Sep 17 00:00:00 2001 From: Erik Foris Date: Sat, 13 Mar 2021 21:57:32 +0000 Subject: [PATCH] first prototype --- mumble-bridge | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 mumble-bridge 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