minor changes
This commit is contained in:
parent
91482ee4b8
commit
833bfad473
4
eww/yuck/dock/dock_window.yuck
Normal file
4
eww/yuck/dock/dock_window.yuck
Normal file
@ -0,0 +1,4 @@
|
||||
(defwindow dock
|
||||
|
||||
|
||||
)
|
@ -1,37 +1,38 @@
|
||||
(defwidget osd_widg [osdtype osd_value]
|
||||
(overlay
|
||||
:class "osd_progbar_container ${osdtype}"
|
||||
:active false
|
||||
:halign "fill"
|
||||
:height 50
|
||||
:width 200
|
||||
(box
|
||||
:class "osd_prog_bg"
|
||||
:class "osd_progbar_container ${osdtype}"
|
||||
:active false
|
||||
:halign "fill"
|
||||
:valign "fill"
|
||||
:height 50
|
||||
:width 200
|
||||
)
|
||||
(box
|
||||
:class "osd_prog_filled ${osd_value.status}"
|
||||
:height 50
|
||||
:width "${(200/100)*osd_value.level}"
|
||||
:halign "start"
|
||||
:valign "fill"
|
||||
)
|
||||
(label
|
||||
:class "osd_value"
|
||||
:height 35
|
||||
:halign "end"
|
||||
:valign "center"
|
||||
:text "${osd_value.level}%"
|
||||
)
|
||||
(label
|
||||
:class "osd_icon"
|
||||
:height 35
|
||||
:halign "start"
|
||||
:valign "center"
|
||||
:text "${osd_value.icon}"
|
||||
)
|
||||
|
||||
(box
|
||||
:class "osd_prog_bg"
|
||||
:halign "fill"
|
||||
:valign "fill"
|
||||
:height 50
|
||||
:width 200
|
||||
)
|
||||
(box
|
||||
:class "osd_prog_filled ${osd_value.status}"
|
||||
:height 50
|
||||
:width "${(200/100)*osd_value.level}"
|
||||
:halign "start"
|
||||
:valign "fill"
|
||||
)
|
||||
(label
|
||||
:class "osd_value"
|
||||
:height 35
|
||||
:halign "end"
|
||||
:valign "center"
|
||||
:text "${osd_value.level}%"
|
||||
)
|
||||
(label
|
||||
:class "osd_icon"
|
||||
:height 35
|
||||
:halign "start"
|
||||
:valign "center"
|
||||
:text "${osd_value.icon}"
|
||||
)
|
||||
)
|
||||
)
|
@ -2,22 +2,24 @@
|
||||
|
||||
(defwindow osd [osdtype]
|
||||
:geometry
|
||||
(geometry :x "-1%"
|
||||
:y "4.5%"
|
||||
:width "10%"
|
||||
:height "4%"
|
||||
:anchor "top right"
|
||||
)
|
||||
:halign "end"
|
||||
:valign "end"
|
||||
(geometry
|
||||
:x "-1%"
|
||||
:y "4.5%"
|
||||
:width "10%"
|
||||
:height "4%"
|
||||
:anchor "top right"
|
||||
)
|
||||
:halign "end"
|
||||
:valign "end"
|
||||
:monitor 0
|
||||
:stacking "fg"
|
||||
:windowtype "dock"
|
||||
:wm-ignore true
|
||||
|
||||
(osd_widg
|
||||
:osdtype "${osdtype}"
|
||||
:osd_value {osdtype=="osd_vol" ?
|
||||
:osdtype "${osdtype}"
|
||||
:osd_value
|
||||
{osdtype=="osd_vol" ?
|
||||
"${vol}" : osdtype=="osd_bri" ?
|
||||
"${brit}" : "${battery}"
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user