-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathprompt
executable file
·211 lines (178 loc) · 5.41 KB
/
prompt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
#!/bin/bash
# coding: utf-8
# Copyright 2020 Paulo Kretcheu <https://github.com/kretcheu/devel/>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# Cores
COR[0]="\[\e[0m\]" # Normal
COR[1]="\[\e[1;31m\]" # Vermelho
COR[2]="\[\e[1;32m\]" # Verde
COR[3]="\[\e[1;33m\]" # Amarelo
COR[4]="\[\e[1;34m\]" # Azul
COR[5]="\[\e[1;35m\]" # Roxo
COR[6]="\[\e[1;36m\]" # Cian
COR[7]="\[\e[1;37m\]" # Branco
COR[8]="\[\e[1;96m\]" # Azul Claro
DES[0]="\342\224\214\342\224\200" # Linha de canto
DES[1]="\342\224\224\342\224\200\342\224\200\342\225\274" # Linha e ponto
DES[2]="\342\234\227" # Sinal de erro
DES[3]="\342\224\200" # Linha horizontal
lista=$1
if [ $# -eq 0 ]
then
lista='1 2 3 4 5 6 7 8'
orientacao="Usage: prompt [theme] [type]
theme: define color theme. (1-8)
type: define assets included. (1-4) "
fi
for i in $lista; do
# Definição do Tema
case $i in
1)
COR_BASE=${COR[1]}
COR_USER=${COR[3]}
COR_ARROBA=${COR[7]}
COR_SERVER=${COR[6]}
COR_DIR=${COR[3]}
COR_HORARIO=${COR[7]}
COR_BATERIA=${COR[3]}
COR_CURSOR=${COR[7]}
;;
2)
COR_BASE=${COR[5]}
COR_USER=${COR[6]}
COR_ARROBA=${COR[3]}
COR_SERVER=${COR[4]}
COR_DIR=${COR[2]}
COR_HORARIO=${COR[7]}
COR_BATERIA=${COR[7]}
COR_CURSOR=${COR[1]}
;;
3)
COR_BASE=${COR[2]}
COR_USER=${COR[6]}
COR_ARROBA=${COR[3]}
COR_SERVER=${COR[7]}
COR_DIR=${COR[7]}
COR_HORARIO=${COR[7]}
COR_BATERIA=${COR[7]}
COR_CURSOR=${COR[2]}
;;
4)
COR_BASE=${COR[3]}
COR_USER=${COR[6]}
COR_ARROBA=${COR[3]}
COR_SERVER=${COR[7]}
COR_DIR=${COR[7]}
COR_HORARIO=${COR[7]}
COR_BATERIA=${COR[7]}
COR_CURSOR=${COR[2]}
;;
5)
COR_BASE=${COR[6]}
COR_USER=${COR[6]}
COR_ARROBA=${COR[3]}
COR_SERVER=${COR[7]}
COR_DIR=${COR[7]}
COR_HORARIO=${COR[7]}
COR_BATERIA=${COR[7]}
COR_CURSOR=${COR[2]}
;;
6)
COR_BASE=${COR[4]}
COR_USER=${COR[6]}
COR_ARROBA=${COR[3]}
COR_SERVER=${COR[7]}
COR_DIR=${COR[3]}
COR_HORARIO=${COR[7]}
COR_BATERIA=${COR[7]}
COR_CURSOR=${COR[2]}
;;
7)
COR_BASE=${COR[7]}
COR_USER=${COR[3]}
COR_ARROBA=${COR[7]}
COR_SERVER=${COR[6]}
COR_DIR=${COR[3]}
COR_HORARIO=${COR[7]}
COR_BATERIA=${COR[3]}
COR_CURSOR=${COR[7]}
;;
8)
COR_BASE=${COR[7]}
COR_USER=${COR[1]}
COR_ARROBA=${COR[7]}
COR_SERVER=${COR[1]}
COR_DIR=${COR[1]}
COR_HORARIO=${COR[1]}
COR_BATERIA=${COR[1]}
COR_CURSOR=${COR[7]}
;;
*)
COR_BASE=${COR[1]}
COR_USER=${COR[3]}
COR_ARROBA=${COR[7]}
COR_SERVER=${COR[6]}
COR_DIR=${COR[3]}
COR_HORARIO=${COR[7]}
COR_BATERIA=${COR[3]}
COR_CURSOR=${COR[7]}
;;
esac;
# Partes
ANTES="${COR_BASE}${DES[0]}"
MSG="${COR[3]}[${COR[1]}${DES[2]}${COR[3]}]${CORBASE}${DES[3]}"
#ERRO='$([[ $? != 0 ]] && echo "'${MSG}'")'
USER="${COR_USER}\u"
SERVER="${COR_SERVER}\h"
SEPARADOR="${COR_BASE}${DES[3]}"
DIR="${COR_DIR}\w"
HORARIO="${COR_HORARIO}\t"
DEVICE="$(upower -e | grep battery)"
ASPAS="'"
BATERIA='['${COR_BATERIA}'$(upower -i '$DEVICE' |grep percentage | rev | cut -c 1-3 |rev)'${COR_BASE}']'
DEPOIS="\n${COR_BASE}${DES[1]}"
CURSOR="${COR_CURSOR} "'\$'" "
LOADAVERAGE='['${COR_BATERIA}'$(cat /proc/loadavg | cut -d" " -f1-3)'${COR_BASE}']'
TYPE=${2}
case $TYPE in
2) # Sem Bateria com Loadaverage
PS1="${ANTES}${ERRO}${COR_BASE}[${USER}${COR_ARROBA}@${SERVER}${COR_BASE}]${SEPARADOR}${COR_BASE}[${DIR}${COR_BASE}]${SEPARADOR}[${HORARIO}${COR_BASE}]${SEPARADOR}${LOADAVERAGE}${DEPOIS}${CURSOR}${COR[0]}"
;;
3) # Sem Bateria e sem Loadaverage
PS1="${ANTES}${ERRO}${COR_BASE}[${USER}${COR_ARROBA}@${SERVER}${COR_BASE}]${SEPARADOR}${COR_BASE}[${DIR}${COR_BASE}]${SEPARADOR}[${HORARIO}${COR_BASE}]${DEPOIS}${CURSOR}${COR[0]}"
;;
4) # Sem Bateria, sem loadaverage sem horário
PS1="${ANTES}${ERRO}${COR_BASE}[${USER}${COR_ARROBA}@${SERVER}${COR_BASE}]${SEPARADOR}${COR_BASE}[${DIR}${COR_BASE}]${DEPOIS}${CURSOR}${COR[0]}"
;;
1|*) # Com Bateria e Loadaverage
PS1="${ANTES}${ERRO}${COR_BASE}[${USER}${COR_ARROBA}@${SERVER}${COR_BASE}]${SEPARADOR}${COR_BASE}[${DIR}${COR_BASE}]${SEPARADOR}[${HORARIO}${COR_BASE}]${SEPARADOR}${BATERIA}${SEPARADOR}${LOADAVERAGE}${DEPOIS}${CURSOR}${COR[0]}"
;;
esac
if [ $# -gt 0 ]
then
echo
echo "Pare ter essa aparência no terminal vai precisar substituir a definição da variável PS1."
echo "Normalmente no arquivo ~/.bashrc ou para todos os usuários em /etc/bash.bashrc"
echo
echo "Testado em versões Buster e Sid do Debian, mas deve funcionar em muitas outras."
echo
echo "PS1='$PS1'"
echo
fi
echo "--- Essa é a amostra do tema $i de como ficará o terminal ---------------------------------------------"
echo
printf '%s\n' "${PS1@P}"
#echo "${PS1@P}"
echo
done
echo "$orientacao"
echo