mumble-discord-bridge-start.../mumble-bridge

23 lines
624 B
Plaintext
Raw Normal View History

2021-03-13 22:57:32 +01:00
#!/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"
2021-03-13 23:03:55 +01:00
echo "-S connect to StarkIndustries discord server"
2021-03-13 22:57:32 +01:00
echo
exit 0
fi
case "$1" in
2021-03-13 23:56:37 +01:00
-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
2021-03-13 22:57:32 +01:00
esac
exit 0