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]
(def output (find |(= (get-in $ [:wl-output :name]) output) (wm :outputs)))
(string
":" (output :tag-main)
(case (output :tag-offload)
:comma "<"
:period ">"
"")
":"
(if (= (output :tag-offload) :comma) "<" "")
(output :tag-main)
(if (= (output :tag-offload) :period) ">" "")
" "
(string/join (map |(string ":" $) (filter keyword? (output :tags-other))))))