1

launch info

This commit is contained in:
Evan Pratten 2022-09-27 10:35:38 -04:00
parent ce71de8abd
commit 4834741d75
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)"