From cda31a2927c8d4fe9cb54f1d381907229cd9c6cd Mon Sep 17 00:00:00 2001 From: amnweb <16545063+forumwt@users.noreply.github.com> Date: Mon, 23 Dec 2024 00:02:58 +0100 Subject: [PATCH] docs(configuration): add hide_taskbar option to configuration documentation Updated the Configuration.md file to include the new `hide_taskbar` boolean option, which allows users to hide the Windows taskbar from all screens. This addition aims to enhance user experience by providing better control over the taskbar visibility. --- docs/Configuration.md | 2 +- docs/widgets/(Widget)-Home.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/Configuration.md b/docs/Configuration.md index 0eb2ab6..f88df01 100644 --- a/docs/Configuration.md +++ b/docs/Configuration.md @@ -15,7 +15,7 @@ All valid options for the widgets are listed on the widgets page. | `watch_stylesheet` | boolean | `true` | Reload bar when style is changed. | | `watch_config` | boolean | `true` | Reload bar when config is changed. | | `debug` | boolean | `false` | Enable debug mode to see more logs | - +| `hide_taskbar` | boolean | `false` | Hide Windows taskbar from all screens. Note: for better performance set taskbar auto-hide. | ## Komorebi settings for tray menu diff --git a/docs/widgets/(Widget)-Home.md b/docs/widgets/(Widget)-Home.md index fe5d976..ceea96e 100644 --- a/docs/widgets/(Widget)-Home.md +++ b/docs/widgets/(Widget)-Home.md @@ -9,6 +9,7 @@ | `blur` | boolean | `true` | Blur background. | | `alignment` | string | `"left"` | Alignment of the menu. Possible values: `"left"`, `"center"`, `"right"`. | | `direction` | string | `"down"` | Direction of the menu. Possible values: `"up"`, `"down"`. | +| `distance` | int | `6` | Distance from the top or bottom edge of the bar. | | `menu_labels` | dict | `{'shutdown': 'Shutdown', 'restart': 'Restart', 'logout': 'Logout', 'lock': 'Lock', 'sleep': 'Sleep', 'system': 'System Settings', 'about': 'About This PC', 'task_manager': 'Task Manager'}` | Custom label names for system and power items. | | `container_padding` | dict | `{'top': 0, 'left': 0, 'bottom': 0, 'right': 0}` | Explicitly set padding inside widget container. | @@ -55,6 +56,7 @@ home: - **blur**: Blur background. Enabling this option will blur the background and add default OS radius and border to the widget. - **alignment**: Alignment of the menu. Possible values: `"left"`, `"center"`, `"right"`. - **direction**: Direction of the menu. Possible values: `"up"`, `"down"`. +- **distance**: Distance from the top or bottom edge of the bar. Use this option to set the distance from the top or bottom edge of the bar. You can set the distance in pixels. - **menu_labels**: Custom label names for system and power items. Use this option to change the default labels for system and power menu items. - **container_padding**: Explicitly set padding inside widget container. Use this option to set padding inside the widget container. You can set padding for top, left, bottom and right sides of the widget container.