2
0
mirror of https://gitlab.com/Nanolx/NanoDroid synced 2024-10-22 01:37:40 +00:00
NanoDroid/Full/system/etc/bashrc
Christopher Roy Bratusek b23bc6199d bash: improve PS1
2018-02-08 23:05:36 +01:00

35 lines
633 B
Bash

# /system/etc/bashrc
export SHELL=${BASH}
export HOME=/sdcard
export TMPDIR=${HOME}/.bash_tmp
export HISTFILE=${HOME}/.bash_history
mkdir -p ${TMPDIR}
export TERM=xterm
export PAGER=less.bin
[[ $- != *i* ]] && return
shopt -s checkwinsize
shopt -s histappend
alias su="su --shell ${SHELL}"
alias ls="ls --color=auto"
alias grep="grep --color=auto"
red="\[\033[01;38;5;1m\]"
gre="\[\033[01;38;5;2m\]"
blu="\[\033[01;38;5;4m\]"
whi="\[\033[01;38;5;7m\]"
export HOSTNAME=$(getprop ro.product.device)
export PS1="${whi}[ ${blu}\$(whoami) ${whi}@ ${red}${HOSTNAME} ${whi}: ${gre}\w ${whi}] "
resize >/dev/null
clear
cd ${HOME}