aboutsummaryrefslogtreecommitdiff
path: root/bard-emacs-modules
diff options
context:
space:
mode:
Diffstat (limited to 'bard-emacs-modules')
-rw-r--r--bard-emacs-modules/bard-emacs-theme.el33
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