New backup 2025-07-18 12:30:02
This commit is contained in:
parent
7b1978e2ec
commit
d76135dd89
5 changed files with 16 additions and 4 deletions
|
@ -157,8 +157,8 @@ circular-progress {
|
||||||
|
|
||||||
.music {
|
.music {
|
||||||
color: $bar-module-fg-color;
|
color: $bar-module-fg-color;
|
||||||
background-color: transparent;
|
background-color: $bar-module-bg-color;
|
||||||
border: none;
|
border-radius: $bar-module-border-radius;
|
||||||
}
|
}
|
||||||
.rightgroup>label,
|
.rightgroup>label,
|
||||||
.active_window{
|
.active_window{
|
||||||
|
|
|
@ -7,4 +7,4 @@
|
||||||
:orientation "h"
|
:orientation "h"
|
||||||
:space-evenly false
|
:space-evenly false
|
||||||
:halign "center"
|
:halign "center"
|
||||||
{nowplaying != "" ? "🎵 ${nowplaying}" : ""}))
|
{nowplaying != "" ? " ${nowplaying}" : ""}))
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
:spacing 10
|
:spacing 10
|
||||||
:width 300
|
:width 300
|
||||||
:space-evenly false
|
:space-evenly false
|
||||||
|
(nowplayingart)
|
||||||
(rat)
|
(rat)
|
||||||
(weather :json weather_status)
|
(weather :json weather_status)
|
||||||
(shortcuts)
|
(shortcuts)
|
||||||
|
@ -11,6 +12,7 @@
|
||||||
(softwareupdates :json {software_list})
|
(softwareupdates :json {software_list})
|
||||||
(reminders :json {jq(reminders_list,'.reminders')})))
|
(reminders :json {jq(reminders_list,'.reminders')})))
|
||||||
|
|
||||||
|
(include "modules/home/nowplayingart.yuck")
|
||||||
(include "modules/home/rat.yuck")
|
(include "modules/home/rat.yuck")
|
||||||
(include "modules/home/weather.yuck")
|
(include "modules/home/weather.yuck")
|
||||||
(include "modules/home/shortcuts.yuck")
|
(include "modules/home/shortcuts.yuck")
|
||||||
|
|
10
de/home/.config/eww/modules/home/nowplayingart.yuck
Normal file
10
de/home/.config/eww/modules/home/nowplayingart.yuck
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
;(defpoll rat_image :interval "60s"
|
||||||
|
; 'scripts/home/randomrat')
|
||||||
|
(defwidget nowplayingart []
|
||||||
|
(box
|
||||||
|
:class "rat"
|
||||||
|
:orientation "h"
|
||||||
|
:width 300
|
||||||
|
:height 300
|
||||||
|
:style "background-image: url('https://listen.pogmom.me/rest/getCoverArt.view?id=952&u=pogmommy&p=mG%232001068485&v=1.13.0&c=Feishin&size=300');"))
|
||||||
|
; :style "background-image: url('${rat_image}');"))
|
|
@ -1,4 +1,4 @@
|
||||||
(defpoll weather_status :initial "{'condition':'loading...','current_temp':'--','feels_temp':'--','min_temp':'--','max_temp':'--','humidity':'--','icon':' ','updated':'loading...'}"
|
(defpoll weather_status :initial '{"condition":"loading...","current_temp":"--","feels_temp":"--","min_temp":"--","max_temp":"--","humidity":"--","icon":" ","updated":"loading..."}'
|
||||||
:interval "3600s"
|
:interval "3600s"
|
||||||
'scripts/home/hass_weather')
|
'scripts/home/hass_weather')
|
||||||
(defwidget weather [json]
|
(defwidget weather [json]
|
||||||
|
|
Loading…
Add table
Reference in a new issue