From a3ec125585adf773937c7cb17e09fd649b811885 Mon Sep 17 00:00:00 2001 From: Dennis Date: Wed, 27 Aug 2025 21:37:58 +0200 Subject: [PATCH] fixes spaces in wezterm tab bar --- modules/wezterm/config/tab_bar.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/wezterm/config/tab_bar.lua b/modules/wezterm/config/tab_bar.lua index 4b8e6e2..d2d7f70 100644 --- a/modules/wezterm/config/tab_bar.lua +++ b/modules/wezterm/config/tab_bar.lua @@ -13,8 +13,8 @@ local function get_elements(for_window) { Text = "bat:" .. helpers.get_primary_battery_state() .. " " }, { Background = { Color = theme.colors().tab_bar.active_tab.bg_color } }, { Foreground = { Color = theme.colors().tab_bar.active_tab.fg_color } }, - { Text = helpers.get_zoomed_status(for_window) .. " " }, - { Text = "session >> " .. for_window:active_workspace() .. " " }, + { Text = " " .. helpers.get_zoomed_status(for_window) .. " " }, + { Text = "session >> " .. for_window:active_workspace() .. " " }, } end