Files
dotfiles/tmux/powerline/config/shell.sh
2019-01-12 18:22:02 +01:00

21 lines
556 B
Bash

# Shell Configuration
# vi: sw=8 ts=8 noet
ostype() { echo $OSTYPE | tr '[A-Z]' '[a-z]'; }
export SHELL_PLATFORM='unknown'
case "$(ostype)" in
*'linux'* ) SHELL_PLATFORM='linux' ;;
*'darwin'* ) SHELL_PLATFORM='osx' ;;
*'bsd'* ) SHELL_PLATFORM='bsd' ;;
esac
shell_is_linux() { [[ $SHELL_PLATFORM == 'linux' || $SHELL_PLATFORM == 'bsd' ]]; }
shell_is_osx() { [[ $SHELL_PLATFORM == 'osx' ]]; }
shell_is_bsd() { [[ $SHELL_PLATFORM == 'bsd' || $SHELL_PLATFORM == 'osx' ]]; }
export -f shell_is_linux
export -f shell_is_osx
export -f shell_is_bsd