diff options
author | jao <jao@gnu.org> | 2022-08-09 00:38:55 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2022-08-09 00:38:55 +0100 |
commit | 0c0e302be5b72a90bb9fcbd42f012f68dd09459c (patch) | |
tree | c29ee1a2380226ab0f978c291c2da48838408736 | |
parent | 1e7f785708872d0eae3ff98d235c40b8c4be0380 (diff) | |
download | elibs-0c0e302be5b72a90bb9fcbd42f012f68dd09459c.tar.gz elibs-0c0e302be5b72a90bb9fcbd42f012f68dd09459c.tar.bz2 |
xmobar.el configuration
-rw-r--r-- | init.el | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -435,6 +435,7 @@ (setq jao-frames-default-alpha 88) (jao-set-transparency) (x-change-window-property "_XMONAD_TRAYPAD" "" nil nil nil nil 0) + (xmobar-mode 1) (jao-trisect t)) ;;;; xmonad @@ -571,6 +572,14 @@ (jao-xmobar-kill) (start-process "" nil "xmobar-exwm" "-d")) +(use-package tab-bar + :init (setq tab-bar-close-button-show nil + tab-bar-show t + tab-bar-format ())) + +(use-package xmobar + :init (setq xmobar-tab-bar t + xmobar-command '("xmobar-emacs" "-TAnsi"))) ;;; Minibuffer (use-package jao-minibuffer @@ -3164,7 +3173,8 @@ ["Window system" :if jao-window-system-p ("w" "set wallpaper" jao-set-wallpaper) ("W" "set radom wallpaper" jao-set-random-wallpaper) - ("x" "restart xmobar" jao-xmobar-restart :if jao-exwm-enabled-p) + ("X" "restart xmobar" xmobar-restart :if jao-exwm-enabled-p) + ("x" "toggle xmobar" xmobar-mode :if jao-exwm-enabled-p) ("x" "kill xmobar" jao-xmobar-kill :if jao-xmonad-enabled-p)] ["Helpers" ("r" "reveal" jao-reveal) |