diff options
Diffstat (limited to '2022/organizers-notebook')
| -rw-r--r-- | 2022/organizers-notebook/index.org | 32 | 
1 files changed, 21 insertions, 11 deletions
diff --git a/2022/organizers-notebook/index.org b/2022/organizers-notebook/index.org index caccb0f5..5b6e7935 100644 --- a/2022/organizers-notebook/index.org +++ b/2022/organizers-notebook/index.org @@ -1077,20 +1077,29 @@ CLOSED: [2022-11-03 Thu 14:10]  *** TODO Set timers for changing todo state  #+begin_src emacs-lisp -(defun emacsconf-schedule-test-buffer (info) -  (mapcar (lambda (o) (plist-put o :buffer "1") o) info)) -(let ((emacsconf-schedule-strategies '(emacsconf-schedule-test-buffer))) -(emacsconf-stream-schedule-timers (emacsconf-schedule-prepare - (emacsconf-schedule-inflate-sexp -  `(("Test" :start ,(format-time-string "%Y-%m-%d %H:%M" -                                        (time-add (current-time) (seconds-to-time 60)))) -	  (journalism :time "1") -	  (school :time "1") -	  (handwritten :time "1")))))) +  (defun emacsconf-schedule-test-buffer (info) +    (mapcar (lambda (o) (plist-put o :buffer "1") o) info)) +  (let ((emacsconf-schedule-strategies '(emacsconf-schedule-test-buffer))) +  (emacsconf-stream-schedule-timers (emacsconf-schedule-prepare +   (emacsconf-schedule-inflate-sexp +    `(("Test gen" :start ,(format-time-string "%Y-%m-%d %H:%M" +					  (time-add (current-time) (seconds-to-time 60)))) +      (journalism :time "1") +      (school :time "2") +      (handwritten :time "1") +      ("Test dev" :start ,(format-time-string "%Y-%m-%d %H:%M" +					  (time-add (current-time) (seconds-to-time 60)))) +      (treesitter :time "2") +      (lspbridge :time "1") +      (asmblox :time "1"))))))      #+end_src +the dev one worked, but the gen one gets +Couldn’t find local shell prompt for /bin/sh +Tramp: Opening connection *Async Shell Command* for emacsconf-gen@res.emacsconf.org using ssh...failed - +Maybe I need to stagger them, or maybe I need to use a shell command. +Changed to call ssh directly instead of using tramp.  *** TODO Figure out how to work with the layout  https://i3wm.org/docs/layout-saving.html @@ -4701,3 +4710,4 @@ see emacsconf-import-comments-from-etherpad-text   the [[https://emacsconf.org/COPYING.CC-BY-SA][COPYING.CC-BY-SA]] and [[https://emacsconf.org/COPYING.GPL][COPYING.GPL]] files.  * COMMENT Local variables +  | 
