start using bash

This commit is contained in:
Al-Hassan Abdel-Raouf 2022-02-20 01:48:44 +02:00
parent 9f886feca5
commit 398fbabec4
3 changed files with 22 additions and 1 deletions

3
.bash_logout Normal file
View File

@ -0,0 +1,3 @@
#
# ~/.bash_logout
#

View File

@ -1,11 +1,20 @@
#
# ~/.bash_profile
#
[[ -f ~/.bashrc ]] && . ~/.bashrc
# User Information
export NAME="Al-Hassan Abdel-Raouf"
export EMAIL="alhassanaraouf@disroot.org"
# Default Programs
export VISUAL=vis
export EDITOR=$VISUAL
export BROWSER=lynx
export TERM=xterm
#export TERM=xterm
export LYNX_CFG=~/.config/lynx/lynx.cfg

9
.bashrc Normal file
View File

@ -0,0 +1,9 @@
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls --color=auto'
PS1='[\u@\h \W]\$ '