small updates to tabs, agy
This commit is contained in:
parent
771d30c136
commit
fdc149e9ec
@ -8,10 +8,11 @@ def draw_tab(
|
|||||||
) -> int:
|
) -> int:
|
||||||
orig_fg = screen.cursor.fg
|
orig_fg = screen.cursor.fg
|
||||||
orig_bg = screen.cursor.bg
|
orig_bg = screen.cursor.bg
|
||||||
|
default_bg = int(draw_data.default_bg)
|
||||||
left_sep, right_sep = ('', '')
|
left_sep, right_sep = ('', '')
|
||||||
|
|
||||||
def draw_sep(which: str) -> None:
|
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.cursor.fg = orig_bg
|
||||||
screen.draw(which)
|
screen.draw(which)
|
||||||
screen.cursor.bg = orig_bg
|
screen.cursor.bg = orig_bg
|
||||||
@ -41,4 +42,6 @@ def draw_tab(
|
|||||||
draw_sep(right_sep)
|
draw_sep(right_sep)
|
||||||
draw_sep(' ')
|
draw_sep(' ')
|
||||||
|
|
||||||
|
screen.cursor.bg = default_bg
|
||||||
|
screen.cursor.fg = orig_fg
|
||||||
return screen.cursor.x
|
return screen.cursor.x
|
||||||
|
|||||||
@ -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)
|
# 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)
|
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
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user