From ae4c4426cfa15cb67081876a2f439e7b7d95e2f1 Mon Sep 17 00:00:00 2001 From: KemoNine Date: Sat, 8 Apr 2023 13:33:01 -0400 Subject: [PATCH] auto start the empty code workspace on code profile launch --- code/init.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/init.el b/code/init.el index 687b028..c89c5a4 100644 --- a/code/init.el +++ b/code/init.el @@ -173,3 +173,9 @@ '(default ((t (:family "MonoLisa Variable" :height 100)))) '(fixed-pitch ((t (:family "MonoLisa Variable" :height 120)))) '(variable-pitch ((t (:family "Atkinson Hyperlegible" :height 120))))) + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +; set ui to standard org-workspace at launch +(add-hook 'after-init-hook (lambda () + (kmn/workspace-code-empty) +))