New backup 2025-07-18 16:45:01
This commit is contained in:
parent
aaad37e487
commit
15c020c99d
2 changed files with 38 additions and 26 deletions
|
@ -302,6 +302,11 @@ $home-widget-border-hover-color: rgba($color5,0.3);
|
||||||
border: 3px solid $home-widget-border-color;
|
border: 3px solid $home-widget-border-color;
|
||||||
border-radius: $home-widget-border-radius;
|
border-radius: $home-widget-border-radius;
|
||||||
background-color: $home-widget-bg-color;
|
background-color: $home-widget-bg-color;
|
||||||
|
.nowplayingart {
|
||||||
|
margin: 10px;
|
||||||
|
border: 1px solid $home-widget-border-color;
|
||||||
|
border-radius: $home-widget-border-radius;
|
||||||
|
}
|
||||||
.mediabutton {
|
.mediabutton {
|
||||||
background-color: $home-button-bg-color;
|
background-color: $home-button-bg-color;
|
||||||
border-radius: $home-button-circle-border-radius
|
border-radius: $home-button-circle-border-radius
|
||||||
|
|
|
@ -2,38 +2,45 @@
|
||||||
'scripts/home/nowplayingart.sh')
|
'scripts/home/nowplayingart.sh')
|
||||||
|
|
||||||
(defwidget nowplayingbar []
|
(defwidget nowplayingbar []
|
||||||
(box
|
(centerbox
|
||||||
:class "nowplayingbar"
|
:class "nowplayingbar"
|
||||||
:orientation "h"
|
:orientation "h"
|
||||||
:width 250
|
:width 250
|
||||||
:height 100
|
:height 100
|
||||||
:space-evenly false
|
|
||||||
:valign "fill"
|
|
||||||
(button
|
(button
|
||||||
:height 50
|
:height 90
|
||||||
:width 50
|
:width 90
|
||||||
|
:valign "center"
|
||||||
|
:halign "center"
|
||||||
|
:hexpand false
|
||||||
|
:vexpand false
|
||||||
(nowplayingart))
|
(nowplayingart))
|
||||||
(button
|
"test"
|
||||||
:class "mediabutton"
|
(box
|
||||||
:valign "center"
|
:space-evenly true
|
||||||
:halign "end"
|
:width 100
|
||||||
:height 25
|
:height 50
|
||||||
:width 25
|
(button
|
||||||
"")
|
:class "mediabutton"
|
||||||
(button
|
:valign "center"
|
||||||
:class "mediabutton"
|
:halign "end"
|
||||||
:valign "center"
|
:height 25
|
||||||
:halign "end"
|
:width 25
|
||||||
:height 25
|
"")
|
||||||
:width 25
|
(button
|
||||||
"")
|
:class "mediabutton"
|
||||||
(label
|
:valign "center"
|
||||||
:class "mediabutton"
|
:halign "end"
|
||||||
:valign "center"
|
:height 25
|
||||||
:halign "end"
|
:width 25
|
||||||
:height 25
|
"")
|
||||||
:width 25
|
(button
|
||||||
:text "")))
|
:class "mediabutton"
|
||||||
|
:valign "center"
|
||||||
|
:halign "end"
|
||||||
|
:height 25
|
||||||
|
:width 25
|
||||||
|
""))))
|
||||||
|
|
||||||
(defwidget nowplayingart []
|
(defwidget nowplayingart []
|
||||||
(box
|
(box
|
||||||
|
|
Loading…
Add table
Reference in a new issue