133 lines
3.2 KiB
Plaintext
133 lines
3.2 KiB
Plaintext
(defwindow bar0
|
|
:monitor 0
|
|
:geometry (geometry :y "0%"
|
|
:x "3px"
|
|
:height "70%"
|
|
:width "50px"
|
|
:anchor "center left")
|
|
:stacking "fg"
|
|
:exclusive true
|
|
(centerbox :orientation "v"
|
|
(workspaces)
|
|
(middle)
|
|
(bottom)
|
|
))
|
|
|
|
(defwindow bar1
|
|
:monitor 1
|
|
:geometry (geometry :y "0%"
|
|
:x "3px"
|
|
:height "70%"
|
|
:width "50px"
|
|
:anchor "center left")
|
|
:stacking "fg"
|
|
:exclusive true
|
|
(box :orientation "v" :space-evenly: false
|
|
(workspaces)
|
|
(bottom)
|
|
))
|
|
|
|
(defwidget middle []
|
|
(box :orientation "v"
|
|
:space-evenly false
|
|
:valign "center"
|
|
))
|
|
|
|
(defwidget bottom []
|
|
(box :orientation "v"
|
|
:space-evenly false
|
|
:valign "end"
|
|
(vpn)
|
|
(speaker)
|
|
(temperature)
|
|
(battery)
|
|
(box :class "boxed" (systray :orientation "v"))
|
|
(date)
|
|
(clock)
|
|
))
|
|
|
|
(defwidget workspaces []
|
|
(box :orientation "v"
|
|
:valign "start"
|
|
:class "workspaces"
|
|
:space-evenly: false
|
|
(for workspace in workspaces_json
|
|
(button :class 'workspace ${workspace.class}' (label :text '${workspace.id}'))
|
|
)))
|
|
|
|
(defwidget speaker []
|
|
(eventbox
|
|
:onhover "${EWW_CMD} update show_volume=true"
|
|
:onhoverlost "${EWW_CMD} update show_volume=false"
|
|
(box :orientation "v"
|
|
:class "boxed volbox ${show_volume ? "active" : ""}"
|
|
:space-evenly false
|
|
(revealer :transition "slidedown"
|
|
:reveal show_volume
|
|
(scale :orientation "v"
|
|
:class "volume"
|
|
:flipped true
|
|
:min 0
|
|
:max 100
|
|
:value volume_out
|
|
:onchange "pamixer --set-volume {} && volshow"
|
|
))
|
|
(label :text "VOL")
|
|
(revealer :transition "slideup"
|
|
:reveal {!show_volume}
|
|
(label :text volume_out)
|
|
)
|
|
)))
|
|
|
|
(defwidget vpn []
|
|
(button :valign "end"
|
|
:class "vpn boxed ${vpn_status.class}"
|
|
:onclick "${vpn_status.on_click}"
|
|
:tooltip "${vpn_status.tooltip}"
|
|
(label :text "${vpn_status.icon}")
|
|
))
|
|
|
|
(defwidget temperature []
|
|
(box :orientation "v"
|
|
:valign "end"
|
|
:class "battery boxed"
|
|
(label :text "TMP")
|
|
(label :text "99C")
|
|
))
|
|
|
|
(defwidget battery []
|
|
(box :orientation "v"
|
|
:valign "end"
|
|
:class "battery boxed"
|
|
:visible {current_battery != ""}
|
|
(label :text "BAT")
|
|
(label :text "${current_battery}%")
|
|
))
|
|
|
|
(defwidget date []
|
|
(tooltip :class "boxed date" :halign "fill"
|
|
(calendar :class "calendar")
|
|
|
|
(box :orientation "v" :hexpand true
|
|
(label :text current_month)
|
|
(label :text current_day)
|
|
)))
|
|
|
|
(defwidget clock []
|
|
(box :orientation "v"
|
|
:valign "end"
|
|
:class "clock boxed"
|
|
(label :text current_hour)
|
|
(label :text current_minute)
|
|
))
|
|
|
|
(defvar show_volume false)
|
|
(defpoll workspaces_json :interval "1s" "eww-workspaces")
|
|
(defpoll volume_out :interval "1s" "pamixer --get-volume")
|
|
(defpoll vpn_status :interval "1s" "mullvad-status")
|
|
(defpoll current_minute :interval "1s" "date +%M")
|
|
(defpoll current_hour :interval "1s" "date +%H")
|
|
(defpoll current_day :interval "60s" "date +%d")
|
|
(defpoll current_month :interval "60s" "date +%b")
|
|
(defpoll current_battery :interval "15s" "cat /sys/class/power_supply/BAT0/capacity")
|