mirror of
https://github.com/CoolnsX/hyprdots.git
synced 2025-12-20 07:15:23 +05:30
wrapping should work properly. Probably.
This commit is contained in:
29
eww/eww.yuck
29
eww/eww.yuck
@@ -71,20 +71,23 @@
|
||||
(defpoll STATUS :interval "0.5s" `./script status`)
|
||||
(defpoll COVER :interval "2s" `./script cover`)
|
||||
(defpoll CURRENT :interval "1s" `./script time`)
|
||||
(defpoll LYRICS :interval "0.4s" `./script lyrics`)
|
||||
|
||||
(defwidget music []
|
||||
(box :class "genwin" :orientation "h" :space-evenly "false" :vexpand "true" :hexpand "false"
|
||||
(box :class "album_art" :vexpand "false" :hexpand "false" :style "background-image: url('${COVER}');")
|
||||
(box :orientation "v" :spacing 20 :space-evenly "false" :vexpand "false" :hexpand "false"
|
||||
(label :halign "center" :class "song" :wrap "false" :limit-width 25 :text SONG)
|
||||
(label :halign "center" :class "artist" :wrap "false" :text ARTIST)
|
||||
(box :orientation "h" :spacing 20 :halign "center" :space-evenly "true" :vexpand "false" :hexpand "false"
|
||||
(button :class "btn_prev" :onclick "./script prev" "玲")
|
||||
(button :class "btn_prev" :onclick "./script seek '-1'" "")
|
||||
(button :class "btn_play" :onclick "./script play_toggle" STATUS)
|
||||
(button :class "btn_next" :onclick "./script seek '1'" "")
|
||||
(button :class "btn_next" :onclick "./script next" "怜"))
|
||||
(box :class "music_bar" :halign "center" :vexpand "false" :hexpand "false" :space-evenly "false"
|
||||
(scale :min 0 :active "true" :max 100 :value CURRENT)))))
|
||||
(box :class "genwin" :orientation "v" :spacing 20 :space-evenly "false" :vexpand "true" :hexpand "true"
|
||||
(box :orientation "h" :space-evenly "false" :vexpand "true" :hexpand "false"
|
||||
(box :class "album_art" :vexpand "false" :hexpand "false" :style "background-image: url('${COVER}');")
|
||||
(box :orientation "v" :spacing 20 :space-evenly "false" :vexpand "false" :hexpand "false"
|
||||
(label :halign "center" :class "song" :wrap "false" :limit-width 25 :text SONG)
|
||||
(label :halign "center" :class "artist" :wrap "false" :text ARTIST)
|
||||
(box :orientation "h" :spacing 20 :halign "center" :space-evenly "true" :vexpand "false" :hexpand "false"
|
||||
(button :class "btn_prev" :onclick "./script prev" "玲")
|
||||
(button :class "btn_prev" :onclick "./script seek '-1'" "")
|
||||
(button :class "btn_play" :onclick "./script play_toggle" STATUS)
|
||||
(button :class "btn_next" :onclick "./script seek '1'" "")
|
||||
(button :class "btn_next" :onclick "./script next" "怜"))
|
||||
(box :class "music_bar" :halign "center" :vexpand "false" :hexpand "false" :space-evenly "false"
|
||||
(scale :min 0 :active "true" :max 100 :value CURRENT))))
|
||||
(label :halign "center" :class "artist" :text LYRICS)))
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user