dots-of-war/eww-laptop/.config/eww/eww.yuck
ElKowar 6096e7f94f
work adjustments
lazy and update

update lazy

add lsp-lines

copilot and stuff

äf

update

Re-set up laptop

slight changes to hyprland config

update neovim

eww rice

vert bar

update

asdf
2024-05-20 16:35:23 +02:00

91 lines
3 KiB
Text

(deflisten workspaces :initial "[]" "bash ./scripts/get-workspaces")
(deflisten current_workspace :initial "1" "bash ./scripts/get-active-workspace")
(defpoll brightness :interval "1s" "bash ./scripts/get-brightness")
(defpoll volume :interval "1s" "bash ./scripts/getvol")
(defwindow indicators
:monitor 0
:geometry (geometry :x 50 :y 50 :width "200px" :height "10px" :anchor "bottom left")
:stacking "fg"
(indicators))
(defwidget indicators []
(box :orientation "v"
(box :space-evenly false
(label :text "󰃞 ")
(progress :valign "center" :value {brightness ?: 0}))
(box :space-evenly false
(label :text " ")
(progress :valign "center" :value {volume ?: 0}))))
(defwindow bar
:monitor 0
:geometry (geometry :x 0 :y 0 :width "40px" :height "100%" :anchor "center left")
:stacking "fg"
:exclusive true
(bar))
(defwidget bar []
(centerbox :class "bar" :orientation "v"
(workspaces-display)
(time-display)
(data-display)))
(defwidget workspaces-display []
(eventbox :onscroll "bash ${EWW_CONFIG_DIR}/scripts/change-active-workspace {} ${current_workspace}"
:class "workspaces-widget"
(box :space-evenly false :orientation "v"
(for workspace in workspaces
(eventbox :onclick "hyprctl dispatch workspace ${workspace.id}"
(label :class {workspace.id == current_workspace ? "current" : ""}
:xalign 0.6
:text " ${workspace.windows > 0 ? "◆" : "◇"} "))))))
(defwidget time-display []
(box :orientation "v"
{formattime(EWW_TIME, "%H")}
{formattime(EWW_TIME, "%M")}
{formattime(EWW_TIME, "%S")}
"—"
{formattime(EWW_TIME, "%d")}
{formattime(EWW_TIME, "%m")}
{formattime(EWW_TIME, "%y")}))
(defwidget data-display []
(box :valign "end"
:space-evenly false
:orientation "v"
(box :class "entry" :orientation "v"
(overlay
(entry-icon :text {EWW_BATTERY["BAT1"].capacity > 80 ? "󰁹" :
EWW_BATTERY["BAT1"].capacity > 50 ? "󰂁" :
EWW_BATTERY["BAT1"].capacity > 30 ? "󰁾" :
EWW_BATTERY["BAT1"].capacity > 10 ? "󰁼" : "󰁺"})
(entry-icon :text {EWW_BATTERY["BAT1"].status == "Charging" ? "󱐋" : ""}))
(label :class "value" :text "${EWW_BATTERY["BAT1"].capacity}%"))
(entry :icon "󰍛" :value "${round(EWW_RAM.used_mem_perc, 0)}%")
(entry :icon "󰻠" :value "${round(EWW_CPU.avg, 0)}%")))
;(systray :pack-direction "ttb")))
(defwidget entry [icon ?icon-class value]
(box :class "entry" :orientation "v"
(entry-icon :class "icon" :text "${icon}")
(label :class "value" :text value)))
(defwidget entry-icon [text ?class]
(label :class "icon ${class}"
:valign "fill" :halign "fill"
:text "${text}"))
;(defwindow test [foo]
;:monitor 0
;:geometry (geometry :x 50 :y 50 :width "200px" :height "10px" :anchor "bottom left")
;:stacking "fg"
;"${foo}")