Got it! Was very easy to do, once I figured out the where and the what of it (like most things in life). Unfortunately, finding the information from Tribe on just how to do something as simple as adding the City and State to the calendar widget I found to be anything but. So with that in mind, here goes:
1. Make a new folder in your WordPress theme called tribe-events
2. Make a sub folder within that called widgets
3. Make a file called list-widget.php
4. Copy & paste the list-widget.php data from the plugin file of the same name.
5. Add the following code over the existing duration div
<div class="duration">
<?php echo tribe_get_city(); ?>, <?php echo tribe_get_state(); ?>
<br>
<?php echo tribe_events_event_schedule_details(); ?>
</div>
For more info (and because there’s no forum search here…), I’ve posted this and some other plugin hacks to my blog as well
https://fluteplayer.net/the-events-calendar-plugin-adding-city-state-to-the-widget/