forked from Shinonome/dots-hyprland
26 lines
439 B
Plaintext
26 lines
439 B
Plaintext
(deflisten awin
|
|
; :run-while win_ws_open
|
|
`scripts/activewin`
|
|
)
|
|
|
|
(defwidget activewindow []
|
|
(eventbox
|
|
(box
|
|
:space-evenly false
|
|
:class "activewin"
|
|
(label
|
|
:limit-width 50
|
|
:text "➜ "
|
|
)
|
|
(revealer
|
|
:transition "slideright"
|
|
:reveal "${!music_reveal}"
|
|
:duration "300ms"
|
|
(label
|
|
:limit-width 50
|
|
:text "${awin}"
|
|
)
|
|
)
|
|
)
|
|
)
|
|
) |