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) + ) +)