;; Modeline configuration
(load "~/.stumpwm.d/colors.lisp")
(load-module "battery-portable")
(stumpwm:load-module "mem")
(stumpwm:load-module "cpu")

(setf *mode-line-timeout* 2)
(setf *group-format* "%t")
(setf *window-format* "%n: %30t")

;; set modeline colors and highlight
(setf *mode-line-background-color* thanos-black-bg ;"#252B48"
      *mode-line-foreground-color* thanos-hope-fg
      *mode-line-border-color* thanos-black-bg
      *mode-line-highlight-template* "«~A»"
      mem::*mem-modeline-fmt* "%p"
      cpu:*cpu-modeline-fmt* "%c")

(setf *mode-line-border-color* thanos-black-bg
      *mode-line-border-width* 2)

(setf *time-modeline-string* "%a %d/%m/%Y | %H:%M")

(setf stumpwm:*screen-mode-line-format*
      (list "%g ^> %C| RAM: %M | VOL:"
	    '(:eval (string-trim '(#\Newline)
		     (stumpwm:run-shell-command "pamixer --get-volume" t)))
	    "% | "
	    ;; Check when hermes(laptop) t display battery
	    (when (equal (asdf:hostname) "hermes")
	      "BAT:%B |")
	    "%d"))


(when stumpwm:*initializing*
  (mode-line))