diff options
author | bd <bdunahu@gmail.com> | 2024-01-05 21:55:29 -0700 |
---|---|---|
committer | bd <bdunahu@gmail.com> | 2024-01-05 21:55:29 -0700 |
commit | 1e4a002f480925683ce0aedf39adf42cfc60381a (patch) | |
tree | ada7208a9d105788caddd51230fe617306eed2eb /.config/emacs/bd-mode-and-themes.el | |
parent | 553a287b4ff7d8129870075acfb8422882dc3395 (diff) |
Replaced previous dmenu prompt with an Emacs equivalent.
Diffstat (limited to '.config/emacs/bd-mode-and-themes.el')
-rw-r--r-- | .config/emacs/bd-mode-and-themes.el | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/.config/emacs/bd-mode-and-themes.el b/.config/emacs/bd-mode-and-themes.el index ebe5306..528e920 100644 --- a/.config/emacs/bd-mode-and-themes.el +++ b/.config/emacs/bd-mode-and-themes.el @@ -31,8 +31,8 @@ "Formats the checked out git repository.") (defvar-local bd/emms-mode-line '(:eval (when (and (mode-line-window-selected-p) emms-mode-line-string) - (format "%s %s" emms-mode-line-string - emms-playing-time-string))) + (format "%s %s" emms-mode-line-string + emms-playing-time-string))) "Formats the currently playing emms track.") :config (setq emms-mode-line-icon-before-format (format "%s" (all-the-icons-fileicon "owl")) @@ -45,8 +45,8 @@ (format "%s" (length (ednc-notifications)))) (defvar-local bd/notify-mode-line '(:eval (when (and (ednc-notifications) (mode-line-window-selected-p)) - (format " %s %s" (all-the-icons-material "notifications_active") - (propertize (get-num-notifications) 'face 'error)))) + (format " %s %s" (all-the-icons-material "notifications_active") + (propertize (get-num-notifications) 'face 'error)))) "Formats the notification number.") (ednc-mode)) @@ -86,11 +86,11 @@ " " ;; mode-line-position mode-line-modified - bd/notify-mode-line + bd/notify-mode-line bd/vc-mode-line " " - bd/emms-mode-line - (mode-line-fill 21) + bd/emms-mode-line + (mode-line-fill 21) bd/time-mode-line)) ;;;; remove mode-line-clutter @@ -118,7 +118,7 @@ ;;;; true transparency ;; (add-to-list 'default-frame-alist '(alpha-background . 60)) -(add-to-list 'default-frame-alist '(alpha . (85 . 85))) +(add-to-list 'default-frame-alist '(alpha . (80 . 80))) (defun set-frame-alpha (value) "Sets the transparency of the frame background. 0=transparent/100=opaque" @@ -145,16 +145,16 @@ (add-hook 'modus-themes-after-load-theme-hook #'modus-themes-custom-faces) (setopt modus-themes-italic-constructs t - modus-themes-bold-constructs t - modus-themes-hl-line '(accented) - modus-themes-subtle-line-numbers t - modus-themes-paren-match '(intense) - modus-themes-region '(bg-only) - modus-themes-syntax '(faint) - modus-themes-mode-line '(borderless) - modus-themes-org-blocks 'gray-background - modus-themes-headings '( - (1 . (rainbow overline)))) + modus-themes-bold-constructs t + modus-themes-hl-line '(accented) + modus-themes-subtle-line-numbers t + modus-themes-paren-match '(intense) + modus-themes-region '(bg-only) + modus-themes-syntax '(faint) + modus-themes-mode-line '(borderless) + modus-themes-org-blocks 'gray-background + modus-themes-headings '( + (1 . (rainbow overline)))) (load-theme 'modus-vivendi t) |