diff --git a/de/home/.config/eww/eww.scss b/de/home/.config/eww/eww.scss index 99f49d3..28db706 100644 --- a/de/home/.config/eww/eww.scss +++ b/de/home/.config/eww/eww.scss @@ -289,9 +289,10 @@ $home-button-fg-color: rgba($color5,$home-button-fg-opacity); $home-widget-subtitle-color: rgba($color7,0.6); $home-button-hover-bg-color: rgba($color1, 0.5); $home-widget-border-color: rgba($color5,1); -$home-widget-border-hover-color: rgba($color12,1); +$home-widget-border-hover-color: rgba($color5,0.7); .home { + font-size: 0.95em; /* > box { border-radius: $home-widget-border-radius; box-shadow: inset 0 0 0px 3px $home-widget-border-color; @@ -312,24 +313,35 @@ $home-widget-border-hover-color: rgba($color12,1); color: $home-widget-subtitle-color; } } - .revealer-title { + .revealer-on-press { border: 3px solid $home-widget-border-color; -; box-shadow: inset 0 0 0px 3px $home-widget-border-color; - background-color: $home-widget-border-hover-color; + border-radius: $home-widget-border-radius; + } + .revealer-title { +// border: 3px solid $home-widget-border-color; +// box-shadow: inset 0 0 0px 3px $home-widget-border-color; + background-color: $home-widget-border-color; color: $home-widget-bg-color; - padding: 2px 0px; + padding: 3px 0px; transition: all 0.3s; &:hover { // background-color: $color2; background-color: $home-widget-border-hover-color; +// border-color: transparent; } - &.open { +/* &.open { border-radius: $home-widget-title-radius; border-bottom: 0px; } &.closed { border-radius: $home-widget-border-radius; - } + }*/ + } + .rat, + .nowplayingart, + .shortcuts { + border: 3px solid $home-widget-border-color; + border-radius: $home-widget-border-radius; } .notes { background-color: $home-widget-bg-color; diff --git a/de/home/.config/eww/eww.yuck b/de/home/.config/eww/eww.yuck index fc1fbe1..ee54dd2 100644 --- a/de/home/.config/eww/eww.yuck +++ b/de/home/.config/eww/eww.yuck @@ -19,7 +19,7 @@ :exclusive true :geometry (geometry :x "10px" :y "10px" - :width "300px" + :width "250px" :height "200px" :anchor "center left") :stacking "bottom" diff --git a/de/home/.config/eww/modules/home.yuck b/de/home/.config/eww/modules/home.yuck index 761da79..e18d15a 100644 --- a/de/home/.config/eww/modules/home.yuck +++ b/de/home/.config/eww/modules/home.yuck @@ -2,7 +2,7 @@ (box :class "home" :orientation "v" :spacing 10 - :width 300 + :width 250 :space-evenly false (nowplayingart) (rat) @@ -11,6 +11,7 @@ (notes_revealer) ; (notes :json {jq(notes_list,'.notes')}) (softwareupdates :json {software_list}) +; (reminders_revealer))) (reminders :json {jq(reminders_list,'.reminders')}))) ;widget templates diff --git a/de/home/.config/eww/modules/home/notes.yuck b/de/home/.config/eww/modules/home/notes.yuck index 9a69c9c..56206b5 100644 --- a/de/home/.config/eww/modules/home/notes.yuck +++ b/de/home/.config/eww/modules/home/notes.yuck @@ -8,9 +8,9 @@ :visible {jq(workspacesArray, '.[]\|select(.focused==true).num') <= 9} :revealvar reveal_notes :revealvar-name "reveal_notes" - :width 300 + :width 250 (button - :width 300 + :width 250 :class "revealer-title ${reveal_notes ? 'open' : 'closed'}" "Notes ${reveal_notes ? '' : ''}") ; {reveal_notes ? "" : ""} diff --git a/de/home/.config/eww/modules/home/nowplayingart.yuck b/de/home/.config/eww/modules/home/nowplayingart.yuck index 7786a67..f27d7a5 100644 --- a/de/home/.config/eww/modules/home/nowplayingart.yuck +++ b/de/home/.config/eww/modules/home/nowplayingart.yuck @@ -4,8 +4,8 @@ (box :class "nowplayingart" :orientation "h" - :width 300 - :height 300 + :width 250 + :height 250 ; :style "background-image: url('/run/user/1000/album_art_cache/getCoverArt.view?id=952&u=pogmommy&p=mG%232001068485&v=1.13.0&c=Feishin&size=300');")) :style "background-image: url('${nowplaying_img_path}');")) ; :style "background-image: url('${rat_image}');")) diff --git a/de/home/.config/eww/modules/home/rat.yuck b/de/home/.config/eww/modules/home/rat.yuck index 31bf25d..d1bd703 100644 --- a/de/home/.config/eww/modules/home/rat.yuck +++ b/de/home/.config/eww/modules/home/rat.yuck @@ -4,6 +4,6 @@ (box :class "rat" :orientation "h" - :width 300 - :height 300 + :width 250 + :height 250 :style "background-image: url('${rat_image}');")) diff --git a/de/home/.config/eww/modules/home/reminders.yuck b/de/home/.config/eww/modules/home/reminders.yuck index dcc459a..ec5b3c2 100644 --- a/de/home/.config/eww/modules/home/reminders.yuck +++ b/de/home/.config/eww/modules/home/reminders.yuck @@ -8,7 +8,7 @@ :revealvar reveal_reminders :revealvar-name "reveal_reminders" {reveal_reminders ? "" : ""} - (notes :json {jq(notes_list,'.notes')}))) + (reminders :json {jq(reminders_list,'.reminders'))) @@ -22,7 +22,7 @@ :class "notes" :orientation "v" :halign "baseline" - :width 300 + :width 250 ;; :height 150 :space-evenly true (for reminder in json diff --git a/de/home/.config/eww/modules/home/shortcuts.yuck b/de/home/.config/eww/modules/home/shortcuts.yuck index 8a477d0..b743d47 100644 --- a/de/home/.config/eww/modules/home/shortcuts.yuck +++ b/de/home/.config/eww/modules/home/shortcuts.yuck @@ -4,7 +4,7 @@ :orientation "v" :space-evenly true :halign "center" - :width 300 + :width 250 :height 75 (box :visible {jq(workspacesArray, '.[]\|select(.focused==true).num') <= 9} diff --git a/de/home/.config/eww/modules/home/softwareupdates.yuck b/de/home/.config/eww/modules/home/softwareupdates.yuck index 76c04cf..a23b6a4 100644 --- a/de/home/.config/eww/modules/home/softwareupdates.yuck +++ b/de/home/.config/eww/modules/home/softwareupdates.yuck @@ -7,7 +7,7 @@ :class "notes" :orientation "v" :halign "baseline" - :width 300 + :width 250 :height 150 :space-evenly true (for software in json diff --git a/de/home/.config/eww/modules/home/weather.yuck b/de/home/.config/eww/modules/home/weather.yuck index b0b7b7d..ee134ab 100644 --- a/de/home/.config/eww/modules/home/weather.yuck +++ b/de/home/.config/eww/modules/home/weather.yuck @@ -5,7 +5,7 @@ (box :class "weather" :orientation "v" - :width 300 + :width 250 :height 125 :space-evenly true "${json.condition} ${json.icon}"