1
0
Fork 0

Add welcome text

This commit is contained in:
Ryan Fox 2022-04-23 07:16:48 +00:00
parent a3525f29cc
commit 527490d709
3 changed files with 16 additions and 2 deletions

7
.bashrc Normal file
View 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
View 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

View File

@ -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