57 lines
1.6 KiB
Plaintext
57 lines
1.6 KiB
Plaintext
(defwidget bar []
|
|
(centerbox :orientation "h"
|
|
(sidestuff)
|
|
(box)
|
|
(music)))
|
|
|
|
(defwindow bar
|
|
:monitor 2
|
|
:stacking "fg"
|
|
:exclusive true
|
|
:geometry
|
|
(geometry
|
|
:x "0%"
|
|
:y "0%"
|
|
:width "100%"
|
|
:height "31px"
|
|
:anchor "bottom center")
|
|
(bar))
|
|
|
|
(defwidget sidestuff []
|
|
(box :class "sidestuff" :orientation "h" :space-evenly false :halign "start" :spacing 20
|
|
time
|
|
; TODO: idle inhibitor?
|
|
; TODO: get these to align properly?
|
|
(box :class "mic" (box :class {micMuted == "false" ? "live" : "muted"} {micMuted == "false" ? " " : " "}))
|
|
{" " + volume}
|
|
{" " + cpu}
|
|
{" " + ram}
|
|
; TODO: brightness
|
|
; TODO: battery
|
|
))
|
|
|
|
(defwidget music []
|
|
(box :class "music"
|
|
:orientation "h"
|
|
:halign "end"
|
|
:space-evenly false
|
|
{music != "" ? "${music}" : ""}))
|
|
|
|
(deflisten music :initial ""
|
|
"playerctl --follow metadata --format '{{ title }} by {{ artist }}' || true")
|
|
|
|
(deflisten volume :initial "0"
|
|
"pamixer --get-volume; pactl subscribe | grep sink --line-buffered | while read i; do pamixer --get-volume; done")
|
|
|
|
(deflisten micMuted :initial "false"
|
|
"pamixer --default-source --get-mute; pactl subscribe | grep source --line-buffered | while read i; do pamixer --default-source --get-mute; done")
|
|
|
|
(defpoll cpu :interval "5s"
|
|
"mpstat -o JSON | jq -r '(100 - .sysstat.hosts[0].statistics[0][\"cpu-load\"][0].idle | round | tostring)+\"%\"'")
|
|
|
|
(defpoll ram :interval "5s"
|
|
"free | grep Mem | awk '{printf \"%.0f%\", $3/$2 * 100.0}'")
|
|
|
|
(defpoll time :interval "1s"
|
|
"date '+%a %b %d %H:%M:%S'")
|