trying to fix kde on greetd

This commit is contained in:
Chris Cochrun 2022-12-16 10:00:03 -06:00
parent aed85412da
commit b2a940dbe9
8 changed files with 71 additions and 14 deletions

View file

@ -176,6 +176,12 @@
:tooltip "using ${EWW_RAM.used_mem_perc}% ram"
" "))))
(defwidget kdeconnect []
(box
:class "kdeconnect_module"
:vexpand "false"
:hexpand "false"))
(defwidget clock_module []
(eventbox
:onhover "${EWW_CMD} update time_rev=true"
@ -434,6 +440,49 @@
:text "____________________________________"
:class "sys_sep"
:halign "center")
(box
:class "sys_mem_box"
:orientation "h"
:space-evenly "false"
:halign "start"
(circular-progress
:value {EWW_CPU.avg}
:class "sys_mem"
:thickness 9
(label
:text ""
:class "sys_icon_mem"
:limit-width 2
:wrap false
:angle 0.0))
(box
:orientation "v"
:space-evenly "false"
:spacing 0
:hexpand "false"
:vexpand "false"
(label
:text "processor"
:halign "start"
:class "sys_text_mem"
:limit-width 9
:wrap false)
(label
:text "${EWW_CPU.avg} | ${round((EWW_RAM.total_mem / 1024), 0)}mb "
:halign "start"
:class "sys_text_mem_sub"
:limit-width 22
:wrap false)
(label :text "3.4 GHZ"
:halign "start"
:class "sys_text_mem_sub"
:limit-width 22
:wrap false)
))
(label
:text "____________________________________"
:class "sys_sep"
:halign "center")
(box
:class "sys_mem_box"
:orientation "h"