9 lines
300 B
Text
9 lines
300 B
Text
;; (deflisten music :initial ""
|
|
;; "playerctl --follow metadata --format '{{ title }}' || true")
|
|
|
|
(defwidget music []
|
|
(box :class {nowplaying != "" ? "music" : "hidden"}
|
|
:orientation "h"
|
|
:space-evenly false
|
|
:halign "center"
|
|
{nowplaying != "" ? "🎵${nowplaying}" : ""}))
|