-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.env.sh
More file actions
23 lines (17 loc) · 787 Bytes
/
Copy pathexample.env.sh
File metadata and controls
23 lines (17 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
# shellcheck disable=SC2034
# Prompt theme: simple | pretty | minimalistic | involved
BPP_THEME="pretty"
# Prompt icons: nerd_font | emoji | none
BPP_ICONS="nerd_font"
# Prompt separators: powerline | unicode | none
BPP_SEPARATORS="powerline"
# Status icon after each command: enable | disable
BPP_STATUS="enable"
# Terminal window title (supports variables and command substitution)
BPP_TITLE="[Pretty Bash] $(whoami)@$(hostname): $(pwd)"
# RGB colors in format "R;G;B" (each component: 0–255)
BPP_FG_MAIN_RGB="255;255;255" # Foreground text color
BPP_BG_CWD_RGB="22;62;103" # Background color for current working directory section
BPP_BG_GIT_RGB="110;80;0" # Background color for Git section
BPP_BG_TIME_RGB="40;127;119" # Background color for time section