summaryrefslogtreecommitdiff
path: root/bash-prompt.sh
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2024-05-15 07:00:45 +0300
committerThanos Apollo <[email protected]>2024-05-15 07:00:45 +0300
commitb3ac4045665aa3158c67271d88822bc66ea29451 (patch)
tree8c1d79d3c91c24c110e7e739eaf57bf8fc3892fe /bash-prompt.sh
parentaaf698c20699a41489b32a28477677d1135da728 (diff)
shells: use default bash config, only provide bash prompt
Diffstat (limited to 'bash-prompt.sh')
-rw-r--r--bash-prompt.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/bash-prompt.sh b/bash-prompt.sh
new file mode 100644
index 0000000..438b8be
--- /dev/null
+++ b/bash-prompt.sh
@@ -0,0 +1,7 @@
+
+## Prompt
+if ${use_color} ; then
+ PS1='$(git branch --show-current 2>/dev/null)'; PS1='\n\[\e[38;5;102;2;3m\]\u\[\e[0m\]@\[\e[38;5;153;2;3m\]\h\n\[\e[0;38;5;226m\]\w \[\e[38;5;75;3m\]${PS1_CMD1}\n\[\e[0;38;5;198m\]λ \[\e[0m\]'
+else
+ PS1+='\u@\h \w \$ '
+fi