1

windows-specific line

This commit is contained in:
Evan Pratten 2023-10-19 11:32:46 -04:00
parent d3cbce8c25
commit 39205aee76
2 changed files with 10 additions and 6 deletions

View File

@ -1,12 +1,12 @@
# This is a somewhat hacky bashrc that is used to provide some of the conveniences from my zshrc on machines that I can't get zsh on
export EWCONFIG_ROOT="$HOME/.config/ewconfig"
# Load macros
. $EWCONFIG_ROOT/configs/shells/bash/macros.sh
# Show some host info
. $EWCONFIG_ROOT/configs/shells/bash/info.sh
# Load macros
. $EWCONFIG_ROOT/configs/shells/bash/macros.sh
# I always want my ~/bin to be in my PATH
export PATH="$HOME/bin:$PATH"
export PATH="$EWCONFIG_ROOT/configs/scripts:$PATH"

View File

@ -9,10 +9,14 @@ elif [ -n "$ZSH_VERSION" ]; then
green="$fg[green]"
fi
# If `uname -s` is a BSD
if [ $(uname -s | grep -c BSD) -gt 0 ]; then
# Different OSes have different ways of displaying info
if [ $(uname -s | grep -c BSD) -gt 0 ]; then # BSD
echo -e "${green}Platform:$reset_color $(uname -s) $(uname -r) $(uname -p)"
else # Linux
elif [ $(uname -s | grep -c Msys) -gt 0 ]; then # Windows
echo -e "${green}Platform:$reset_color $(uname -o) $(uname -r)"
else # Linux-y things
echo -e "${green}Platform:$reset_color $(uname -o) $(uname -r)"
echo -e "${green}Uptime:$reset_color $(uptime -p)"
fi