aboutsummaryrefslogtreecommitdiff
path: root/bash
diff options
context:
space:
mode:
Diffstat (limited to 'bash')
-rw-r--r--bash/bashrc.d/prompt.bash7
1 files changed, 7 insertions, 0 deletions
diff --git a/bash/bashrc.d/prompt.bash b/bash/bashrc.d/prompt.bash
index f9678f20..a2066386 100644
--- a/bash/bashrc.d/prompt.bash
+++ b/bash/bashrc.d/prompt.bash
@@ -30,6 +30,13 @@ prompt() {
(*) PS1=bash:$PS1 ;;
esac
+ # If torsocks is on, report that
+ case $LD_PRELOAD in
+ (*/libtorsocks.so:|*/libtorsocks.so)
+ PS1='[Tor]'$PS1
+ ;;
+ esac
+
# Add prefix and suffix
PS1='${PROMPT_PREFIX}'$PS1'${PROMPT_SUFFIX}'