Candyrice/yuck/panel/panel_workspaces/leftwm_ws.yuck

31 lines
775 B
Plaintext
Raw Permalink Normal View History

2024-12-12 15:18:29 +00:00
;This widget and code are specific for LeftWM
2024-12-12 13:56:26 +00:00
2024-12-12 15:18:29 +00:00
; Icons for individual tags
2024-12-12 13:56:26 +00:00
(defwidget panel_leftwm_ws_ico [h tag]
(button
:halign "center"
:valign "center"
:height "${h}"
:width "24"
2024-12-12 13:56:26 +00:00
:active true
:class "panel_ws_ico ${tag.mine ? 'panel_ws_ico_cur' : 'panel_ws_ico_notcur'} ${tag.busy ? 'panel_ws_ico_act' : 'panel_ws_ico_inact'}"
:onclick "leftwm-command \"SendWorkspaceToTag 0 ${tag.index}\""
2024-12-12 15:18:29 +00:00
:timeout "300ms"
2024-12-12 13:56:26 +00:00
{tag.mine ? '' : tag.busy ? '' : ''}
)
)
2024-12-12 15:18:29 +00:00
; LeftWM work-space widget showing all tags
2024-12-12 13:56:26 +00:00
(defwidget panel_ws_leftwm [h]
(box
:class "panel_workspaces_widg"
:halign "center"
:valign "center"
:height "${h}"
:active true
(for tag in '${leftwm_state.workspaces[0].tags}'
2024-12-12 15:18:29 +00:00
(panel_leftwm_ws_ico :h "${h}" :tag {tag})
2024-12-12 13:56:26 +00:00
)
)
)