diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 9fb8e8171..8ba5d49a6 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -131,7 +131,6 @@ modules/tools/make/ @doomemacs/tools-make modules/tools/pass/ @doomemacs/tools-pass modules/tools/pdf/ @doomemacs/tools-pdf modules/tools/prodigy/ @doomemacs/tools-prodigy -modules/tools/rgb/ @doomemacs/tools-rgb modules/tools/taskrunner/ @doomemacs/tools-taskrunner modules/tools/terraform/ @doomemacs/tools-terraform modules/tools/tmux/ @doomemacs/tools-tmux diff --git a/modules/tools/rgb/README.org b/modules/tools/rgb/README.org deleted file mode 100644 index 5e35fb60b..000000000 --- a/modules/tools/rgb/README.org +++ /dev/null @@ -1,61 +0,0 @@ -#+title: :tools rgb -#+subtitle: Creating color strings -#+created: May 06, 2020 -#+since: 21.12.0 - -#+begin_quote -  *This module is deprecated.* The module is too trivial to warrant a module. -#+end_quote - -* Description :unfold: -Highlights color hex values and names with the color itself, and provides tools -to easily modify color values or formats. - -** Maintainers -/This module has no dedicated maintainers./ [[doom-contrib-maintainer:][Become a maintainer?]] - -** Module flags -/This module has no flags./ - -** Packages -- [[doom-package:kurecolor]] -- [[doom-package:rainbow-mode]] - -** Hacks -/No hacks documented for this module./ - -* Installation -[[id:01cffea4-3329-45e2-a892-95a384ab2338][Enable this module in your ~doom!~ block.]] - -/This module has no external requirements./ - -* Usage -=rainbow-mode= provides automatic highlighting to hex color codes, and in -relevant modes, color names (e.g. html color names in =css-mode= or LaTeX color -names in =latex-mode=) - -=kurecolor= provides commands to easily change the brightness, saturation, and -hue of hex colors (and a useful hydra for this, if =:ui hydra= is enabled), as -well as conversion between hex and css colors - -* Configuration -=hl-line-mode= overrides the color highlighting of =rainbow-mode=, limiting the -use of that plugin and on-site color changes using =kurecolor=. To automatically -disable it only when =rainbow-mode= is active, you can add the following hook: - -#+begin_src emacs-lisp -;; in $DOOMDIR/config.el -(add-hook! 'rainbow-mode-hook - (hl-line-mode (if rainbow-mode -1 +1))) -#+end_src - -* Troubleshooting -/There are no known problems with this module./ [[doom-report:][Report one?]] - -* Frequently asked questions -/This module has no FAQs yet./ [[doom-suggest-faq:][Ask one?]] - -* TODO Appendix -#+begin_quote - 󱌣 This module has no appendix yet. [[doom-contrib-module:][Write one?]] -#+end_quote diff --git a/modules/tools/rgb/autoload.el b/modules/tools/rgb/autoload.el deleted file mode 100644 index cc392df02..000000000 --- a/modules/tools/rgb/autoload.el +++ /dev/null @@ -1,14 +0,0 @@ -;;; tools/rgb/autoload.el -*- lexical-binding: t; -*- -;;;###if (modulep! :ui hydra) - -;;;###autoload (autoload '+rgb/kurecolor-hydra/body "tools/rgb/autoload" nil t) -(defhydra +rgb/kurecolor-hydra (:color pink :hint nil) - " -Inc/Dec _w_/_W_ brightness _d_/_D_ saturation _e_/_E_ hue " - ("w" kurecolor-decrease-brightness-by-step) - ("W" kurecolor-increase-brightness-by-step) - ("d" kurecolor-decrease-saturation-by-step) - ("D" kurecolor-increase-saturation-by-step) - ("e" kurecolor-decrease-hue-by-step) - ("E" kurecolor-increase-hue-by-step) - ("q" nil "cancel" :color blue)) diff --git a/modules/tools/rgb/packages.el b/modules/tools/rgb/packages.el deleted file mode 100644 index c6cb355cb..000000000 --- a/modules/tools/rgb/packages.el +++ /dev/null @@ -1,5 +0,0 @@ -;; -*- no-byte-compile: t; -*- -;;; tools/rgb/packages.el - -(package! rainbow-mode :pin "0740f31f300982534183a2f60b1918de418a6f2c") -(package! kurecolor :pin "fbf98e1e384dd11bbb5764ae54b36353f0691d1e") diff --git a/templates/init.example.el b/templates/init.example.el index cef45ecb3..36b8e93a7 100644 --- a/templates/init.example.el +++ b/templates/init.example.el @@ -102,7 +102,6 @@ ;;pass ; password manager for nerds ;;pdf ; pdf enhancements ;;prodigy ; FIXME managing external services & code builders - ;;rgb ; creating color strings ;;taskrunner ; taskrunner for all your projects ;;terraform ; infrastructure as code ;;tmux ; an API for interacting with tmux