mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-24 17:57:29 -05:00
13 lines
368 B
Plaintext
Executable File
13 lines
368 B
Plaintext
Executable File
(defwidget dynamiccenter_widget []
|
|
(box
|
|
:orientation "v" :space-evenly false
|
|
(box ; Module 1: Volume, Brightness
|
|
:class "dynamic-module${(osd_vol || osd_bright) ? '' : '-hidetop'}"
|
|
(osd_widget)
|
|
)
|
|
(box ; Module 2: Workspaces
|
|
:class "dynamic-module${(osd_vol || osd_bright) ? '-hidebottom' : ''}"
|
|
(workspaces_widget)
|
|
)
|
|
)
|
|
) |