1
1
#! /usr/bin/env bash
2
2
3
3
# https://github.com/koalaman/shellcheck/wiki/Sc2154
4
- # shellcheck disable=SC2154
5
4
6
5
function _user-prompt() {
7
6
local -r user=' \\u'
8
7
9
8
if [[ " ${EUID} " -eq 0 ]]; then
10
9
# Privileged users:
11
- local -r user_color=" ${bold_red} "
10
+ local -r user_color=" ${bold_red? } "
12
11
else
13
12
# Standard users:
14
- local -r user_color=" ${bold_green} "
13
+ local -r user_color=" ${bold_green? } "
15
14
fi
16
15
17
16
# Print the current user's name (colored according to their current EUID):
18
- echo -e " ${user_color}${user}${normal} "
17
+ echo -e " ${user_color}${user}${normal? } "
19
18
}
20
19
21
20
function _host-prompt() {
22
21
local -r host=' \\h'
23
22
24
23
# Check whether or not $SSH_TTY is set:
25
- if [[ -z " ${SSH_TTY} " ]]; then
24
+ if [[ -z " ${SSH_TTY:- } " ]]; then
26
25
# For local hosts, set the host's prompt color to blue:
27
- local -r host_color=" ${bold_blue} "
26
+ local -r host_color=" ${bold_blue? } "
28
27
else
29
28
# For remote hosts, set the host's prompt color to red:
30
- local -r host_color=" ${bold_red} "
29
+ local -r host_color=" ${bold_red? } "
31
30
fi
32
31
33
32
# Print the current hostname (colored according to $SSH_TTY's status):
34
- echo -e " ${host_color}${host}${normal} "
33
+ echo -e " ${host_color}${host}${normal? } "
35
34
}
36
35
37
36
function _user-at-host-prompt() {
38
37
# Concatenate the user and host prompts into: user@host:
39
- echo -e " $( _user-prompt) ${bold_white} @$( _host-prompt) "
38
+ echo -e " $( _user-prompt) ${bold_white? } @$( _host-prompt) "
40
39
}
41
40
42
41
function _exit-status-prompt() {
@@ -47,32 +46,32 @@ function _exit-status-prompt() {
47
46
if [[ " ${exit_status} " -eq 0 ]]; then
48
47
# For commands that return an exit status of zero, set the exit status's
49
48
# notifier to green:
50
- local -r exit_status_color=" ${bold_green} "
49
+ local -r exit_status_color=" ${bold_green? } "
51
50
else
52
51
# For commands that return a non-zero exit status, set the exit status's
53
52
# notifier to red:
54
- local -r exit_status_color=" ${bold_red} "
53
+ local -r exit_status_color=" ${bold_red? } "
55
54
fi
56
55
57
56
echo -ne " ${exit_status_color} "
58
57
if [[ " ${prompt_string} " -eq 1 ]]; then
59
58
# $PS1:
60
- echo -e " +${normal} "
59
+ echo -e " +${normal? } "
61
60
elif [[ " ${prompt_string} " -eq 2 ]]; then
62
61
# $PS2:
63
- echo -e " |${normal} "
62
+ echo -e " |${normal? } "
64
63
else
65
64
# Default:
66
- echo -e " ?${normal} "
65
+ echo -e " ?${normal? } "
67
66
fi
68
67
}
69
68
70
69
function _ps1() {
71
70
local -r time=' \\t'
72
71
73
- echo -ne " ${bold_white}${time} "
72
+ echo -ne " ${bold_white? }${time} "
74
73
echo -ne " $( _user-at-host-prompt) "
75
- echo -e " ${bold_white} :${normal}${PWD} "
74
+ echo -e " ${bold_white? } :${normal? }${PWD} "
76
75
echo -e " $( _exit-status-prompt 1 " ${exit_status} " ) "
77
76
}
78
77
0 commit comments