From 9c0fda193da334df6eb23c613f997c3499a9ce98 Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Sun, 4 Jun 2023 17:37:27 -0700 Subject: [PATCH] Add missing config options to README --- README.md | 57 +++++++++++++++++++++++++++++++++++++------------------ 1 file changed, 39 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index f2fd39a..17e2f58 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ i3 / sway like layout for [hyprland](https://github.com/hyprwm/hyprland). - [x] Tab bar - [x] Animations - [x] Colors - - [ ] Window Titles + - [x] Window Titles - [ ] No window shifitng bugs - [ ] Some convenience dispatchers not found in i3 or sway @@ -44,29 +44,50 @@ plugin { # disable gaps when only one window is onscreen no_gaps_when_only = - # tab group settings - tabs { - # height of the tab bar - height = + # tab group settings + tabs { + # height of the tab bar + height = - # padding between the tab bar and its focused node - padding = + # padding between the tab bar and its focused node + padding = - # active tab bar segment color - col.active = + # the tab bar should animate in/out from the top instead of below the window + from_top = - # urgent tab bar segment color - col.urgent = + # render the window title on the bar + render_text = - # inactive tab bar segment color - col.inactive = + # rounding of tab bar corners + rounding = - # the tab bar should animate in/out from the top instead of below the window - from_top = + # font to render the window title with + text_font = - # rounding of tab bar corners - rounding = - } + # height of the window title + text_height = + + # left padding of the window title + text_padding = + + # active tab bar segment color + col.active = + + # urgent tab bar segment color + col.urgent = + + # inactive tab bar segment color + col.inactive = + + # active tab bar text color + col.text.active = + + # urgent tab bar text color + col.text.urgent = + + # inactive tab bar text color + col.text.inactive = + } } } ```