-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2037 from gaelicWizard/theme/brunton
theme/brunton: `shellcheck`
- Loading branch information
Showing
1 changed file
with
17 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,31 @@ | ||
# shellcheck shell=bash | ||
# shellcheck disable=SC2034 # Expected behavior for themes. | ||
# shellcheck disable=SC2154 #TODO: fix these all. | ||
|
||
SCM_THEME_PROMPT_PREFIX="" | ||
SCM_THEME_PROMPT_SUFFIX="" | ||
|
||
SCM_THEME_PROMPT_DIRTY=" ${bold_red}✗${normal}" | ||
SCM_THEME_PROMPT_CLEAN=" ${bold_green}✓${normal}" | ||
SCM_GIT_CHAR="${bold_green}±${normal}" | ||
SCM_SVN_CHAR="${bold_cyan}⑆${normal}" | ||
SCM_HG_CHAR="${bold_red}☿${normal}" | ||
SCM_THEME_PROMPT_DIRTY=" ${bold_red?}✗${normal?}" | ||
SCM_THEME_PROMPT_CLEAN=" ${bold_green?}✓${normal?}" | ||
SCM_GIT_CHAR="${bold_green?}±${normal?}" | ||
SCM_SVN_CHAR="${bold_cyan?}⑆${normal?}" | ||
SCM_HG_CHAR="${bold_red?}☿${normal?}" | ||
|
||
is_vim_shell() { | ||
if [ -n "$VIMRUNTIME" ]; then | ||
echo "[${cyan}vim shell${normal}]" | ||
function is_vim_shell() { | ||
if [[ -n "${VIMRUNTIME:-}" ]]; then | ||
echo "[${cyan?}vim shell${normal?}]" | ||
fi | ||
} | ||
|
||
prompt() { | ||
SCM_PROMPT_FORMAT=' %s (%s)' | ||
PS1="${white}${background_blue} \u${normal}${background_blue}@${red}${background_blue}\h $(clock_prompt) ${reset_color}${normal} $(battery_charge)\n${bold_black}${background_white} \w ${normal}$(scm_prompt)$(is_vim_shell)\n${white}>${normal} " | ||
function prompt() { | ||
local SCM_PROMPT_FORMAT=' %s (%s)' clock_prompt battery_charge scm_prompt is_vim_shell | ||
clock_prompt="$(clock_prompt)" | ||
battery_charge="$(battery_charge)" | ||
scm_prompt="$(scm_prompt)" | ||
is_vim_shell="$(is_vim_shell)" | ||
PS1="${white?}${background_blue?} \u${normal?}${background_blue?}@${red?}${background_blue?}\h ${clock_prompt} ${reset_color?}${normal?} ${battery_charge}\n${bold_black?}${background_white?} \w ${normal?}${scm_prompt}${is_vim_shell}\n${white?}>${normal?} " | ||
} | ||
|
||
THEME_CLOCK_COLOR=${THEME_CLOCK_COLOR:-"$blue$background_white"} | ||
THEME_CLOCK_FORMAT=${THEME_CLOCK_FORMAT:-" %H:%M:%S"} | ||
: "${THEME_CLOCK_COLOR:=${blue?}${background_white?}}" | ||
: "${THEME_CLOCK_FORMAT:=" %H:%M:%S"}" | ||
|
||
safe_append_prompt_command prompt |