New backup 2025-07-18 14:30:02
This commit is contained in:
parent
4d31d2ad1d
commit
eb522c96c6
10 changed files with 33 additions and 20 deletions
|
@ -289,9 +289,10 @@ $home-button-fg-color: rgba($color5,$home-button-fg-opacity);
|
||||||
$home-widget-subtitle-color: rgba($color7,0.6);
|
$home-widget-subtitle-color: rgba($color7,0.6);
|
||||||
$home-button-hover-bg-color: rgba($color1, 0.5);
|
$home-button-hover-bg-color: rgba($color1, 0.5);
|
||||||
$home-widget-border-color: rgba($color5,1);
|
$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 {
|
.home {
|
||||||
|
font-size: 0.95em;
|
||||||
/* > box {
|
/* > box {
|
||||||
border-radius: $home-widget-border-radius;
|
border-radius: $home-widget-border-radius;
|
||||||
box-shadow: inset 0 0 0px 3px $home-widget-border-color;
|
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;
|
color: $home-widget-subtitle-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.revealer-title {
|
.revealer-on-press {
|
||||||
border: 3px solid $home-widget-border-color;
|
border: 3px solid $home-widget-border-color;
|
||||||
; box-shadow: inset 0 0 0px 3px $home-widget-border-color;
|
border-radius: $home-widget-border-radius;
|
||||||
background-color: $home-widget-border-hover-color;
|
}
|
||||||
|
.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;
|
color: $home-widget-bg-color;
|
||||||
padding: 2px 0px;
|
padding: 3px 0px;
|
||||||
transition: all 0.3s;
|
transition: all 0.3s;
|
||||||
&:hover {
|
&:hover {
|
||||||
// background-color: $color2;
|
// background-color: $color2;
|
||||||
background-color: $home-widget-border-hover-color;
|
background-color: $home-widget-border-hover-color;
|
||||||
|
// border-color: transparent;
|
||||||
}
|
}
|
||||||
&.open {
|
/* &.open {
|
||||||
border-radius: $home-widget-title-radius;
|
border-radius: $home-widget-title-radius;
|
||||||
border-bottom: 0px;
|
border-bottom: 0px;
|
||||||
}
|
}
|
||||||
&.closed {
|
&.closed {
|
||||||
border-radius: $home-widget-border-radius;
|
border-radius: $home-widget-border-radius;
|
||||||
}
|
}*/
|
||||||
|
}
|
||||||
|
.rat,
|
||||||
|
.nowplayingart,
|
||||||
|
.shortcuts {
|
||||||
|
border: 3px solid $home-widget-border-color;
|
||||||
|
border-radius: $home-widget-border-radius;
|
||||||
}
|
}
|
||||||
.notes {
|
.notes {
|
||||||
background-color: $home-widget-bg-color;
|
background-color: $home-widget-bg-color;
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
:exclusive true
|
:exclusive true
|
||||||
:geometry (geometry :x "10px"
|
:geometry (geometry :x "10px"
|
||||||
:y "10px"
|
:y "10px"
|
||||||
:width "300px"
|
:width "250px"
|
||||||
:height "200px"
|
:height "200px"
|
||||||
:anchor "center left")
|
:anchor "center left")
|
||||||
:stacking "bottom"
|
:stacking "bottom"
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
(box :class "home"
|
(box :class "home"
|
||||||
:orientation "v"
|
:orientation "v"
|
||||||
:spacing 10
|
:spacing 10
|
||||||
:width 300
|
:width 250
|
||||||
:space-evenly false
|
:space-evenly false
|
||||||
(nowplayingart)
|
(nowplayingart)
|
||||||
(rat)
|
(rat)
|
||||||
|
@ -11,6 +11,7 @@
|
||||||
(notes_revealer)
|
(notes_revealer)
|
||||||
; (notes :json {jq(notes_list,'.notes')})
|
; (notes :json {jq(notes_list,'.notes')})
|
||||||
(softwareupdates :json {software_list})
|
(softwareupdates :json {software_list})
|
||||||
|
; (reminders_revealer)))
|
||||||
(reminders :json {jq(reminders_list,'.reminders')})))
|
(reminders :json {jq(reminders_list,'.reminders')})))
|
||||||
|
|
||||||
;widget templates
|
;widget templates
|
||||||
|
|
|
@ -8,9 +8,9 @@
|
||||||
:visible {jq(workspacesArray, '.[]\|select(.focused==true).num') <= 9}
|
:visible {jq(workspacesArray, '.[]\|select(.focused==true).num') <= 9}
|
||||||
:revealvar reveal_notes
|
:revealvar reveal_notes
|
||||||
:revealvar-name "reveal_notes"
|
:revealvar-name "reveal_notes"
|
||||||
:width 300
|
:width 250
|
||||||
(button
|
(button
|
||||||
:width 300
|
:width 250
|
||||||
:class "revealer-title ${reveal_notes ? 'open' : 'closed'}"
|
:class "revealer-title ${reveal_notes ? 'open' : 'closed'}"
|
||||||
"Notes ${reveal_notes ? '' : ''}")
|
"Notes ${reveal_notes ? '' : ''}")
|
||||||
; {reveal_notes ? "" : ""}
|
; {reveal_notes ? "" : ""}
|
||||||
|
|
|
@ -4,8 +4,8 @@
|
||||||
(box
|
(box
|
||||||
:class "nowplayingart"
|
:class "nowplayingart"
|
||||||
:orientation "h"
|
:orientation "h"
|
||||||
:width 300
|
:width 250
|
||||||
:height 300
|
: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('/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('${nowplaying_img_path}');"))
|
||||||
; :style "background-image: url('${rat_image}');"))
|
; :style "background-image: url('${rat_image}');"))
|
||||||
|
|
|
@ -4,6 +4,6 @@
|
||||||
(box
|
(box
|
||||||
:class "rat"
|
:class "rat"
|
||||||
:orientation "h"
|
:orientation "h"
|
||||||
:width 300
|
:width 250
|
||||||
:height 300
|
:height 250
|
||||||
:style "background-image: url('${rat_image}');"))
|
:style "background-image: url('${rat_image}');"))
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
:revealvar reveal_reminders
|
:revealvar reveal_reminders
|
||||||
:revealvar-name "reveal_reminders"
|
:revealvar-name "reveal_reminders"
|
||||||
{reveal_reminders ? "" : ""}
|
{reveal_reminders ? "" : ""}
|
||||||
(notes :json {jq(notes_list,'.notes')})))
|
(reminders :json {jq(reminders_list,'.reminders')))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
||||||
:class "notes"
|
:class "notes"
|
||||||
:orientation "v"
|
:orientation "v"
|
||||||
:halign "baseline"
|
:halign "baseline"
|
||||||
:width 300
|
:width 250
|
||||||
;; :height 150
|
;; :height 150
|
||||||
:space-evenly true
|
:space-evenly true
|
||||||
(for reminder in json
|
(for reminder in json
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
:orientation "v"
|
:orientation "v"
|
||||||
:space-evenly true
|
:space-evenly true
|
||||||
:halign "center"
|
:halign "center"
|
||||||
:width 300
|
:width 250
|
||||||
:height 75
|
:height 75
|
||||||
(box
|
(box
|
||||||
:visible {jq(workspacesArray, '.[]\|select(.focused==true).num') <= 9}
|
:visible {jq(workspacesArray, '.[]\|select(.focused==true).num') <= 9}
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
:class "notes"
|
:class "notes"
|
||||||
:orientation "v"
|
:orientation "v"
|
||||||
:halign "baseline"
|
:halign "baseline"
|
||||||
:width 300
|
:width 250
|
||||||
:height 150
|
:height 150
|
||||||
:space-evenly true
|
:space-evenly true
|
||||||
(for software in json
|
(for software in json
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
(box
|
(box
|
||||||
:class "weather"
|
:class "weather"
|
||||||
:orientation "v"
|
:orientation "v"
|
||||||
:width 300
|
:width 250
|
||||||
:height 125
|
:height 125
|
||||||
:space-evenly true
|
:space-evenly true
|
||||||
"${json.condition} ${json.icon}"
|
"${json.condition} ${json.icon}"
|
||||||
|
|
Loading…
Add table
Reference in a new issue