dotfiles/zsh/platform.zsh

7 lines
181 B
Bash
Raw Normal View History

export PLATFORM="unkown"
unamestr=$(uname -s)
if [[ "$unamestr" == 'Linux' ]]; then
export PLATFORM="linux"
elif [[ "$unamestr" == 'Darwin' ]]; then
export PLATFORM="osx"
fi