diff options
author | June McEnroe <june@causal.agency> | 2019-11-20 16:24:44 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2019-11-20 16:25:17 -0500 |
commit | 49ccb9e11ffd89d707eb3efe4549629a12ed5a0a (patch) | |
tree | 301d79f110d4a6f4246b490ee8cc390c0c83b163 /home/.config/1sh | |
parent | Move pounce to top of causal.agency (diff) | |
download | src-49ccb9e11ffd89d707eb3efe4549629a12ed5a0a.tar.gz src-49ccb9e11ffd89d707eb3efe4549629a12ed5a0a.zip |
Remove color from 1sh prompts
The weird PSlit behaviour just causes more weirdness than it's worth. The color I was using was barely different anyway.
Diffstat (limited to '')
-rw-r--r-- | home/.config/1sh/env.sh | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/home/.config/1sh/env.sh b/home/.config/1sh/env.sh index 105d80ed..362631e2 100644 --- a/home/.config/1sh/env.sh +++ b/home/.config/1sh/env.sh @@ -43,14 +43,6 @@ PS0=$'\n' PS1='\$ ' RPS1="${SSH_CLIENT:+\h:}\w" -af0=$(tput setaf 0 || tput AF 0) -af7=$(tput setaf 7 || tput AF 7) -sgr0=$(tput sgr0 || tput me) tsl=$'\e]0;' -fsl=$'\a' - -# FIXME: Trailing PSlit sequence gets dropped. -PSlit=$'\1' -PS1="${PSlit}${af7}${PSlit}${PS1% }${PSlit}${sgr0}${PSlit} " -RPS1="${PSlit}${af0}${PSlit}# ${PSlit}${af7}${PSlit}${RPS1}${PSlit}${sgr0}${PSlit}" +fsl=$'\e\\' [ "${TERM%-*}" = 'xterm' ] && PS0="${tsl}${SSH_CLIENT:+\h:}\W${fsl}${PS0}" |