diff options
| author | BardofSprites <[email protected]> | 2024-09-20 06:08:34 -0400 |
|---|---|---|
| committer | BardofSprites <[email protected]> | 2024-09-20 06:08:34 -0400 |
| commit | 04362e58f4c9681dd402a00ecce89eda04988fc2 (patch) | |
| tree | 6b187bab8aa7e1505d783499554d1f7bd0df1724 /bard-emacs-modules | |
| parent | ab4e16a181959cce87aae64fd03f1d0d2eb76d87 (diff) | |
change font presets
Diffstat (limited to 'bard-emacs-modules')
| -rw-r--r-- | bard-emacs-modules/bard-emacs-theme.el | 33 |
1 files changed, 30 insertions, 3 deletions
diff --git a/bard-emacs-modules/bard-emacs-theme.el b/bard-emacs-modules/bard-emacs-theme.el index ce3110b..a828000 100644 --- a/bard-emacs-modules/bard-emacs-theme.el +++ b/bard-emacs-modules/bard-emacs-theme.el @@ -176,14 +176,15 @@ The exact color values are taken from the active Modus theme." :fixed-pitch-height 1.0 :bold-weight bold :mode-line-active-family "Iosevka Comfy Motion" + :mode-line-inactive-family "Iosevka Comfy Motion" :mode-line-active-height 130 :mode-line-inactive-height 130 ) (desktop :inherit laptop - :default-height 150 - :mode-line-active-height 150 - :mode-line-inactive-height 150) + :default-height 160 + :mode-line-active-height 160 + :mode-line-inactive-height 160) (large :inherit laptop :variable-pitch-family "Iosevka Comfy Wide Motion" @@ -212,6 +213,16 @@ The exact color values are taken from the active Modus theme." :fixed-pitch-family "Comic Code" :mode-line-active-family "Comic Code" ) + (berk-desktop + :inherit desktop + :default-height 150 + :mode-line-active-height 150 + :mode-line-inactive-height 150 + :default-family "Berkeley Mono" + :variable-pitch-family "Berkeley Mono" + :fixed-pitch-family "Berkeley Mono" + :mode-line-active-family "Berkeley Mono" + ) (t :default-family "Monospace" ))) @@ -273,6 +284,22 @@ The exact color values are taken from the active Modus theme." (dolist (i custom-enabled-themes) (disable-theme i))) +;; toggle mode-line +;; take from: https://lists.gnu.org/archive/html/help-gnu-emacs/2022-11/msg00695.html +;; (use-package emacs +;; :bind +;; (("<f6>" . bard/toggle-mode-line)) +;; :config +;; (defvar-local old-mode-line nil) + +;; (defun bard/toggle-mode-line () +;; (interactive) +;; (setq-local mode-line-format +;; (if old-mode-line +;; (setq mode-line-format old-mode-line) +;; (setq old-mode-line mode-line-format +;; mode-line-format nil))))) + (provide 'bard-emacs-theme) ;;; bard-emacs-theme.el ends here |
