This commit is contained in:
end-4
2024-02-22 15:35:06 +07:00
commit 8db26e9707
4220 changed files with 208544 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
(defwidget dynamiccenter_widget []
(box
:orientation "v" :space-evenly false
(box ; Module 1: Volume, Brightness
:class "dynamic-module${(osd_vol || osd_bright) ? '' : '-hidetop'}"
(osd_widget)
)
(box ; Module 2: Workspaces
:class "dynamic-module${(osd_vol || osd_bright) ? '-hidebottom' : ''}"
(workspaces_widget)
)
)
)