79 lines
2.3 KiB
Plaintext
79 lines
2.3 KiB
Plaintext
|
|
(defwidget bar []
|
||
|
|
(centerbox :orientation "h"
|
||
|
|
(workspaces)
|
||
|
|
(music)
|
||
|
|
(sidestuff)))
|
||
|
|
|
||
|
|
(defwidget sidestuff []
|
||
|
|
(box :class "sidestuff" :orientation "h" :space-evenly false :halign "end"
|
||
|
|
;(metric :label "🔊"
|
||
|
|
; :value volume
|
||
|
|
; :onchange "amixer -D pulse sset Master {}%")
|
||
|
|
(metric :label " "
|
||
|
|
:value {EWW_RAM.used_mem_perc}
|
||
|
|
:onchange "")
|
||
|
|
(metric :label "💾"
|
||
|
|
:value {round((1 - (EWW_DISK["/"].free / EWW_DISK["/"].total)) * 100, 0)}
|
||
|
|
:onchange "")
|
||
|
|
time))
|
||
|
|
|
||
|
|
(defwidget workspaces []
|
||
|
|
(box :class "workspaces"
|
||
|
|
:orientation "h"
|
||
|
|
:space-evenly true
|
||
|
|
:halign "start"
|
||
|
|
:spacing 20
|
||
|
|
(button :onclick "hyprctl dispatch split-workspace 1" "")
|
||
|
|
(button :onclick "hyprctl dispatch split-workspace 2" "")
|
||
|
|
(button :onclick "hyprctl dispatch split-workspace 3" "")
|
||
|
|
(button :onclick "hyprctl dispatch split-workspace 4" "")
|
||
|
|
(button :onclick "hyprctl dispatch split-workspace 5" "")
|
||
|
|
(button :onclick "hyprctl dispatch split-workspace 6" "")
|
||
|
|
(button :onclick "hyprctl dispatch split-workspace 7" "")
|
||
|
|
(button :onclick "hyprctl dispatch split-workspace 8" 8)
|
||
|
|
(button :onclick "hyprctl dispatch split-workspace 9" "")
|
||
|
|
(button :onclick "hyprctl dispatch split-workspace 0" "")))
|
||
|
|
|
||
|
|
(defwidget music []
|
||
|
|
(box :class "music"
|
||
|
|
:orientation "h"
|
||
|
|
:space-evenly false
|
||
|
|
:halign "center"
|
||
|
|
{music != "" ? "🎵${music}" : ""}))
|
||
|
|
|
||
|
|
|
||
|
|
(defwidget metric [label value onchange]
|
||
|
|
(box :orientation "h"
|
||
|
|
:class "metric"
|
||
|
|
:space-evenly false
|
||
|
|
(box :class "label" label)
|
||
|
|
(scale :min 0
|
||
|
|
:max 101
|
||
|
|
:active {onchange != ""}
|
||
|
|
:value value
|
||
|
|
:onchange onchange)))
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
(deflisten music :initial ""
|
||
|
|
"playerctl --follow metadata --format '{{ artist }} - {{ title }}' || true")
|
||
|
|
|
||
|
|
(defpoll volume :interval "1s"
|
||
|
|
"scripts/getvol")
|
||
|
|
|
||
|
|
(defpoll time :interval "10s"
|
||
|
|
"date '+%H:%M %b %d, %Y'")
|
||
|
|
|
||
|
|
(defwindow bar
|
||
|
|
:monitor 0
|
||
|
|
:windowtype "dock"
|
||
|
|
:geometry (geometry :x "0%"
|
||
|
|
:y "0%"
|
||
|
|
:width "100%"
|
||
|
|
:height "10px"
|
||
|
|
:anchor "top center")
|
||
|
|
:reserve (struts :side "top" :distance "4%")
|
||
|
|
:exclusive true
|
||
|
|
(bar))
|
||
|
|
|