From 297f574b4d041f268c95a6ffa1aae7c16071f866 Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Wed, 2 Sep 2020 16:26:47 +0200 Subject: [PATCH] Nyxt: Start slynk by default. --- .config/nyxt/slynk.lisp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.config/nyxt/slynk.lisp b/.config/nyxt/slynk.lisp index bef80199..b0305327 100644 --- a/.config/nyxt/slynk.lisp +++ b/.config/nyxt/slynk.lisp @@ -8,3 +8,7 @@ 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)) + +;; Start slynk by default. +(unless nyxt::*keep-alive* + (slynk:create-server :port 4006 :dont-close t))