Add welcome text
This commit is contained in:
parent
a3525f29cc
commit
527490d709
7
.bashrc
Normal file
7
.bashrc
Normal file
@ -0,0 +1,7 @@
|
||||
if [ -f "${ENV}" ]; then
|
||||
source "${ENV}"
|
||||
elif [ -f "~/.env" ]; then
|
||||
source "~/.env"
|
||||
elif [ -f "~/.shrc" ]; then
|
||||
source "~/.shrc"
|
||||
fi
|
5
.env
Normal file
5
.env
Normal file
@ -0,0 +1,5 @@
|
||||
export PS1='$USER@$HOSTNAME \w \$ '
|
||||
alias ls='ls -F'
|
||||
if ! command -v doas &> /dev/null; then
|
||||
alias doas=sudo
|
||||
fi
|
6
.profile
6
.profile
@ -1,6 +1,8 @@
|
||||
export PS1='$USER@$HOSTNAME \w \$ '
|
||||
export ENV=~/.shrc
|
||||
export ENV=~/.env
|
||||
export PATH=~/bin:$PATH
|
||||
export EDITOR=vim
|
||||
export GIT_EDITOR='vim -c ":set ft=gitcommit"'
|
||||
export BEMENU_OPTS="--nb '#000000' --hb '#000000' --tb '#000000' --fb '#000000' --hf '#ff79c6' --tf '#ff79c6' --fn 'monospace 8'"
|
||||
export QT_QPA_PLATFORM=wayland
|
||||
source "${ENV}"
|
||||
welcome
|
||||
|
Loading…
Reference in New Issue
Block a user