aboutsummaryrefslogtreecommitdiff
path: root/bash
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2022-03-26 15:50:33 +1300
committerTom Ryder <tom@sanctum.geek.nz>2022-03-26 17:14:47 +1300
commit55fe20a5ef1315bbe175330b8e4633e855393d14 (patch)
treef78966e5be4a0b767a9372605c535d4efdf90764 /bash
parentCorrect capitalisation for LibreWolf (diff)
downloaddotfiles-55fe20a5ef1315bbe175330b8e4633e855393d14.tar.gz
dotfiles-55fe20a5ef1315bbe175330b8e4633e855393d14.zip
Include prompt prefix when using Torsocks
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}'