New backup 2025-11-28 09:15:02
This commit is contained in:
parent
e01b191df1
commit
9d1630e5bb
3 changed files with 38 additions and 36 deletions
|
|
@ -80,7 +80,7 @@ revealer.home {
|
||||||
|
|
||||||
&>box {
|
&>box {
|
||||||
// & scrolledwindow, viewport.frame, box.home { //box.home {
|
// & 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: 3px solid blue;
|
||||||
border-radius: 0px 20px 0px 20px;
|
border-radius: 0px 20px 0px 20px;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
:windowtype "normal"
|
:windowtype "normal"
|
||||||
:exclusive false
|
:exclusive false
|
||||||
:geometry (geometry
|
:geometry (geometry
|
||||||
; :y "0px"
|
:y "27px"
|
||||||
; :width "300px"
|
; :width "300px"
|
||||||
:height "100%"
|
:height "100%"
|
||||||
:anchor "center left")
|
:anchor "center left")
|
||||||
|
|
|
||||||
|
|
@ -1,47 +1,49 @@
|
||||||
(defvar homewidgets_reveal false)
|
(defvar homewidgets_reveal false)
|
||||||
|
|
||||||
(defwidget home []
|
(defwidget home []
|
||||||
|
; (box :height 27)
|
||||||
(revealer
|
(revealer
|
||||||
:transition "slideright"
|
:transition "slideright"
|
||||||
:reveal homewidgets_reveal
|
:reveal homewidgets_reveal
|
||||||
:duration "250ms"
|
:duration "250ms"
|
||||||
|
|
||||||
(box
|
(box
|
||||||
:orientation 'v'
|
:orientation 'v'
|
||||||
:space-evenly false
|
:space-evenly false
|
||||||
(box :height 27)
|
(box :height 27)
|
||||||
(scroll
|
(scroll
|
||||||
:vscroll true
|
:vscroll true
|
||||||
:hscroll false
|
:hscroll false
|
||||||
:vexpand true
|
:vexpand true
|
||||||
:height 400
|
:height 400
|
||||||
(box :class "home"
|
(box :class "home"
|
||||||
:orientation "v"
|
:orientation "v"
|
||||||
:spacing 10
|
:spacing 10
|
||||||
:width 300
|
:width 300
|
||||||
:space-evenly false
|
:space-evenly false
|
||||||
(nowplayingbar)
|
(nowplayingbar)
|
||||||
(rat)
|
(rat)
|
||||||
(shortcuts_revealer)
|
(shortcuts_revealer)
|
||||||
(weather_revealer)
|
(weather_revealer)
|
||||||
(mcstatus_revealer)
|
(mcstatus_revealer)
|
||||||
(box
|
(box
|
||||||
:visible {(jq(workspacesArray, '.[]\|select(.focused==true).num') <= 20) && (jq(workspacesArray, '.[]\|select(.focused==true).num') >= 11)}
|
:visible {(jq(workspacesArray, '.[]\|select(.focused==true).num') <= 20) && (jq(workspacesArray, '.[]\|select(.focused==true).num') >= 11)}
|
||||||
(software_revealer)
|
(software_revealer)
|
||||||
)
|
)
|
||||||
(box
|
(box
|
||||||
:visible {jq(workspacesArray, '.[]\|select(.focused==true).num') <= 9}
|
:visible {jq(workspacesArray, '.[]\|select(.focused==true).num') <= 9}
|
||||||
(notes_revealer)
|
(notes_revealer)
|
||||||
)
|
)
|
||||||
(box
|
(box
|
||||||
:visible {jq(workspacesArray, '.[]\|select(.focused==true).num') <= 9}
|
:visible {jq(workspacesArray, '.[]\|select(.focused==true).num') <= 9}
|
||||||
(reminders_revealer)
|
(reminders_revealer)
|
||||||
)
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
;(box :height 10)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
;(box :height 10)
|
)
|
||||||
)
|
|
||||||
))
|
|
||||||
|
|
||||||
;widget templates
|
;widget templates
|
||||||
(include "modules/home/revealer-on-press.yuck")
|
(include "modules/home/revealer-on-press.yuck")
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue