#!/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 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-channel 'Lobby/beepboop' -mumble-insecure esac exit 0