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