mirror of
https://github.com/Trensa-Organization/hy3.git
synced 2025-03-15 18:53:40 +01:00
Add missing config options to README
This commit is contained in:
parent
1a490734ba
commit
9c0fda193d
1 changed files with 39 additions and 18 deletions
57
README.md
57
README.md
|
@ -12,7 +12,7 @@ i3 / sway like layout for [hyprland](https://github.com/hyprwm/hyprland).
|
||||||
- [x] Tab bar
|
- [x] Tab bar
|
||||||
- [x] Animations
|
- [x] Animations
|
||||||
- [x] Colors
|
- [x] Colors
|
||||||
- [ ] Window Titles
|
- [x] Window Titles
|
||||||
- [ ] No window shifitng bugs
|
- [ ] No window shifitng bugs
|
||||||
- [ ] Some convenience dispatchers not found in i3 or sway
|
- [ ] Some convenience dispatchers not found in i3 or sway
|
||||||
|
|
||||||
|
@ -44,29 +44,50 @@ plugin {
|
||||||
# disable gaps when only one window is onscreen
|
# disable gaps when only one window is onscreen
|
||||||
no_gaps_when_only = <bool>
|
no_gaps_when_only = <bool>
|
||||||
|
|
||||||
# tab group settings
|
# tab group settings
|
||||||
tabs {
|
tabs {
|
||||||
# height of the tab bar
|
# height of the tab bar
|
||||||
height = <int>
|
height = <int>
|
||||||
|
|
||||||
# padding between the tab bar and its focused node
|
# padding between the tab bar and its focused node
|
||||||
padding = <int>
|
padding = <int>
|
||||||
|
|
||||||
# active tab bar segment color
|
# the tab bar should animate in/out from the top instead of below the window
|
||||||
col.active = <color>
|
from_top = <bool>
|
||||||
|
|
||||||
# urgent tab bar segment color
|
# render the window title on the bar
|
||||||
col.urgent = <color>
|
render_text = <bool>
|
||||||
|
|
||||||
# inactive tab bar segment color
|
# rounding of tab bar corners
|
||||||
col.inactive = <color>
|
rounding = <int>
|
||||||
|
|
||||||
# the tab bar should animate in/out from the top instead of below the window
|
# font to render the window title with
|
||||||
from_top = <bool>
|
text_font = <string>
|
||||||
|
|
||||||
# rounding of tab bar corners
|
# height of the window title
|
||||||
rounding = <int>
|
text_height = <int>
|
||||||
}
|
|
||||||
|
# left padding of the window title
|
||||||
|
text_padding = <int>
|
||||||
|
|
||||||
|
# active tab bar segment color
|
||||||
|
col.active = <color>
|
||||||
|
|
||||||
|
# urgent tab bar segment color
|
||||||
|
col.urgent = <color>
|
||||||
|
|
||||||
|
# inactive tab bar segment color
|
||||||
|
col.inactive = <color>
|
||||||
|
|
||||||
|
# active tab bar text color
|
||||||
|
col.text.active = <color>
|
||||||
|
|
||||||
|
# urgent tab bar text color
|
||||||
|
col.text.urgent = <color>
|
||||||
|
|
||||||
|
# inactive tab bar text color
|
||||||
|
col.text.inactive = <color>
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
Loading…
Add table
Reference in a new issue