diff options
author | Amin Bandali <bandali@gnu.org> | 2023-01-03 13:49:36 -0500 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2023-01-03 13:49:36 -0500 |
commit | 4a76be499f05465a1b65c884778bd81314f5f22f (patch) | |
tree | 36a112d73f352415480914bf61ab6cdca9783a5e | |
parent | 53edeec7b6f8ba41c6040f0d849f8b4114f4628c (diff) | |
download | configs-4a76be499f05465a1b65c884778bd81314f5f22f.tar.gz configs-4a76be499f05465a1b65c884778bd81314f5f22f.tar.xz configs-4a76be499f05465a1b65c884778bd81314f5f22f.zip |
* .emacs.d/init.el: Update mode-line time and battery format.
-rw-r--r-- | .emacs.d/init.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 7b81064..d9ec432 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -193,7 +193,7 @@ (with-eval-after-load 'time (setq display-time-default-load-average nil - display-time-format " %a %b %-e %-l:%M%P" + display-time-format " %a %Y-%m-%d %-l:%M%P" display-time-mail-icon '(image :type xpm :file "gnus/gnus-pointer.xpm" :ascent center) @@ -207,7 +207,7 @@ (run-with-idle-timer 0.1 nil #'require 'battery) (with-eval-after-load 'battery - (setq battery-mode-line-format " %p%% %t") + (setq battery-mode-line-format " [%p%% %t]") (display-battery-mode)) ;; (with-eval-after-load 'fringe |