this repo has no description

[zsh] use the full fortune path

Changed files
+3 -3
+1 -1
dot_zshenv
··· 17 17 export GOPATH=$HOME/.go 18 18 path=($HOME/.go/bin $path) 19 19 20 - # uv bins 20 + # uv tools 21 21 path=($HOME/.local/bin $path)
+2 -2
dot_zshrc
··· 5 5 [[ ! -v TERM ]] && return 0 6 6 7 7 # Start every shell with a random my little horse ebooks 8 - if [[ -n "$TERM" ]] && [[ $TERM_PROGRAM != "vscode" ]]; then 8 + if [[ $TERM_PROGRAM != "vscode" ]]; then 9 9 FORTUNES=$BREW_PREFIX/share/games/fortunes 10 - echo; fortune $FORTUNES/horse_ebooks $FORTUNES/weird_twitter | ponysay -b unicode 2>/dev/null | pr -o 3 -t; echo 10 + echo; $BREW_PREFIX/bin/fortune $FORTUNES/horse_ebooks $FORTUNES/weird_twitter | ponysay -b unicode 2>/dev/null | pr -o 3 -t; echo 11 11 fi 12 12 13 13 # Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.