feat(bar): floating center area for widgets

* Added a new floating area at the center of the bar
* Optional center widgets config, fixed spacing on the center widget
* Turning transparency on by default
This commit is contained in:
CtByte
2024-11-27 05:14:01 +01:00
committed by GitHub
parent 6f00c527a4
commit 46b81e4372
4 changed files with 52 additions and 2 deletions
+2
View File
@@ -37,6 +37,8 @@ pub struct KomobarConfig {
pub grouping: Option<Grouping>,
/// Left side widgets (ordered left-to-right)
pub left_widgets: Vec<WidgetConfig>,
/// Center widgets (ordered left-to-right)
pub center_widgets: Option<Vec<WidgetConfig>>,
/// Right side widgets (ordered left-to-right)
pub right_widgets: Vec<WidgetConfig>,
}