pztrn
da3e638cf9
* 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.
13 lines
347 B
Bash
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
|