Is there a better way to differentiate between platforms? $(chatid)
returns aws
for Twitch, so it’s easy to split between Twitch and others.
$(eval '$(chatid)' === 'aws' ? 'do the command' : '')
I’m wondering if there’s a better way to restrict specific commands per platform, instead of having to manually put all the evals on each command.