From 265144d957714506d1c59cf6d70634e7dd183974 Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Sun, 16 Jun 2024 18:31:52 -0600 Subject: [PATCH] update style of wezterm tab bar --- modules/common/applications/wezterm.nix | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/modules/common/applications/wezterm.nix b/modules/common/applications/wezterm.nix index 031f3d3..840865c 100644 --- a/modules/common/applications/wezterm.nix +++ b/modules/common/applications/wezterm.nix @@ -112,14 +112,29 @@ bottom = 0, }, + font = wezterm.font 'VictorMono Nerd Font', + font_size = 18.0, + + -- Tab Bar + window_frame = { + font = wezterm.font 'VictorMono Nerd Font', + font_size = 16.0, + }, + + colors = { + tab_bar = { + active_tab = { + bg_color = '${config.theme.colors.base00}', + fg_color = '${config.theme.colors.base04}', + }, + }, + }, + -- Disable audio audible_bell = "Disabled", initial_rows = 80, initial_cols = 200, - - font = wezterm.font 'VictorMono Nerd Font', - font_size = 18.0, } ''; };