@karim @codewiz Found how to turn off the tab bar if there is only one tab https://wezfurlong.org/wezterm/config/lua/config/hide_tab_bar_if_only_one_tab.html
In my ~/.config/wezterm/wezterm.lua file...
```
local wezterm = require("wezterm")
return {
font = wezterm.font("JetBrains Mono"),
color_scheme = "Dracula",
hide_tab_bar_if_only_one_tab = true,
}
```