Skip to content

Commit

Permalink
🔧 Modified .zshrc to only run hyfetch in Kitty windows (i.e. not vscode)
Browse files Browse the repository at this point in the history
  • Loading branch information
ambertia committed Oct 2, 2024
1 parent aa9fbf0 commit 5ccfd68
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,9 @@ eval "$(starship init zsh)"
# Created by `pipx` on 2024-06-01 17:52:50
export PATH="$PATH:/home/amber/.local/bin"

# Start with hyfetch
hyfetch
# Start with hyfetch in Kitty windows (i.e., not VSCode)
if [[ $TERM == "xterm-kitty" ]]; then
hyfetch
else
:
fi

0 comments on commit 5ccfd68

Please sign in to comment.