23 lines
626 B
Plaintext
23 lines
626 B
Plaintext
|
#!/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
|