small updates to tabs, agy

This commit is contained in:
Anton Volnuhin 2026-05-22 03:11:32 +03:00
parent 771d30c136
commit fdc149e9ec
2 changed files with 8 additions and 1 deletions

View File

@ -8,10 +8,11 @@ def draw_tab(
) -> int:
orig_fg = screen.cursor.fg
orig_bg = screen.cursor.bg
default_bg = int(draw_data.default_bg)
left_sep, right_sep = ('', '')
def draw_sep(which: str) -> None:
screen.cursor.bg = int(draw_data.default_bg)
screen.cursor.bg = default_bg
screen.cursor.fg = orig_bg
screen.draw(which)
screen.cursor.bg = orig_bg
@ -41,4 +42,6 @@ def draw_tab(
draw_sep(right_sep)
draw_sep(' ')
screen.cursor.bg = default_bg
screen.cursor.fg = orig_fg
return screen.cursor.x

View File

@ -190,3 +190,7 @@ source ~/.orbstack/shell/init2.fish 2>/dev/null || :
# GitHub MCP plugin auth — pull PAT from keychain (avoids plaintext in config files)
set -gx GITHUB_PERSONAL_ACCESS_TOKEN (security find-generic-password -s codex-github-mcp-pat -w 2>/dev/null)
# Added by Antigravity CLI installer
set -gx PATH "/Users/anton/.local/bin" $PATH