-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
bash.bashrc
38 lines (36 loc) · 1.67 KB
/
bash.bashrc
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
# Command history tweaks:
# - Append history instead of overwriting
# when shell exits.
# - When using history substitution, do not
# exec command immediately.
# - Do not save to history commands starting
# with space.
# - Do not saveROOT"x duplicated commands.
shopt -s histappend
shopt -s histverify
export HISTCONTROL=ignoreboth
# Default command line prompt.
PROMPT_DIRTRIM=2
PS1='\[\e[0;32m\]\w\[\e[0m\] \[\e[0;97m\]\$\[\e[0m\] '
# Handles nonexistent commands.
# If user has entered command which invokes non-available
# utility, command-not-found will give a package suggestions.
if [ -x /data/data/com.termux/files/usr/libexec/termux/command-not-found ]; then
command_not_found_handle() {
/data/data/com.termux/files/usr/libexec/termux/command-not-found "$1"
}
fi
alias root='proot -0 login'
clear
echo -e "\e[1;31m"
echo " ██▀███ ▒█████ ▒█████ ▄▄▄█████▓"
echo "▓██ ▒ ██▒ ▒██▒ ██▒ ▒██▒ ██▒ ▓ ██▒ ▓▒"
echo "▓██ ░▄█ ▒ ▒██░ ██▒ ▒██░ ██▒ ▒ ▓██░ ▒░"
echo "▒██▀▀█▄ ▒██ ██░ ▒██ ██░ ░ ▓██▓ ░ "
echo "░██▓ ▒██▒ ░ ████▓▒░ ░ ████▓▒░ ▒██▒ ░ "
echo "░ ▒▓ ░▒▓░ ░ ▒░▒░▒░ ░ ▒░▒░▒░ ▒ ░░ "
echo " ░▒ ░ ▒░ ░ ▒ ▒░ ░ ▒ ▒░ ░ "
echo " ░░ ░ ░ ░ ░ ▒ ░ ░ ░ ▒ ░ "
echo " ░ ░ ░ ░ ░ "
echo
echo