diff options
| author | Craig Jennings <c@cjennings.net> | 2025-08-15 10:24:52 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-08-15 10:24:52 -0500 |
| commit | ecb3db068de801d4026c703a4df6b8c90bfef44b (patch) | |
| tree | 0213718f0a977f2fb0f56e90227ee6631805f227 /modules/games-config.el | |
| parent | cbd122cb8dab31b9efe1a7863ee0230303e7fd02 (diff) | |
| download | dotemacs-ecb3db068de801d4026c703a4df6b8c90bfef44b.tar.gz dotemacs-ecb3db068de801d4026c703a4df6b8c90bfef44b.zip | |
remove unused hydras; remove unused games
Diffstat (limited to 'modules/games-config.el')
| -rw-r--r-- | modules/games-config.el | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/modules/games-config.el b/modules/games-config.el index f7a3b652..7b25fb0c 100644 --- a/modules/games-config.el +++ b/modules/games-config.el @@ -9,15 +9,15 @@ ;; --------------------------------- Games Menu -------------------------------- -(defhydra hydra-games (:color blue :hint nil) - "\n" - ("2" 2048-game "2048 : Combine the Numbered Tiles to get to 2048" :column "Game") - ("c" chess "Chess : Play the 64 Squares and Checkmate the King" :column "Game") - ("d" dunnet "Dunnet : Emacs' Built-n Text Adventure" :column "Game") - ("g" gomoku "Gomoku : Tic Tac Toe, but Five in a Row" :column "Game") - ("m" malyon "Malyon : The Text Adventure Player" :column "Game") - ("t" tetris "Tetris : Combine falling blocks and score" :column "Game")) -(global-set-key (kbd "M-G") 'hydra-games/body) +;; (defhydra hydra-games (:color blue :hint nil) +;; "\n" +;; ("2" 2048-game "2048 : Combine the Numbered Tiles to get to 2048" :column "Game") +;; ("c" chess "Chess : Play the 64 Squares and Checkmate the King" :column "Game") +;; ("d" dunnet "Dunnet : Emacs' Built-n Text Adventure" :column "Game") +;; ("g" gomoku "Gomoku : Tic Tac Toe, but Five in a Row" :column "Game") +;; ("m" malyon "Malyon : The Text Adventure Player" :column "Game") +;; ("t" tetris "Tetris : Combine falling blocks and score" :column "Game")) +;; (global-set-key (kbd "M-G") 'hydra-games/body) ;; ----------------------------------- Malyon ---------------------------------- ;; text based adventure player @@ -34,17 +34,17 @@ ;; ----------------------------------- Chess ----------------------------------- ;; play the 64 squares and checkmate the opponent's king -(use-package chess - :defer 1 - :config - (setq chess-default-display 'chess-images) - (setq chess-images-directory - (concat user-emacs-directory "assets/chess/pieces/xboard/")) - (setq chess-images-dark-color "#779556") - (setq chess-images-light-color "#EBECD0") - (setq chess-images-default-size 100) - (setq chess-full-name user-whole-name) - (setq chess-default-engine 'chess-fruit)) +;; (use-package chess +;; :defer 1 +;; :config +;; (setq chess-default-display 'chess-images) +;; (setq chess-images-directory +;; (concat user-emacs-directory "assets/chess/pieces/xboard/")) +;; (setq chess-images-dark-color "#779556") +;; (setq chess-images-light-color "#EBECD0") +;; (setq chess-images-default-size 100) +;; (setq chess-full-name user-whole-name) +;; (setq chess-default-engine 'chess-fruit)) ;; Notes from source code |
