New backup 2025-07-18 15:30:02
This commit is contained in:
parent
36a1f59c0d
commit
130dd761eb
4 changed files with 13 additions and 10 deletions
|
@ -289,7 +289,7 @@ $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($color5,0.7);
|
||||
$home-widget-border-hover-color: rgba($color5,0.3);
|
||||
|
||||
.home {
|
||||
font-size: 0.95em;
|
||||
|
@ -306,8 +306,8 @@ $home-widget-border-hover-color: rgba($color5,0.7);
|
|||
.weather {
|
||||
// background-color: $home-widget-bg-color;
|
||||
color: $home-button-fg-color;
|
||||
// padding: 10px;
|
||||
// padding: 10px 0px;
|
||||
// margin: 0px;
|
||||
padding: 5px;
|
||||
.weather-subtitle{
|
||||
font-size: 0.8em;
|
||||
color: $home-widget-subtitle-color;
|
||||
|
@ -316,6 +316,7 @@ $home-widget-border-hover-color: rgba($color5,0.7);
|
|||
.revealer-on-press {
|
||||
border: 3px solid $home-widget-border-color;
|
||||
border-radius: $home-widget-border-radius;
|
||||
background-color: $home-widget-bg-color;
|
||||
/* &.revealer-closed {
|
||||
|
||||
}*/
|
||||
|
@ -356,6 +357,7 @@ $home-widget-border-hover-color: rgba($color5,0.7);
|
|||
border-radius: $home-button-border-radius;
|
||||
padding: 4px 8px;
|
||||
margin: 4px;
|
||||
transition: all 0.3s;
|
||||
box {
|
||||
.timestamp {
|
||||
font-size: 0.8em;
|
||||
|
@ -388,6 +390,7 @@ $home-widget-border-hover-color: rgba($color5,0.7);
|
|||
border-radius: $home-button-circle-border-radius;
|
||||
margin: 5px;
|
||||
font-size: 1.2em;
|
||||
transition: all 0.3s;
|
||||
label {
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
:width 250
|
||||
:height 75
|
||||
(box
|
||||
:visible {jq(workspacesArray, '.[]\|select(.focused==true).num') <= 9}
|
||||
:visible {jq(workspacesArray, '.[]\|select(.focused==true).num') <= 10}
|
||||
:orientation "h"
|
||||
:space-evenly true
|
||||
:halign "center"
|
||||
|
@ -26,7 +26,7 @@
|
|||
:justify "center"
|
||||
:text "")))
|
||||
(box
|
||||
:visible {jq(workspacesArray, '.[]\|select(.focused==true).num') <= 9}
|
||||
:visible {jq(workspacesArray, '.[]\|select(.focused==true).num') <= 10}
|
||||
:orientation "h"
|
||||
:space-evenly true
|
||||
:halign "center"
|
||||
|
@ -52,7 +52,7 @@
|
|||
:justify "center"
|
||||
:text "")))
|
||||
(box
|
||||
:visible {(jq(workspacesArray, '.[]\|select(.focused==true).num') <= 19) && (jq(workspacesArray, '.[]\|select(.focused==true).num') >= 10)}
|
||||
:visible {(jq(workspacesArray, '.[]\|select(.focused==true).num') <= 20) && (jq(workspacesArray, '.[]\|select(.focused==true).num') >= 11)}
|
||||
:orientation "h"
|
||||
:space-evenly true
|
||||
:halign "center"
|
||||
|
@ -81,7 +81,7 @@
|
|||
:justify "center"
|
||||
:text "")))
|
||||
(box
|
||||
:visible {(jq(workspacesArray, '.[]\|select(.focused==true).num') <= 19) && (jq(workspacesArray, '.[]\|select(.focused==true).num') >= 10)}
|
||||
:visible {(jq(workspacesArray, '.[]\|select(.focused==true).num') <= 20) && (jq(workspacesArray, '.[]\|select(.focused==true).num') >= 11)}
|
||||
:orientation "h"
|
||||
:space-evenly true
|
||||
:halign "center"
|
||||
|
@ -118,7 +118,7 @@
|
|||
:justify "center"
|
||||
:text "")))
|
||||
(box
|
||||
:visible {(jq(workspacesArray, '.[]\|select(.focused==true).num') <= 39) && (jq(workspacesArray, '.[]\|select(.focused==true).num') >= 30)}
|
||||
:visible {(jq(workspacesArray, '.[]\|select(.focused==true).num') <= 40) && (jq(workspacesArray, '.[]\|select(.focused==true).num') >= 31)}
|
||||
:orientation "h"
|
||||
:space-evenly true
|
||||
:halign "center"
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
'software-release-monitor')
|
||||
(defwidget softwareupdates [json]
|
||||
(box
|
||||
:visible {(jq(workspacesArray, '.[]\|select(.focused==true).num') <= 19) && (jq(workspacesArray, '.[]\|select(.focused==true).num') >= 10)}
|
||||
:visible {(jq(workspacesArray, '.[]\|select(.focused==true).num') <= 20) && (jq(workspacesArray, '.[]\|select(.focused==true).num') >= 11)}
|
||||
:class "notes"
|
||||
:orientation "v"
|
||||
:halign "baseline"
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
:class "weather"
|
||||
:orientation "v"
|
||||
:width 250
|
||||
:height 125
|
||||
:height 100
|
||||
:space-evenly true
|
||||
"${json.condition} ${json.icon}"
|
||||
"${json.current_temp} / ${json.humidity}% "
|
||||
|
|
Loading…
Add table
Reference in a new issue