initialitation

This commit is contained in:
Robin
2025-07-05 16:01:18 +02:00
commit 47a35b863d
139 changed files with 57264 additions and 0 deletions

18
.config/eww/eww.yuck Normal file
View File

@@ -0,0 +1,18 @@
(defwidget volume_box [?text]
(box :orientation "horizontal"
:halign "center"
text
)
)
(defwindow volume
:windowtype "normal"
:stacking "fg"
:monitor "1"
:geometry (geometry :x "20px"
:y "20px"
:width "20px"
:heigth "30px")
(volume_box :text "hello world"
)
)