From da6c9c62d4137a8c78b192d38ec0fba526bf32db Mon Sep 17 00:00:00 2001 From: KemoNine Date: Tue, 2 May 2023 10:05:15 -0400 Subject: [PATCH] add destiny (game) workspace --- common/workspaces.el | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/common/workspaces.el b/common/workspaces.el index 8d5a2c6..86acd51 100644 --- a/common/workspaces.el +++ b/common/workspaces.el @@ -201,3 +201,16 @@ (goto-char 0) ) ) + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +; destiny game workspace +(defun kmn/workspace-game-destiny () + (interactive) + (let ((frame (make-frame))) + (select-frame-set-input-focus frame) + (delete-other-windows) + (find-file "~/org/games/_games.org") + (find-file "~/org/games/games_destiny.org") + (goto-char 0) + ) +)