diff --git a/README.md b/README.md index 2f62c93..7ab51b4 100644 --- a/README.md +++ b/README.md @@ -123,88 +123,89 @@ You can use `hy3:makegroup` to create a new split. The [dispatcher list](#dispatcher-list) and [config fields](#config-fields) sections have all the configuration options, and some explanation as to what they do. +[The hyprland config in my dots](https://git.outfoxxed.me/outfoxxed/nixnew/src/branch/master/modules/hyprland/hyprland.conf) can also be used as a reference. ### Config fields ```conf plugin { hy3 { # disable gaps when only one window is onscreen - no_gaps_when_only = + no_gaps_when_only = # default: false # policy controlling what happens when a node is removed from a group, # leaving only a group # 0 = remove the nested group # 1 = keep the nested group - # 2 = keep the nested group only if its parent is a tab group (default) - node_collapse_policy = + # 2 = keep the nested group only if its parent is a tab group + node_collapse_policy = # default: 2 # offset from group split direction when only one window is in a group - group_inset = + group_inset = # default: 10 # tab group settings tabs { # height of the tab bar - height = + height = # default: 15 # padding between the tab bar and its focused node - padding = + padding = # default: 5 # the tab bar should animate in/out from the top instead of below the window - from_top = - - # render the window title on the bar - render_text = + from_top = # default: false # rounding of tab bar corners - rounding = + rounding = # default: 3 + + # render the window title on the bar + render_text = # default: true # font to render the window title with - text_font = + text_font = # default: Sans # height of the window title - text_height = + text_height = # default: 8 # left padding of the window title - text_padding = + text_padding = # default: 3 # active tab bar segment color - col.active = + col.active = # default: 0xff32b4ff # urgent tab bar segment color - col.urgent = + col.urgent = # default: 0xffff4f4f # inactive tab bar segment color - col.inactive = + col.inactive = # default: 0x80808080 # active tab bar text color - col.text.active = + col.text.active = # default: 0xff000000 # urgent tab bar text color - col.text.urgent = + col.text.urgent = # default: 0xff000000 # inactive tab bar text color - col.text.inactive = + col.text.inactive = # default: 0xff000000 } # autotiling settings autotile { # enable autotile - enable = + enable = # default: false # make autotile-created groups ephemeral - ephemeral_groups = + ephemeral_groups = # default: true # if a window would be squished smaller than this width, a vertical split will be created # -1 = never automatically split vertically # 0 = always automatically split vertically # = pixel height to split at - trigger_width = + trigger_width = # default: 0 # if a window would be squished smaller than this height, a horizontal split will be created # -1 = never automatically split horizontally # 0 = always automatically split horizontally # = pixel height to split at - trigger_height = + trigger_height = # default: 0 } } }