1
This commit is contained in:
Evan Pratten 2022-10-04 22:15:23 -04:00
commit 7074e71e08
2 changed files with 5 additions and 0 deletions

View File

@ -13,5 +13,8 @@ if [ -f $EWCONFIG_ROOT/configs/zsh/by_host/$HOSTNAME.sh ]; then
. $EWCONFIG_ROOT/configs/zsh/by_host/$HOSTNAME.sh
fi
# Show some host info
. $EWCONFIG_ROOT/configs/zsh/info.sh
# I always want my ~/bin to be in my PATH
export PATH="$HOME/bin:$PATH"

2
configs/zsh/info.sh Normal file
View File

@ -0,0 +1,2 @@
echo "$fg[$HOST_COLOR]Platform:$reset_color $(uname -o) $(uname -r)"
echo "$fg[$HOST_COLOR]Uptime:$reset_color $(uptime -p)"