Change formatting for status display: <t

This commit is contained in:
bluepython508
2026-02-16 22:05:40 +00:00
parent db554d2d52
commit 7c6abcaddb

View File

@@ -442,11 +442,10 @@
(defn status-display [output] (defn status-display [output]
(def output (find |(= (get-in $ [:wl-output :name]) output) (wm :outputs))) (def output (find |(= (get-in $ [:wl-output :name]) output) (wm :outputs)))
(string (string
":" (output :tag-main) ":"
(case (output :tag-offload) (if (= (output :tag-offload) :comma) "<" "")
:comma "<" (output :tag-main)
:period ">" (if (= (output :tag-offload) :period) ">" "")
"")
" " " "
(string/join (map |(string ":" $) (filter keyword? (output :tags-other)))))) (string/join (map |(string ":" $) (filter keyword? (output :tags-other))))))