24 lines
611 B
Bash
24 lines
611 B
Bash
export SDL_MOUSEDEV=/dev/input/event1
|
|
export SDL_MOUSEDRV=TSLIB
|
|
export TSLIB_TSDEVICE=/dev/input/event1
|
|
export TERM=linux
|
|
export DISPLAY=:0
|
|
export MANPATH=/usr/share/man
|
|
export MANPAGER="less -R"
|
|
export HISTSIZE=10000
|
|
export HISTFILESIZE=10000
|
|
export LIBSH=/usr/script
|
|
|
|
# export PS1="\[\e[32m\]\\$\[\e[m\] "
|
|
if [ -f .bashrc ]; then
|
|
source .bashrc
|
|
fi
|
|
|
|
blue='\e[1;34m'
|
|
NC='\e[0m' # No Color
|
|
|
|
echo -e "${blue}*************************************************${NC}"
|
|
echo -e "${blue}* Votre Weblinux est maintenant opérationnelle. *${NC}"
|
|
echo -e "${blue}*************************************************${NC}"
|
|
|