blob: 240a12237806cd5a494723f6134fbff81438bb49 (
plain) (
tree)
|
|
#!/bin/bash
# Open the Big Blue Button room using the backstage link
# {{ ansible_managed }}
# Kill the background music if playing
if screen -list | grep -q background; then
screen -S background -X quit
fi
# Update the overlay
SLUG=$1
overlay $SLUG
firefox https://media.emacsconf.org/{{ emacsconf_year }}/backstage/current/room/$SLUG
|