diff options
| author | Sacha Chua <sacha@sachachua.com> | 2023-11-05 08:47:43 -0500 | 
|---|---|---|
| committer | Sacha Chua <sacha@sachachua.com> | 2023-11-05 08:47:43 -0500 | 
| commit | 152011371ee37e38bd67227c2d7c9fca704b9be1 (patch) | |
| tree | c29c2f2691cfdfa6c7ec370106ed4420239da3c3 /emacsconf.el | |
| parent | c4614e263db67fdba8a19eb5f2fea402f260f14a (diff) | |
| download | emacsconf-el-152011371ee37e38bd67227c2d7c9fca704b9be1.tar.xz emacsconf-el-152011371ee37e38bd67227c2d7c9fca704b9be1.zip | |
add duration to backstage, get end time properly
organize bbb redirect logically, too
Diffstat (limited to '')
| -rw-r--r-- | emacsconf.el | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/emacsconf.el b/emacsconf.el index 86e7251..9432aee 100644 --- a/emacsconf.el +++ b/emacsconf.el @@ -83,6 +83,15 @@  					(const :tag "Conference: Show IRC and watching info" conference)            (const :tag "Resources: Don't include status" resources))) +(defcustom emacsconf-backstage-phase 'prerec +	"Contros what information to include backstage. +'prerec - focus on captioning +'harvest - focus on Q&A." +	:group 'emacsconf +	:type '(choice +					(const tag "Prerec" 'prerec) +					(const tag "Q&A harvesting" 'harvest))) +  (defcustom emacsconf-org-file nil    "Path to the Org file with emacsconference information."    :type 'file | 
