New backup 2025-07-18 19:00:01

This commit is contained in:
Penelope Gwen 2025-07-18 19:00:01 -07:00
parent d4752ad5ba
commit acde63c02b
2 changed files with 7 additions and 3 deletions

View file

@ -305,7 +305,10 @@ $home-widget-border-hover-color: rgba($color5,0.3);
background-color: $home-widget-bg-color; background-color: $home-widget-bg-color;
// .nowplayingart, // .nowplayingart,
.mediacontrols { .mediacontrols {
margin: 20px; margin: 0px 25px 0px 15px;
&.fullwidth {
margin: 0px 35px;
}
// margin-left: 10px; // margin-left: 10px;
} }
.nowplayingart { .nowplayingart {

View file

@ -1,6 +1,7 @@
(deflisten nowplaying_img_path :initial "" (deflisten nowplaying_img_path :initial ""
'scripts/home/nowplayingart.sh') 'scripts/home/nowplayingart.sh')
(defvar large_album_art false)
(defwidget nowplayingbar [] (defwidget nowplayingbar []
; (centerbox ; (centerbox
(box (box
@ -11,7 +12,7 @@
:width 300 :width 300
:height 100 :height 100
(button (button
:visible true :visible {!large_album_art}
:height 100 :height 100
:width 100 :width 100
:valign "cs" :valign "cs"
@ -22,7 +23,7 @@
; (label :width 0 ; (label :width 0
; :text "") ; :text "")
(box (box
:class "mediacontrols" :class "mediacontrols ${large_album_art ? 'fullwidth' : ''}"
:orientation "h" :orientation "h"
:space-evenly true :space-evenly true
:halign "fill" :halign "fill"