diff options
author | 2024-09-19 12:14:57 -0400 | |
---|---|---|
committer | 2024-09-19 12:14:57 -0400 | |
commit | a31fef36ff03a057a743fdc1c2d234270137caa0 (patch) | |
tree | fd33981b01aff72f24fc3d78d7f20826c902bb0a /.emacs.d | |
parent | 66f39fc4503139c226217e37aa9eb309c01ddcb2 (diff) | |
download | configs-a31fef36ff03a057a743fdc1c2d234270137caa0.tar.gz configs-a31fef36ff03a057a743fdc1c2d234270137caa0.tar.xz configs-a31fef36ff03a057a743fdc1c2d234270137caa0.zip |
Get b-bar battery from GNU Emacs if available
Diffstat (limited to '.emacs.d')
-rw-r--r-- | .emacs.d/init.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 0c35928..97f515e 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -215,9 +215,10 @@ plain variables. This means that `setopt' will execute any (unless (display-graphic-p) (display-time-mode))) +(defvar b/battery-format "%p%b %t") (run-with-idle-timer 0.1 nil #'require 'battery) (with-eval-after-load 'battery - (setopt battery-mode-line-format " [%b%p%% %t]") + (setopt battery-mode-line-format (format " [%s]" b/battery-format)) (display-battery-mode)) (run-with-idle-timer 0.5 nil #'require 'winner) |