zsh-config/zsh/40-prompt.zsh
pztrn da3e638cf9 * Fixed lsmod calling on systems different from Linux.
* fbterm check now runs only on Linux and if lsmod is available.
* Added OS and OS_RELEASE vars.
* Themes now should also ends with .zsh.
2015-03-01 09:57:58 +05:00

13 lines
347 B
Bash

# Load user desired prompt.
autoload -Uz promptinit
promptinit
if [ "${PROMPT_THEME}" != "" ]; then
if [ -f ${CONFIG_PATH}/zsh/prompts/${PROMPT_THEME}.zsh ]; then
source ${CONFIG_PATH}/zsh/prompts/${PROMPT_THEME}.zsh
else
echo "Theme \"${PROMPT_THEME}\" could not be loaded. File does not exist or unreadable."
fi
fi