New backup 2025-11-28 09:15:02

This commit is contained in:
Penelope Gwen 2025-11-28 09:15:02 -08:00
parent e01b191df1
commit 9d1630e5bb
3 changed files with 38 additions and 36 deletions

View file

@ -80,7 +80,7 @@ revealer.home {
&>box {
// & scrolledwindow, viewport.frame, box.home { //box.home {
& scrolledwindow, viewport.frame, box.home { //box.home {
& scrolledwindow>*, viewport.frame, box.home { //box.home {
// border: 3px solid blue;
border-radius: 0px 20px 0px 20px;
}

View file

@ -21,7 +21,7 @@
:windowtype "normal"
:exclusive false
:geometry (geometry
; :y "0px"
:y "27px"
; :width "300px"
:height "100%"
:anchor "center left")

View file

@ -1,47 +1,49 @@
(defvar homewidgets_reveal false)
(defwidget home []
; (box :height 27)
(revealer
:transition "slideright"
:reveal homewidgets_reveal
:duration "250ms"
(box
:orientation 'v'
:space-evenly false
(box :height 27)
(scroll
:vscroll true
:hscroll false
:vexpand true
:height 400
(box :class "home"
:orientation "v"
:spacing 10
:width 300
:space-evenly false
(nowplayingbar)
(rat)
(shortcuts_revealer)
(weather_revealer)
(mcstatus_revealer)
(box
:visible {(jq(workspacesArray, '.[]\|select(.focused==true).num') <= 20) && (jq(workspacesArray, '.[]\|select(.focused==true).num') >= 11)}
(software_revealer)
)
(box
:visible {jq(workspacesArray, '.[]\|select(.focused==true).num') <= 9}
(notes_revealer)
)
(box
:visible {jq(workspacesArray, '.[]\|select(.focused==true).num') <= 9}
(reminders_revealer)
)
(box
:orientation 'v'
:space-evenly false
(box :height 27)
(scroll
:vscroll true
:hscroll false
:vexpand true
:height 400
(box :class "home"
:orientation "v"
:spacing 10
:width 300
:space-evenly false
(nowplayingbar)
(rat)
(shortcuts_revealer)
(weather_revealer)
(mcstatus_revealer)
(box
:visible {(jq(workspacesArray, '.[]\|select(.focused==true).num') <= 20) && (jq(workspacesArray, '.[]\|select(.focused==true).num') >= 11)}
(software_revealer)
)
(box
:visible {jq(workspacesArray, '.[]\|select(.focused==true).num') <= 9}
(notes_revealer)
)
(box
:visible {jq(workspacesArray, '.[]\|select(.focused==true).num') <= 9}
(reminders_revealer)
)
)
)
;(box :height 10)
)
)
;(box :height 10)
)
))
)
;widget templates
(include "modules/home/revealer-on-press.yuck")