We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5c7fe12 + 7f15bc1 commit eef53a0Copy full SHA for eef53a0
mods/shell.go
@@ -3,7 +3,7 @@ package mods
3
var zsh = `
4
setopt PROMPT_SUBST
5
NW=$'\n'
6
-PROMPT='$(/usr/local/bin/shelby info)${NW}%(?.%F{green}.%F{red})❯%f'`
+PROMPT='$(shelby info)${NW}%(?.%F{green}.%F{red})❯%f'`
7
8
var bash = `prompt_shelby_load() {
9
if [ $? != 0 ]; then
@@ -12,7 +12,7 @@ else
12
local prompt_symbol="\[\e[0;92m\]❯\[\e[0m\]"
13
fi
14
15
-PS1="$(/usr/local/bin/shelby info)\n${prompt_symbol} "
+PS1="$(shelby info)\n${prompt_symbol} "
16
}
17
PROMPT_COMMAND=prompt_shelby_load
18
`
0 commit comments