Skip to content

Commit

Permalink
feat: compress image
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinSilvester committed Oct 13, 2024
1 parent e9473cb commit 4d3ff4d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Binary file modified backdrops/angry-samurai.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions events/tab-title.lua
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ end
local tab_list = {}

M.setup = function()
wezterm.GLOBAL.enable_tab_bar = true
local enable_tab_bar = true

-- CUSTOM EVENT
-- Event listener to manually update the tab name
Expand Down Expand Up @@ -220,8 +220,8 @@ M.setup = function()
-- CUSTOM EVENT
-- Event listener to manually update the tab name
wezterm.on('tabs.toggle-tab-bar', function(window, _pane)
wezterm.GLOBAL.enable_tab_bar = not wezterm.GLOBAL.enable_tab_bar
window:set_config_overrides({ enable_tab_bar = wezterm.GLOBAL.enable_tab_bar })
enable_tab_bar = not enable_tab_bar
window:set_config_overrides({ enable_tab_bar = enable_tab_bar })
end)

-- BUILTIN EVENT
Expand Down

0 comments on commit 4d3ff4d

Please sign in to comment.