Skip to content

Commit

Permalink
chore: change tab-title unseen_icon to circle + fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinSilvester committed Dec 24, 2024
1 parent 5a8fd92 commit 919ffc2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config/domains.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ return {
-- ref: https://wezfurlong.org/wezterm/config/lua/SshDomain.html
-- ssh_domains = {},
ssh_domains = {
-- yazi's image on Windows will only work if launched in WSL
-- yazi's image preview on Windows will only work if launched via ssh from WSL
{
name = 'wsl.ssh',
remote_address = 'localhost',
Expand Down
3 changes: 1 addition & 2 deletions events/tab-title.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ local EventOpts = require('utils.event_opts')

---@alias Event.TabTitleOptions { unseen_icon: 'circle' | 'numbered_circle' | 'numbered_box', hide_active_tab_unseen: boolean }

-- ---Setup options for the tab title

---Setup options for the tab title
local EVENT_OPTS = {}

---@type OptsSchema
Expand Down
2 changes: 1 addition & 1 deletion wezterm.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ require('utils.backdrops')

require('events.left-status').setup()
require('events.right-status').setup({ date_format = '%a %H:%M:%S' })
require('events.tab-title').setup({ hide_active_tab_unseen = true, unseen_icon = 'numbered_circle' })
require('events.tab-title').setup({ hide_active_tab_unseen = false, unseen_icon = 'circle' })
require('events.new-tab-button').setup()

return Config:init()
Expand Down

0 comments on commit 919ffc2

Please sign in to comment.