eww integration

This commit is contained in:
ShakedGold 2023-06-13 00:22:37 +03:00
parent 09a6557e45
commit 541ee65efc
5 changed files with 81 additions and 3 deletions

View file

@ -1 +0,0 @@
/home/shaked/.config/eww/eww.yuck

23
eww/eww.yuck Normal file
View file

@ -0,0 +1,23 @@
(defpoll windows :interval "1s"
:initial "initial-value" ; optional, defaults to poll at startup
:run-while time-visible ; optional, defaults to 'true'
`scripts/windows.sh`)
(defwidget windows_widget []
(box
(literal :content windows)
)
)
(defwindow example
:monitor 0
:geometry (geometry
:x "0%"
:y "0%"
:width "50%"
:height "30%"
:anchor "center center")
:stacking "fg"
:windowtype "dock"
(windows_widget)
)