CLOG UI for command-line scripts #381
-
I am playing with the idea of making small personal tools as Common Lisp scripts (called from a terminal) that use CLOG for displaying a GUI. Such a script would
What I don't know how to do is the last step. There doesn't seem to be an event associated with closing of a browser window/tab. There something called when a WebSocket connection is closed, but it's labelled "private" (and apparently not extensible). What I could do (but don't like) is checking Is there a better way? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
You use (run body) it is what it is designed for :) It blocks until the connection to the browser done. |
Beta Was this translation helpful? Give feedback.
You use (run body) it is what it is designed for :)
It blocks until the connection to the browser done.