Some nyxt changes, rbw and pass changes.

This commit is contained in:
Chris Cochrun 2021-07-05 13:16:34 -05:00
parent 71151f755f
commit c813c61938
10 changed files with 174 additions and 31 deletions

11
nyxt/slynk.lisp Normal file
View file

@ -0,0 +1,11 @@
(define-command start-slynk (&optional (slynk-port *swank-port*))
"Start a Slynk server that can be connected to, for instance, in
Emacs via SLY.
Warning: This allows Nyxt to be controlled remotely, that is, to execute
arbitrary code with the privileges of the user running Nyxt. Make sure
you understand the security risks associated with this before running
this command."
(slynk:create-server :port slynk-port :dont-close t)
(echo "Slynk server started at port ~a" slynk-port))