2023-07-11 04:43:17 +00:00
|
|
|
(include "widgets/player/shuffle/shuffle.yuck")
|
|
|
|
|
(include "widgets/player/previous/previous.yuck")
|
|
|
|
|
(include "widgets/player/play-pause/play-pause.yuck")
|
|
|
|
|
(include "widgets/player/next/next.yuck")
|
|
|
|
|
(include "widgets/player/loop/loop.yuck")
|
|
|
|
|
(include "widgets/player/duration/duration.yuck")
|
|
|
|
|
|
|
|
|
|
(defwidget player []
|
|
|
|
|
(box :space-evenly false
|
2023-10-06 16:10:14 +00:00
|
|
|
(box :class "now_playing"
|
|
|
|
|
(now_playing))
|
2023-07-11 04:43:17 +00:00
|
|
|
(box :class "controls"
|
|
|
|
|
(duration)
|
|
|
|
|
(previous_button)
|
|
|
|
|
(play_pause_button)
|
|
|
|
|
(next_button)
|
|
|
|
|
(shuffle_button)
|
2023-10-06 16:10:14 +00:00
|
|
|
(loop_button))))
|