dotfiles/home/r0r5chach/.config/eww/widgets/player/duration/duration.yuck

8 lines
303 B
Plaintext
Raw Normal View History

2023-07-11 04:43:17 +00:00
(defwidget duration []
(circular-progress
2023-10-06 16:10:14 +00:00
:value {matches(duration_perc, "") ? 0 : duration_perc}
2023-07-11 04:43:17 +00:00
:start-at 75
:thickness 2.5
:clockwise true))
2023-10-06 16:10:14 +00:00
(defpoll duration_perc :run-while playing_flag :initial 0 :interval "1s" "~/.config/eww/widgets/player/duration/duration")